
            :root {
                --brand: #00a3d6;
                --text: #0f172a;
                --muted: #64748b;
                --border: #e5e7eb;
            }

            body {
                font-family: Jost, sans-serif;
                color: var(--text);
                background: #fff;
            }
       
        
        
            /* ================= TOP BAR ================= */
            .topbar {
                background: #003449;
                color: #ffffff;
                font-size: 0.85rem;
                letter-spacing: 0.02em;
            }

            .topbar-inner {
                display: flex;
                align-items: center;
                justify-content: space-between; /* 👈 left + right */
                min-height: 38px;
            }

            .topbar-left {
                display: flex;
                align-items: center;
                gap: 14px;
            }

            .topbar-left span {
                display: inline-flex;
                align-items: center;
                gap: 6px;
                font-weight: 500;
                opacity: 0.95;
            }

            .topbar-left i {
                font-size: 0.9rem;
                opacity: 0.9;
            }

            .topbar .sep {
                opacity: 0.5;
                font-weight: 300;
            }

            /* Social Icons */
            .topbar-social {
                display: flex;
                align-items: center;
                gap: 14px;
            }

            .topbar-social a {
                color: #ffffff;
                font-size: 0.9rem;
                opacity: 0.9;
                transition:
                    opacity 0.2s ease,
                    transform 0.2s ease;
            }

            .topbar-social a:hover {
                opacity: 1;
                transform: translateY(-1px);
            }

            /* Hide topbar on mobile */
            @media (max-width: 991px) {
                .topbar {
                    display: none;
                }
            }

            .topbar-social a {
                border-left: 1px solid rgba(255, 255, 255, 0.25);
                padding-left: 12px;
            }
            .topbar-social a:first-child {
                border-left: none;
                padding-left: 0;
            }
       
        
        
            :root {
                --brand: #00a3d6;
            }

            /* ================= HEADER ================= */
            .header {
                position: relative;
                background: #fff;
                z-index: 999;
                transition: 0.25s ease;
                border-bottom: 1px solid transparent;
            }

            .header.sticky {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                border-bottom: 1px solid var(--border);
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
                animation: slideDown 0.25s ease;
            }

            @keyframes slideDown {
                from {
                    transform: translateY(-100%);
                }
                to {
                    transform: translateY(0);
                }
            }

            .header-inner {
                display: flex;
                align-items: center;
                justify-content: space-between;
                min-height: 74px;
            }

            .logo img {
                height: 54px;
                transition: 0.25s ease;
            }

            .header.sticky .logo img {
                height: 42px;
            }

            /* ===== DESKTOP NAV ===== */
            .nav-menu {
                display: flex;
                align-items: center;
                gap: 28px;
            }

            .nav-menu a,
            .nav-link {
                text-decoration: none;
                color: var(--text);
                font-weight: 500;
                position: relative;
            }

            .nav-menu a::after {
                content: "";
                position: absolute;
                left: 0;
                bottom: -6px;
                width: 0;
                height: 2px;
                background: var(--brand);
                transition: 0.2s;
            }

            .nav-menu a:hover::after {
                width: 100%;
            }

            /* ===== CTA ===== */
            .header-cta {
                display: flex;
                gap: 12px;
            }

            .btn-whatsapp {
                background: #25D366;
                color: #fff;
                padding: 10px 18px;
                font-weight: 500;
                text-decoration: none;
                border-radius: 0;
            }

            /* ===== DESKTOP DROPDOWN ===== */
            .has-dropdown {
                position: relative;
            }

            .dropdown-panel {
                position: absolute;
                top: calc(100% + 18px);
                left: 50%;
                transform: translateX(-50%);
                width: 1020px;
                background: #fff;
                border: 1px solid var(--border);
                box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
                padding: 24px;
                opacity: 0;
                visibility: hidden;
                transition: 0.25s ease;
            }

            .has-dropdown:hover .dropdown-panel {
                opacity: 1;
                visibility: visible;
                top: calc(100% + 10px);
            }

            .dropdown-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 18px;
            }

            .dropdown-card {
                display: flex;
                gap: 14px;
                padding: 16px;
                border: 1px solid var(--border);
                background: #fff;
                text-decoration: none;
                transition: 0.25s ease;
            }

            .dropdown-card i {
                font-size: 1.6rem;
                color: var(--brand);
            }

            .dropdown-card h6 {
                font-family: "DM Sans", sans-serif;
                font-size: 1rem;
                margin: 0 0 4px;
            }

            .dropdown-card p {
                margin: 0;
                font-size: 0.85rem;
                color: var(--muted);
            }

            .dropdown-card:hover {
                background: #f7fbfe;
                border-color: var(--brand);
                transform: translateY(-2px);
            }

            /* ===== MOBILE ===== */
            .menu-toggle {
                display: none;
                width: 44px;
                height: 44px;
                border: 1px solid var(--border);
                background: #fff;
            }

            .menu-toggle span {
                display: block;
                height: 2px;
                background: #000;
                margin: 5px 0;
            }

            .mobile-menu {
                display: none;
                background: #fff;
                border-top: 1px solid var(--border);
            }

            .m-link {
                display: block;
                padding: 14px 0;
                text-decoration: none;
                color: var(--text);
                border-bottom: 1px solid var(--border);
            }

            /* Mobile Accordion */
            .m-accordion {
                border-bottom: 1px solid var(--border);
            }

            .m-accordion-btn {
                width: 100%;
                background: none;
                border: none;
                padding: 14px 0;
                font-weight: 500;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .m-accordion-body {
                display: none;
                padding-bottom: 12px;
            }

            .m-accordion-body a {
                display: block;
                padding: 10px 0;
                font-size: 0.95rem;
                color: var(--muted);
                text-decoration: none;
            }

            .m-accordion.open .m-accordion-body {
                display: block;
            }

            @media (max-width: 991px) {
                .nav-menu {
                    display: none;
                }
                .menu-toggle {
                    display: block;
                }
            }
       
        
        
        
        
        
        
            /* ================= ABOUT SECTION ================= */
            .about {
                padding: 50px 0;
                background: #fff;
            }
        
            /* Grid Layout */
            .about-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 64px;
                align-items: center;
            }
        
            /* Visual Side */
            .about-visual {
                position: relative;
            }
        
            .about-image {
                width: 100%;
                height: 420px;
                background-image: url("/assets/img/abnew.jpg");
                background-size: cover;
                background-position: center;
                position: relative;
            }
        
            .about-image::after {
                content: "";
                position: absolute;
                inset: 0;
                background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.15) 100%);
            }
        
            /* Content Side */
            .about-content {
                max-width: 520px;
            }
        
            .section-eyebrow {
                display: inline-block;
                font-size: 0.72rem;
                letter-spacing: 0.18em;
                font-weight: 500;
                color: var(--brand);
                margin-bottom: 12px;
            }
        
            .about h2 {
                font-family: "DM Sans", sans-serif;
                font-size: clamp(1.9rem, 3vw, 2.6rem);
                font-weight: 700;
                line-height: 1.2;
                margin-bottom: 20px;
                color: var(--text);
            }
        
            .about-content p {
                color: var(--muted);
                line-height: 1.7;
                margin-bottom: 18px;
            }
        
            /* Pillars */
            .about-pillars {
                display: flex;
                gap: 24px;
                margin: 26px 0 8px;
            }
        
            .pillar-item {
                display: flex;
                align-items: center;
                gap: 10px;
                font-weight: 500;
                font-size: 0.9rem;
                color: var(--text);
            }
        
            .pillar-item i {
                font-size: 1.2rem;
                color: var(--brand);
            }
        
            /* CTA Button */
            .btn-about {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                margin-top: 18px;
                padding: 12px 22px;
                border: 1px solid var(--brand);
                color: var(--brand);
                font-weight: 500;
                text-decoration: none;
                border-radius: 0;
                transition: all 0.25s ease;
            }
        
            .btn-about i {
                transition: transform 0.25s ease;
            }
        
            .btn-about:hover {
                background: var(--brand);
                color: #ffffff;
            }
        
            .btn-about:hover i {
                transform: translateX(4px);
            }
        
            /* Responsive */
            @media (max-width: 991px) {
                .about {
                    padding: 72px 0;
                }
        
                .about-grid {
                    grid-template-columns: 1fr;
                    gap: 40px;
                }
        
                .about-image {
                    height: 300px;
                }
        
                .about-content {
                    max-width: 100%;
                }
        
                .about-pillars {
                    flex-direction: column;
                    gap: 14px;
                }
            }
       
        
        
        
            /* ================= APPLICATIONS SECTION ================= */
            .applications {
                padding: 46px 0;
                background: #f3f8fb;
            }
        
            /* Header */
            .applications-header {
                max-width: 820px;
                margin-bottom: 56px;
            }
        
            .applications-header h2 {
                font-family: "DM Sans", sans-serif;
                font-size: clamp(1.9rem, 3vw, 2.6rem);
                font-weight: 700;
                line-height: 1.25;
                color: var(--text);
                margin-bottom: 14px;
            }
        
            .applications-subtitle {
                font-size: 1rem;
                color: var(--muted);
                line-height: 1.6;
            }
        
            /* Grid */
            .applications-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 32px;
            }
        
            /* Card */
            .application-card {
                display: block;
                background: #fff;
                border: 1px solid var(--border);
                padding: 32px;
                text-decoration: none;
                transition: all 0.25s ease;
                height: 100%;
            }
        
            /* Icon */
            .application-card .icon {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 52px;
                height: 52px;
                border: 1px solid rgba(0, 163, 214, 0.25);
                margin-bottom: 18px;
            }
        
            .application-card .icon i {
                font-size: 1.4rem;
                color: var(--brand);
            }
        
            /* Title */
            .application-card h5 {
                font-family: "DM Sans", sans-serif;
                font-size: 1.05rem;
                font-weight: 500;
                color: var(--text);
                margin-bottom: 10px;
                line-height: 1.35;
            }
        
            /* Text */
            .application-card p {
                font-size: 0.9rem;
                line-height: 1.6;
                color: var(--muted);
                margin-bottom: 18px;
            }
        
            /* CTA */
            .application-card .cta {
                display: inline-flex;
                align-items: center;
                gap: 6px;
                font-weight: 500;
                font-size: 0.9rem;
                color: var(--brand);
            }
        
            .application-card .cta i {
                transition: transform 0.25s ease;
            }
        
            /* Hover */
            .application-card:hover {
                background: #ffffff;
                transform: translateY(-4px);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
            }
        
            .application-card:hover .cta i {
                transform: translateX(4px);
            }
        
            /* Responsive */
            @media (max-width: 991px) {
                .applications {
                    padding: 72px 0;
                }
        
                .applications-grid {
                    grid-template-columns: 1fr;
                    gap: 24px;
                }
        
                .applications-header {
                    margin-bottom: 40px;
                }
            }
       
        
       
            /* ================= PRODUCT SHOWCASE ================= */
            .product-showcase {
                padding: 46px 0;
                background: #ffffff;
            }
        
            /* Header */
            .product-header {
                max-width: 720px;
                margin-bottom: 52px;
            }
        
            .product-showcase h2 {
                font-family: "DM Sans", sans-serif;
                font-size: clamp(1.9rem, 3vw, 2.5rem);
                font-weight: 700;
                margin-bottom: 14px;
                color: var(--text);
            }
        
            .product-header p {
                color: var(--muted);
                line-height: 1.6;
            }
        
            /* Grid */
            .product-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 24px;
            }
        
            /* Card */
            .product-card {
                background: #ffffff;
                border: 1px solid var(--border);
                display: flex;
                flex-direction: column;
                transition: all 0.25s ease;
            }
        
            /* Image */
            .product-image {
                background: #f7f9fc;
                padding: 20px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
        
            .product-image img {
                max-width: 100%;
                height: 220px;
                object-fit: contain;
                mix-blend-mode: multiply;
            }
        
            /* Body */
            .product-body {
                padding: 18px 18px 22px;
                display: flex;
                flex-direction: column;
                height: 100%;
            }
        
            .product-body h5 {
                font-family: "DM Sans", sans-serif;
                font-size: 1.05rem;
                font-weight: 500;
                margin-bottom: 8px;
                color: var(--text);
            }
        
            .product-body p {
                font-size: 0.9rem;
                line-height: 1.5;
                color: var(--muted);
                margin-bottom: 18px;
                flex-grow: 1;
            }
        
            /* CTA */
            .btn-product {
                align-self: flex-start;
                padding: 10px 18px;
                font-size: 0.85rem;
                font-weight: 500;
                text-decoration: none;
                border: 1px solid var(--brand);
                color: var(--brand);
                background: transparent;
                border-radius: 0;
                transition: all 0.25s ease;
            }
        
            .btn-product:hover {
                background: var(--brand);
                color: #ffffff;
            }
        
            /* Hover Effect (Amazon-like) */
            .product-card:hover {
                box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
                transform: translateY(-4px);
                border-color: var(--brand);
            }
        
            /* Responsive */
            @media (max-width: 1199px) {
                .product-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
            }
        
            @media (max-width: 575px) {
                .product-showcase {
                    padding: 64px 0;
                }
        
                .product-grid {
                    grid-template-columns: 1fr;
                    gap: 18px;
                }
        
                .product-image img {
                    height: 240px;
                }
            }
       
        
        .ourbrands {
                padding: 50px 0;
                background: #fff;
            }
        
               
            /* ================= CREDENTIALS ================= */
            .credentials {
                padding: 50px 0;
                background: #f3f8fb;
            }
        
            .credentials-header {
                max-width: 680px;
                margin-bottom: 48px;
            }
        
            .section-eyebrow {
                display: inline-block;
                font-size: 0.7rem;
                letter-spacing: 0.18em;
                font-weight: 500;
                color: var(--brand);
                margin-bottom: 10px;
            }
        
            .credentials h2 {
                font-family: "DM Sans", sans-serif;
                font-size: clamp(1.8rem, 3vw, 2.4rem);
                font-weight: 700;
                margin-bottom: 14px;
                color: var(--text);
            }
        
            .credentials-header p {
                color: var(--muted);
                line-height: 1.6;
            }
        
            /* Grid */
            .certifications-grid {
                display: grid;
                grid-template-columns: repeat(6, 1fr);
                gap: 24px;
            }
        
            /* Card */
            .cert-card {
                background: #ffffff;
                border: 1px solid var(--border);
                padding: 0px;
                display: flex;
                align-items: center;
                justify-content: center;
                min-height: 110px;
                transition: 0.25s ease;
            }
        
            .cert-card img {
                max-width: 100%;
                max-height: 120px;
                object-fit: contain;
                filter: grayscale(10%);
                opacity: 1;
                transition: 0.25s ease;
            }
        
            /* Hover polish */
            .cert-card:hover {
                border-color: var(--brand);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
            }
        
            .cert-card:hover img {
                filter: grayscale(0%);
                opacity: 1;
            }
        
            /* Responsive */
            @media (max-width: 1199px) {
                .certifications-grid {
                    grid-template-columns: repeat(3, 1fr);
                }
            }
        
            @media (max-width: 575px) {
                .credentials {
                    padding: 64px 0;
                }
        
                .certifications-grid {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 16px;
                }
        
                .cert-card {
                    min-height: 90px;
                    padding: 16px;
                }
        
                .cert-card img {
                    max-height: 94px;
                }
            }
       
        
       
            /* ================= DUAL CTA SECTION ================= */
            .cta-dual {
                padding: 88px 0;
                background: linear-gradient(135deg, #071822 0%, #0b2634 100%);
                position: relative;
                overflow: hidden;
            }
        
            /* Soft accent glow */
            .cta-dual::before {
                content: "";
                position: absolute;
                top: -40%;
                right: -20%;
                width: 520px;
                height: 520px;
                background: radial-gradient(circle, rgba(0, 163, 214, 0.18), transparent 60%);
                pointer-events: none;
            }
        
            /* Grid */
            .cta-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 48px;
            }
        
            /* Box */
            .cta-box {
                background: rgba(255, 255, 255, 0.03);
                border: 1px solid rgba(255, 255, 255, 0.12);
                padding: 42px;
                position: relative;
            }
        
            .cta-eyebrow {
                font-size: 0.7rem;
                letter-spacing: 0.18em;
                font-weight: 500;
                color: var(--brand);
                display: inline-block;
                margin-bottom: 10px;
            }
        
            /* Headings */
            .cta-box h3 {
                font-family: "DM Sans", sans-serif;
                font-size: 1.5rem;
                font-weight: 700;
                color: #ffffff;
                margin-bottom: 14px;
            }
        
            /* Text */
            .cta-box p {
                font-size: 0.95rem;
                line-height: 1.7;
                color: rgba(255, 255, 255, 0.75);
                margin-bottom: 22px;
            }
        
            /* Buttons */
            .btn-cta {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                padding: 12px 22px;
                background: var(--brand);
                color: #ffffff;
                text-decoration: none;
                font-weight: 500;
                border-radius: 0;
                transition: all 0.25s ease;
            }
        
            .btn-cta i {
                transition: transform 0.25s ease;
            }
        
            .btn-cta:hover i {
                transform: translateX(4px);
            }
        
            .btn-cta.outline {
                background: transparent;
                border: 1px solid var(--brand);
                color: var(--brand);
            }
        
            /* Responsive */
            @media (max-width: 991px) {
                .cta-dual {
                    padding: 72px 0;
                }
        
                .cta-grid {
                    grid-template-columns: 1fr;
                    gap: 28px;
                }
        
                .cta-box {
                    padding: 32px;
                }
            }
       
        
        
            /* ================= CREDENTIALS ================= */
            .credentials {
                padding: 50px 0;
                background: #f3f8fb;
            }
        
            .credentials-header {
                max-width: 680px;
                margin-bottom: 48px;
            }
        
            .section-eyebrow {
                display: inline-block;
                font-size: 0.7rem;
                letter-spacing: 0.18em;
                font-weight: 500;
                color: var(--brand);
                margin-bottom: 10px;
            }
        
            .credentials h2 {
                font-family: "DM Sans", sans-serif;
                font-size: clamp(1.8rem, 3vw, 2.4rem);
                font-weight: 700;
                margin-bottom: 14px;
                color: var(--text);
            }
        
            .credentials-header p {
                color: var(--muted);
                line-height: 1.6;
            }
        
            /* Grid */
            .newbrands-grid {
                display: grid;
                grid-template-columns: repeat(6, 1fr);
                gap: 24px;
            }
        
            /* Card */
            .cert-card {
                background: #ffffff;
                border: 1px solid var(--border);
                padding: 0px;
                display: flex;
                align-items: center;
                justify-content: center;
                min-height: 110px;
                transition: 0.25s ease;
            }
        
            .cert-card img {
                max-width: 100%;
                max-height: 150px;
                object-fit: contain;
                filter: grayscale(10%);
                opacity: 1;
                transition: 0.25s ease;
            }
        
            /* Hover polish */
            .cert-card:hover {
                border-color: var(--brand);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
            }
        
            .cert-card:hover img {
                filter: grayscale(0%);
                opacity: 1;
            }
        
            /* Responsive */
            @media (max-width: 1199px) {
                .certifications-grid {
                    grid-template-columns: repeat(3, 1fr);
                }
            }
        
            @media (max-width: 575px) {
                .credentials {
                    padding: 64px 0;
                }
        
                .certifications-grid {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 16px;
                }
        
                .cert-card {
                    min-height: 90px;
                    padding: 16px;
                }
        
                .cert-card img {
                    max-height: 150px;
                }
            }
       
        
        
            /* ================= STATS SECTION ================= */
            .stats {
                padding: 50px 0;
                background: linear-gradient(135deg, #0b1f2a 0%, #081923 100%);
                position: relative;
                overflow: hidden;
            }
        
            /* Subtle texture / depth */
            .stats::before {
                content: "";
                position: absolute;
                inset: 0;
                background: radial-gradient(circle at 20% 20%, rgba(0, 163, 214, 0.12), transparent 40%);
                pointer-events: none;
            }
        
            /* Grid */
            .stats-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 48px;
                text-align: center;
            }
        
            /* Item */
            .stat-item h3 {
                font-family: "DM Sans", sans-serif;
                font-size: clamp(2.4rem, 4vw, 3.2rem);
                font-weight: 700;
                color: #ffffff;
                margin-bottom: 10px;
            }
        
            .stat-item .plus {
                color: var(--brand);
                margin-left: 4px;
            }
        
            .stat-item p {
                font-size: 0.95rem;
                letter-spacing: 0.02em;
                color: rgba(255, 255, 255, 0.7);
            }
        
            /* Hover polish (very subtle) */
            .stat-item {
                transition: transform 0.25s ease;
            }
        
            .stat-item:hover {
                transform: translateY(-4px);
            }
        
            /* Responsive */
            @media (max-width: 991px) {
                .stats {
                    padding: 72px 0;
                }
        
                .stats-grid {
                    grid-template-columns: 1fr;
                    gap: 32px;
                }
            }
       
        
        
        
       
        
         
            /* ================= FOOTER ================= */
            .footer {
                background: #081923;
                color: rgba(255, 255, 255, 0.75);
                padding: 80px 0 32px;
            }

            /* Grid */
            .footer-grid {
                display: grid;
                grid-template-columns: 1.2fr 1fr 2fr 1.2fr;
                gap: 48px;
                margin-bottom: 48px;
            }

            /* Brand */
            .footer-brand img {
                height: 48px;
                margin-bottom: 16px;
            }

            .footer-brand p {
                font-size: 0.9rem;
                line-height: 1.6;
                max-width: 320px;
            }

            /* Columns */
            .footer-col h5 {
                font-family: "DM Sans", sans-serif;
                font-size: 1rem;
                font-weight: 500;
                color: #ffffff;
                margin-bottom: 18px;
            }

            .footer-col ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

            .footer-col ul li {
                margin-bottom: 10px;
            }

            .footer-col ul li a {
                text-decoration: none;
                color: rgba(255, 255, 255, 0.75);
                font-size: 0.9rem;
                transition: color 0.2s ease;
            }

            .footer-col ul li a:hover {
                color: #ffffff;
            }

            /* Contact */
            .footer-contact li {
                display: flex;
                align-items: center;
                gap: 10px;
            }

            .footer-contact i {
                color: var(--brand);
                font-size: 1rem;
            }

            /* Social */
            .footer-social {
                display: flex;
                gap: 14px;
                margin-top: 18px;
            }

            .footer-social a {
                width: 38px;
                height: 38px;
                border: 1px solid rgba(255, 255, 255, 0.2);
                display: flex;
                align-items: center;
                justify-content: center;
                color: #ffffff;
                transition: all 0.25s ease;
            }

            .footer-social a:hover {
                background: var(--brand);
                border-color: var(--brand);
                color: #001820;
            }

            /* Bottom */
            .footer-bottom {
                border-top: 1px solid rgba(255, 255, 255, 0.12);
                padding-top: 18px;
                text-align: center;
                font-size: 0.85rem;
                color: rgba(255, 255, 255, 0.6);
            }

            /* Responsive */
            @media (max-width: 991px) {
                .footer {
                    padding: 64px 0 28px;
                }

                .footer-grid {
                    grid-template-columns: 1fr;
                    gap: 36px;
                }

                .footer-brand p {
                    max-width: 100%;
                }
            }
            /* Footer Links with Icons */
            .footer-links {
                list-style: none;
                padding: 0;
                margin: 0;
            }

            .footer-links li {
                margin-bottom: 10px;
            }

            .footer-links a {
                display: inline-flex;
                align-items: center;
                gap: 10px;
                text-decoration: none;
                font-size: 0.9rem;
                color: rgba(255, 255, 255, 0.75);
                transition: all 0.2s ease;
            }

            .footer-links i {
                font-size: 0.95rem;
                color: var(--brand);
                opacity: 0.9;
            }

            .footer-links a:hover {
                color: #ffffff;
                transform: translateX(4px);
            }

            .footer-links a:hover i {
                opacity: 1;
            }
            
            
            
                
            
            /* ================= BREADCRUMB AREA ================= */
.breadcrumb-area {
    position: relative;
    padding: 40px 0 30px;
    background: #0b1f2a;
    overflow: hidden;
}

/* Background image (optional – can be replaced per category) */
.breadcrumb-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        #0b1f2a 0%,
        #0e2a3a 50%,
        #081923 100%
    );
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

/* Overlay */
.breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 25, 35, 0.85) 0%,
        rgba(8, 25, 35, 0.95) 100%
    );
}

/* Content */
.breadcrumb-content {
    position: relative;
    max-width: 100%;
    color: #ffffff;
}

/* Breadcrumb nav */
.breadcrumb-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.breadcrumb-nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.breadcrumb-nav a:hover {
    color: #ffffff;
}

.breadcrumb-nav .sep {
    opacity: 0.4;
}

.breadcrumb-nav .current {
    color: var(--brand);
    font-weight: 600;
}

/* Title */
.breadcrumb-content h1 {
    font-family: "DM Sans", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
}

/* Description */
.breadcrumb-content p {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

/* Responsive */
@media (max-width: 991px) {
    .breadcrumb-area {
        padding: 90px 0 70px;
    }

    .breadcrumb-content {
        max-width: 100%;
    }

    .breadcrumb-content p {
        font-size: 0.95rem;
    }
}

        
        
        
        
    /* ================= PRODUCT ARCHIVE ================= */
.product-archive {
    padding: 40px 0;
    background: #ffffff;
}

/* Header */
.archive-header {
    max-width: 100%;
    margin-bottom: 56px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    font-weight: 600;
    color: var(--brand);
    margin-bottom: 10px;
}

.archive-header h2 {
    font-family: "DM Sans", sans-serif;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}

.archive-header p {
    color: var(--muted);
    line-height: 1.7;
}

/* Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* Card */
.product-card {
    border: 1px solid var(--border);
    background: #ffffff;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
}

.product-card:hover {
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

/* Image */
.product-image {
    padding: 24px;
    border-bottom: 1px solid var(--border);
    background: #f9fbfd;
}

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: contain;
        mix-blend-mode: multiply;
}

/* Body */
.product-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-body h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
}

.product-body p {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 18px;
}

/* CTA */
.btn-product {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand);
    text-decoration: none;
  
    transition: all 0.2s ease;
}

.btn-product i {
    transition: transform 0.2s ease;
}

.btn-product:hover {
    border-color: var(--brand);
}

.btn-product:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1199px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .product-archive {
        padding: 32px 0;
    }

    .archive-header {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-image img {
        height: 180px;
    }
}


    /* ================= PRODUCT ACTION BUTTONS ================= */
.sproduct-actions {
    padding: 48px 0;
    background: #ffffff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.sproduct-actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Button */
.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 20px 18px;
    background: var(--brand);
    color: #ffffff;
    text-decoration: none;
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

/* Icon */
.action-btn i {
    font-size: 1.3rem;
    line-height: 1;
}

/* Hover Effect */
.action-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.25),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.25s ease;
}

.action-btn:hover::after {
    opacity: 1;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 163, 214, 0.35);
}

/* Responsive */
@media (max-width: 991px) {
    .sproduct-actions {
        padding: 40px 0;
    }

    .sproduct-actions-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .action-btn {
        padding: 18px 14px;
        font-size: 0.95rem;
    }
}

@media (max-width: 575px) {
    .sproduct-actions-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .sproduct-actions {
        padding: 24px 0;
    }

    .sproduct-actions .action-btn {
        flex-direction: column;
        gap: 6px;
        min-height: 74px;
        padding: 10px 6px;
        font-size: 0.72rem;
        line-height: 1.15;
        text-align: center;
    }

    .sproduct-actions .action-btn i {
        font-size: 1rem;
    }

    .sproduct-actions .action-btn span {
        overflow-wrap: anywhere;
    }

    .sproduct-gallery {
        gap: 12px;
    }

    .sproduct-thumbs {
        gap: 8px;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .sproduct-thumbs .thumb {
        flex: 0 0 56px;
        width: 56px;
        height: 56px;
        padding: 4px;
    }
}




 
                            /* ================= MARKETPLACE LINKS ================= */
                        .marketplace-links {
                            padding: 10px 0;
                            background: #ffffff;
                            max-width: 70%;
                        }
                        
                        .marketplace-inner {
                            display: flex;
                            gap: 24px;
                        }
                        
                        /* Base Button */
                        .marketplace-btn {
                            flex: 1;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            gap: 14px;
                            padding: 8px;
                            text-decoration: none;
                            font-family: "DM Sans", sans-serif;
                            font-size: 1rem;
                            font-weight: 500;
                            color: #ffffff;
                            border-radius: 0;
                            transition: all 0.25s ease;
                        }
                        
                        /* Amazon */
                        .marketplace-btn.bombayseeds {
                            background: #ffedee;
                            border:2px solid #03724d;
                        }
                        
                        .marketplace-btn.bombayseeds:hover {
                            background: #ffedee;
                            transform: translateY(-2px);
                        }
                        
                        
                        .marketplace-btn.amazon {
                            background: #241f21;
                        }
                        
                        .marketplace-btn.amazon:hover {
                            background: #241f21;
                            transform: translateY(-2px);
                        }
                        
                        /* Flipkart */
                        .marketplace-btn.flipkart {
                            background: #0f7bd6;
                        }
                        
                        .marketplace-btn.flipkart:hover {
                            background: #0f7bd6;
                            transform: translateY(-2px);
                        }
                        
                        /* Icon */
                        .marketplace-btn i {
                            font-size: 1.4rem;
                        }
                        
                        /* Responsive */
                        @media (max-width: 767px) {
                            .marketplace-inner {
                                flex-direction: column;
                            }
                        }
                        
                        
                        
                        
                                
        
        /* ================= CONTACT DEALER BUTTON ================= */
.btn-contact-dealer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    background: var(--brand);
    color: #ffffff;
    text-decoration: none;
    font-family: "DM Sans", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 0;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-contact-dealer i {
    font-size: 1rem;
}

/* Hover */
.btn-contact-dealer:hover {
    background: #008fc0; /* slightly darker brand tone */
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 163, 214, 0.35);
}



            /* ================= PRODUCT DETAIL ================= */
            .sproduct-detail {
                padding: 50px 0;
                background: #ffffff;
            }
        
            /* Grid */
            .sproduct-detail-grid {
                display: grid;
                grid-template-columns: 1.05fr 1fr;
                gap: 72px;
                align-items: flex-start;
            }
        
            /* Image */
            .sproduct-media {
                position: sticky;
                top: 120px;
            }
        
            .sproduct-image-box {
                border: 1px solid var(--border);
                background: #f9fbfd;
                padding: 36px;
            }
        
            .sproduct-image-box img {
                width: 100%;
                height: 420px;
                object-fit: contain;
                mix-blend-mode: multiply;
            }
        
            /* Badges */
            .sproduct-badges {
                display: flex;
                flex-wrap: wrap;
                gap: 10px;
                margin-top: 18px;
            }
        
            .sproduct-badges .badge {
                font-size: 0.7rem;
                letter-spacing: 0.08em;
                font-weight: 500;
                padding: 6px 10px;
                background: rgba(0, 163, 214, 0.08);
                color: var(--brand);
                border: 1px solid rgba(0, 163, 214, 0.25);
            }
        
            /* Content */
            .sproduct-info {
                max-width: 560px;
            }
        
            .sproduct-info h2 {
                font-family: "DM Sans", sans-serif;
                font-size: clamp(2rem, 3vw, 2.6rem);
                font-weight: 700;
                margin-bottom: 16px;
            }
        
            .sproduct-intro {
                color: var(--muted);
                line-height: 1.75;
                margin-bottom: 28px;
            }
        
            /* Blocks */
            .sproduct-block {
                margin-bottom: 28px;
            }
        
            .sproduct-block h4 {
                font-family: "DM Sans", sans-serif;
                font-size: 1.05rem;
                font-weight: 500;
                margin-bottom: 12px;
            }
        
            /* Feature List */
            .feature-list {
                list-style: none;
                padding: 0;
                margin: 0;
            }
        
            .feature-list li {
                display: flex;
                gap: 10px;
                align-items: flex-start;
                margin-bottom: 10px;
                color: var(--muted);
            }
        
            .feature-list i {
                color: var(--brand);
                margin-top: 3px;
            }
        
            /* Applications */
            .application-list {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 8px 16px;
                padding-left: 16px;
                color: var(--muted);
            }
        
            /* Highlight Block */
            .sproduct-block.highlight {
                background: #f3f8fb;
                padding: 22px;
                border-left: 3px solid var(--brand);
            }
        
            /* Warranty */
            .sproduct-warranty {
                display: flex;
                align-items: center;
                gap: 10px;
                margin: 12px 0;
                font-size: 0.9rem;
                color: var(--text);
            }
            .sproduct-warranty:first-of-type {
                margin-top: 24px;
            }
        
            .sproduct-warranty i {
                color: var(--brand);
                font-size: 1.1rem;
            }
        
            /* CTA */
            .sproduct-cta {
                display: flex;
                gap: 14px;
                margin-bottom: 30px;
            }
        
            .btn-primary {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                padding: 12px 24px;
                background: var(--brand);
                color: #ffffff;
                text-decoration: none;
                font-weight: 500;
                border-radius: 0;
            }
        
            .btn-primary i {
                transition: transform 0.2s ease;
            }
        
            .btn-primary:hover i {
                transform: translateX(4px);
            }
        
            .btn-secondary {
                padding: 12px 22px;
                border: 1px solid var(--border);
                text-decoration: none;
                color: var(--text);
                font-weight: 500;
            }
        
            /* Responsive */
            @media (max-width: 991px) {
                .sproduct-detail {
                    padding: 80px 0;
                }
        
                .sproduct-detail-grid {
                    grid-template-columns: 1fr;
                    gap: 48px;
                }
        
                .sproduct-media {
                    position: relative;
                    top: 0;
                }
        
                .sproduct-image-box img {
                    height: 300px;
                }
        
                .sproduct-info {
                    max-width: 100%;
                }
            }
            
            
            
            /* ================= PRODUCT IMAGE GALLERY ================= */

.sproduct-gallery {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 18px;
    align-items: stretch;
}

/* Thumbnails */
.sproduct-thumbs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sproduct-thumbs .thumb {
    width: 100%;
    height: 72px;
    object-fit: contain;
    background: #f9fbfd;
    border: 1px solid var(--border);
    padding: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
    mix-blend-mode: multiply;
}

.sproduct-thumbs .thumb:hover {
    border-color: var(--brand);
}

.sproduct-thumbs .thumb.active {
    border-color: var(--brand);
    box-shadow: 0 0 0 2px rgba(0, 163, 214, 0.15);
}

/* Main Image */
.sproduct-image-box {
    border: 1px solid var(--border);
    background: #f9fbfd;
    padding: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sproduct-image-box img {
    width: 100%;
    height: 420px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* Responsive */
@media (max-width: 991px) {
    .sproduct-gallery {
        grid-template-columns: 1fr;
    }

    .sproduct-thumbs {
        flex-direction: row;
        justify-content: center;
        order: 2;
    }

    .sproduct-image-box {
        order: 1;
    }

    .sproduct-thumbs .thumb {
        width: 72px;
        height: 72px;
    }

    .sproduct-image-box img {
        height: 300px;
    }
}

@media (max-width: 575px) {
    .sproduct-detail {
        padding: 30px 0;
    }
}

        
        
        
        
    /* ================= PRODUCT TABS ================= */
.product-tabs {
    padding: 40px 0;
    background: #f3f8fb;
}

/* Tabs Nav */
.tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--border);
    margin-bottom: 36px;
    justify-content: center;
}

.tab-btn {
    background: none;
    border: none;
    padding: 14px 28px;
    font-family: "DM Sans", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    position: relative;
    transition: color 0.25s ease;
}

.tab-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 3px;
    background: var(--brand);
    transition: width 0.25s ease;
}

.tab-btn.active {
    color: #ffffff;
    background: var(--brand);
}

.tab-btn.active::after {
    width: 100%;
}

/* Content */
.tabs-content {
    max-width: 900px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

/* Key Features */
.feature-points {
    list-style: disc;
    padding-left: 20px;
    color: var(--muted);
}

.feature-points li {
    margin-bottom: 12px;
    line-height: 1.7;
}

/* Specs */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 36px;
}

.spec-item span {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 4px;
}

.spec-item strong {
    font-size: 0.95rem;
    color: var(--text);
}

/* Spare Parts */
.spare-text {
    color: var(--muted);
    max-width: 720px;
    margin-bottom: 18px;
    line-height: 1.7;
}

.spare-list {
    padding-left: 18px;
    margin-bottom: 22px;
    color: var(--muted);
}

.spare-list li {
    margin-bottom: 6px;
}

.btn-spare {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border: 1px solid var(--brand);
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
}

.btn-spare i {
    transition: transform 0.25s ease;
}

.btn-spare:hover {
    background: var(--brand);
    color: #ffffff;
}

.btn-spare:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 767px) {
    .tabs-nav {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
        text-align: left;
        padding: 14px 18px;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }
}




    
    /* ================= RELATED PRODUCTS ================= */
.related-products {
    padding: 40px 0;
    background: #fff; /* alternate bg */
}

/* Header */
.related-header {
    max-width: 620px;
    margin-bottom: 26px;
}

.related-header h2 {
    font-family: "DM Sans", sans-serif;
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.related-header p {
    color: var(--muted);
    line-height: 1.7;
}

/* Grid */
.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

/* Card */
.related-card {
    background: #ffffff;
    border: 1px solid var(--border);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

/* Image */
.related-image {
    background: #f9fbfd;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-image img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* Content */
.related-content {
    padding: 22px;
}

.related-content h4 {
    font-family: "DM Sans", sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.related-content p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 18px;
}

/* Button */
.btn-related {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border: 1px solid var(--brand);
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.25s ease;
}

.btn-related:hover {
    background: var(--brand);
    color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
    .related-products {
        padding: 72px 0;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 575px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
}







    
    /* ================= RELATED PRODUCTS ================= */
.recently-products {
    padding: 40px 0;
    background: #f3f8fb; /* alternate bg */
}

/* Header */
.recently-header {
    max-width: 620px;
    margin-bottom: 26px;
}

.recently-header h2 {
    font-family: "DM Sans", sans-serif;
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.recently-header p {
    color: var(--muted);
    line-height: 1.7;
}

/* Grid */
.recently-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

/* Card */
.recently-card {
    background: #ffffff;
    border: 1px solid var(--border);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}

.recently-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

/* Image */
.recently-image {
    background: #f9fbfd;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recently-image img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* Content */
.recently-content {
    padding: 22px;
}

.recently-content h4 {
    font-family: "DM Sans", sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.recently-content p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 18px;
}

/* Button */
.btn-recently {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border: 1px solid var(--brand);
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.25s ease;
}

.btn-recently:hover {
    background: var(--brand);
    color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
    .recently-products {
        padding: 72px 0;
    }

    .recently-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 575px) {
    .recently-grid {
        grid-template-columns: 1fr;
    }
}



            /* ================= CONTACT SECTION ================= */
            .contact {
                padding: 46px 0;
                background: #f3f8fb;
            }

            /* Grid */
            .contact-grid {
                display: grid;
                grid-template-columns: 1.1fr 0.9fr;
                gap: 64px;
                align-items: flex-start;
            }

            /* Form Side */
            .contact-form {
                background: #ffffff;
                border: 1px solid var(--border);
                padding: 40px;
            }

            .contact-form h2 {
                font-family: "DM Sans", sans-serif;
                font-size: clamp(1.8rem, 3vw, 2.3rem);
                font-weight: 700;
                margin-bottom: 12px;
            }

            .contact-subtext {
                color: var(--muted);
                line-height: 1.6;
                margin-bottom: 28px;
            }

            /* Form */
            .form-group {
                margin-bottom: 18px;
            }

            .form-group input,
            .form-group textarea {
                width: 100%;
                padding: 14px 14px;
                border: 1px solid var(--border);
                font-size: 0.9rem;
                font-family: inherit;
                background: #ffffff;
            }

            .form-group input:focus,
            .form-group textarea:focus {
                outline: none;
                border-color: var(--brand);
            }

            /* Submit Button */
            .btn-submit {
                background: var(--brand);
                color: #ffffff;
                border: none;
                padding: 14px 24px;
                font-weight: 500;
                cursor: pointer;
                border-radius: 0;
            }

            /* Info Side */
            .contact-info {
                padding: 12px 0;
            }

            .contact-note {
                color: var(--muted);
                line-height: 1.7;
                margin-bottom: 24px;
            }

            /* Points */
            .contact-points {
                list-style: none;
                padding: 0;
                margin: 0 0 28px;
            }

            .contact-points li {
                display: flex;
                align-items: center;
                gap: 10px;
                font-weight: 500;
                margin-bottom: 12px;
                color: var(--text);
            }

            .contact-points i {
                color: var(--brand);
                font-size: 1.1rem;
            }

            /* Actions */
            .contact-actions {
                display: flex;
                gap: 14px;
                flex-wrap: wrap;
            }

            .btn-contact {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                padding: 12px 22px;
                background: var(--brand);
                color: #ffffff;
                text-decoration: none;
                font-weight: 500;
                border-radius: 0;
            }

            .btn-contact.outline {
                background: transparent;
                color: var(--brand);
                border: 1px solid var(--brand);
            }

            /* Responsive */
            @media (max-width: 991px) {
                .contact {
                    padding: 72px 0;
                }

                .contact-grid {
                    grid-template-columns: 1fr;
                    gap: 40px;
                }

                .contact-form {
                    padding: 32px;
                }
            }
        
        
        
        
/* ================= ABOUT INTRO ================= */
.about-intro {
    padding: 50px 0;
    background: #ffffff;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-text h2 {
    font-family: "DM Sans", sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.about-text p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ================= VMV POINTER STYLE ================= */
.about-vmv {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vmv-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.vmv-icon {
    width: 46px;
    height: 46px;
    background: rgba(0, 163, 214, 0.08);
    border: 1px solid rgba(0, 163, 214, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.vmv-item h6 {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 1rem;
}

.vmv-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ================= IMAGE ================= */
.about-image-box {
    border: 1px solid var(--border);
    background: #f9fbfd;
    padding: 20px;
}

.about-image-box img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .about-intro {
        padding: 80px 0;
    }

    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-box img {
        height: 300px;
    }
}




    /* ================= TRAINING & IMPACT ================= */
.about-training {
    padding: 50px 0;
    background: #ffffff;
}

/* Grid */
.about-training-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 72px;
    align-items: center;
}

/* Media */
.about-training-media {
    border: 1px solid var(--border);
    background: #f9fbfd;
    padding: 18px;
}

.about-training-media img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* Content */
.about-training-content {
    max-width: 620px;
}

.training-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    font-weight: 600;
    color: var(--brand);
    margin-bottom: 12px;
}

.about-training-content h2 {
    font-family: "DM Sans", sans-serif;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
    color: var(--text);
}

.about-training-content > p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 26px;
    font-size: 0.98rem;
}

/* Pointer blocks */
.training-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.t-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 16px;
    border: 1px solid var(--border);
    background: #ffffff;
    transition: all 0.25s ease;
}

.t-point:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.06);
}

/* Icon */
.t-ico {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 163, 214, 0.08);
    border: 1px solid rgba(0, 163, 214, 0.22);
    color: var(--brand);
    font-size: 1.15rem;
    flex-shrink: 0;
}

.t-point h6 {
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 6px;
    color: var(--text);
}

.t-point p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 991px) {
    .about-training {
        padding: 80px 0;
    }

    .about-training-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .about-training-media img {
        height: 300px;
    }

    .about-training-content {
        max-width: 100%;
    }
}


        
        
        
          
            /* ================= VALUES SECTION ================= */
        .about-values {
            padding: 50px 0;
            background: #f3f8fb;
        }
        
        /* Grid */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        
        /* Card */
        .value-card {
            position: relative;
            background: #ffffff;
            padding: 42px 36px 38px;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }
        
        /* Accent bar */
        .value-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 3px;
            width: 100%;
            background: linear-gradient(
                90deg,
                var(--brand),
                rgba(0, 163, 214, 0.4)
            );
        }
        
        /* Icon */
        .value-icon {
            width: 54px;
            height: 54px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 163, 214, 0.08);
            border: 1px solid rgba(0, 163, 214, 0.25);
            margin-bottom: 22px;
        }
        
        .value-icon i {
            font-size: 1.35rem;
            color: var(--brand);
        }
        
        /* Heading */
        .value-card h4 {
            font-family: "DM Sans", sans-serif;
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 14px;
            color: var(--text);
        }
        
        /* Text */
        .value-card p {
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--muted);
        }
        
        /* Hover polish */
        .value-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
        }
        
        /* Responsive */
        @media (max-width: 991px) {
            .values-grid {
                grid-template-columns: 1fr;
            }
        
            .about-values {
                padding: 80px 0;
            }
        }
        
        
        
        
        
          /* ================= ABOUT CLOSING ================= */
        .about-closing {
            padding: 40px 0;
            background: #ffffff;
        }
        
        /* Quote Wrapper */
        .closing-quote {
            position: relative;
            max-width: 880px;
            margin: 0 auto;
            padding: 48px 56px;
            border-left: 4px solid var(--brand);
            background: #f9fbfd;
        }
        
        /* Quote Mark */
        .quote-mark {
            position: absolute;
            top: -22px;
            left: 24px;
            font-size: 4.5rem;
            line-height: 1;
            color: rgba(0, 163, 214, 0.25);
            font-family: "DM Sans", sans-serif;
        }
        
        /* Text */
        .closing-quote p {
            font-size: 1.1rem;
            line-height: 1.85;
            color: var(--text);
            margin: 0;
        }
        
        /* Decorative Line */
        .quote-line {
            display: block;
            width: 56px;
            height: 2px;
            background: var(--brand);
            margin-top: 28px;
        }
        
        /* Responsive */
        @media (max-width: 767px) {
            .closing-quote {
                padding: 36px 28px;
            }
        
            .closing-quote p {
                font-size: 1rem;
            }
        
            .quote-mark {
                font-size: 3.5rem;
                top: -16px;
            }
        }
        
        
        
        
        
            /* ================= ABOUT PAGE BASE ================= */
        .about-hero {
            padding: 110px 0 90px;
            background: linear-gradient(135deg, #0b1f2a, #081923);
            color: #ffffff;
        }
        
        .about-hero-content {
            max-width: 780px;
        }
        
        .about-hero .eyebrow {
            letter-spacing: 0.18em;
            font-size: 0.75rem;
            color: #9fdfff;
        }
        
        .about-hero h1 {
            font-family: "DM Sans", sans-serif;
            font-size: clamp(2.4rem, 4vw, 3.4rem);
            margin: 16px 0;
        }
        
        .about-hero p {
            opacity: 0.9;
            line-height: 1.7;
        }
        
      
        
        /* ================= CORE FOCUS ================= */
        .about-focus {
            padding: 40px 0;
            background: #f3f8fb;
        }
        
        .focus-header {
            max-width: 600px;
            margin-bottom: 48px;
        }
        
        .focus-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 36px;
        }
        
        .focus-card {
            background: #ffffff;
            padding: 32px;
            border-left: 3px solid var(--brand);
        }
        
        .focus-card h4 {
            font-family: "DM Sans", sans-serif;
            margin-bottom: 12px;
        }
        
     
        
        
        
        /* ================= RESPONSIVE ================= */
        @media (max-width: 991px) {
            .about-intro-grid,
            .training-grid,
            .focus-grid,
            .values-grid {
                grid-template-columns: 1fr;
            }
        
            .about-hero {
                padding: 90px 0 70px;
            }
        }
        
        

        
        .spec-table-wrapper {
    margin-top: 20px;
}

.tech-spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.tech-spec-table th,
.tech-spec-table td {
    border: 1px solid #dcdcdc;
    padding: 12px;
    text-align: left;
}

.tech-spec-table thead th {
    background-color: #f4f4f4;
    text-align: center;
    font-weight: 600;
}

.spec-title {
    margin-bottom: 15px;
    font-weight: 600;
}

      b, strong {
    font-weight: 500!important;
} 





















.singleapp-hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg,#f3f8fb 0%, #ffffff 100%);
}

.singleapp-hero-inner {
    max-width: 100%;
}

.singleapp-hero h1 {
    font-family: "DM Sans", sans-serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 24px;
}

.singleapp-hero p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 18px;
}





.singleapp-areas {
    padding: 40px 0;
    background: #ffffff;
}

.singleapp-section-title {
    font-family: "DM Sans", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 48px;
}

.singleapp-area-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.singleapp-area-card {
    padding: 28px;
    border: 1px solid var(--border);
    background: #ffffff;
    transition: 0.3s ease;
}

.singleapp-area-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.singleapp-area-card i {
    font-size: 1.8rem;
    color: var(--brand);
    margin-bottom: 14px;
    display: inline-block;
}

.singleapp-area-card h5 {
    font-weight: 600;
    margin-bottom: 12px;
}

.singleapp-area-card p {
    color: var(--muted);
    line-height: 1.7;
}

@media(max-width:991px){
    .singleapp-area-grid{
        grid-template-columns:1fr;
    }
}



.singleapp-public {
    padding: 40px 0;
    background: #f3f8fb;
}

.singleapp-public-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.singleapp-public-item {
    display: flex;
    gap: 18px;
    padding: 20px;
    border-left: 3px solid var(--brand);
    background: #ffffff;
}

.singleapp-public-item i {
    font-size: 1.6rem;
    color: var(--brand);
}





/* ================= WHY + SAFETY MERGED ================= */
.singleapp-why-safety {
    padding: 90px 0;
    background: linear-gradient(135deg,#ffffff 0%, #f7fbfe 100%);
}

/* Grid */
.singleapp-why-safety-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* Section Title */
.singleapp-section-title {
    font-family: "DM Sans", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 28px;
}

/* WHY LIST */
.singleapp-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.singleapp-why-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--muted);
}

.singleapp-why-list i {
    color: var(--brand);
    font-size: 1rem;
    margin-top: 3px;
}

/* SAFETY BOX */
.singleapp-safety-box {
    background: #ffffff;
    padding: 32px;
    border: 1px solid var(--border);
}

.singleapp-safety-box ul {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 991px) {
    .singleapp-why-safety {
        padding: 70px 0;
    }

    .singleapp-why-safety-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    
    .newbrands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
}


.singleapp-section-desc{
    margin:10px auto 25px;
    text-align:left;
    color:#555;
}

.singleapp-subtitle{
    margin-bottom:15px;
    font-weight:600;
}

.singleapp-area-list{
    max-width:750px;
    padding:0;
    list-style:none;
}

.singleapp-area-list li{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:10px;
    font-size:16px;
}

.singleapp-area-list i{
    color:#00a3d6;
    font-size:18px;
}
