    :root {
                --green: #0e0f6c;
                --green-light: #4d4f8e;
                --blue-dark: #000265;
                --accent: #c8102e;
                --white: #ffffff;
                --bg: #f4faf7;
                --text: #0f2318;
                --muted: #4e7262;
                --border: #c8e8da;
                --shadow: 0 6px 28px rgba(0,168,107,.12);
                --nav-r: 6px;
            }

            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }

            html {
                scroll-behavior: smooth;
            }

            body {
                font-family: 'Plus Jakarta Sans', sans-serif;
                background: var(--white);
                color: var(--text);
                overflow-x: hidden;
            }

            /* ── LOADER ── */
            #loader {
                position: fixed;
                inset: 0;
                background: linear-gradient(135deg, #6466cc 0%, #6466cc 100%);
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                z-index: 9999;
                transition: opacity .7s;
            }

                #loader.hide {
                    opacity: 0;
                    pointer-events: none;
                }

            .loader-pulse-ring {
                position: relative;
                width: 140px;
                height: 140px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

                .loader-pulse-ring::before,
                .loader-pulse-ring::after {
                    content: '';
                    position: absolute;
                    inset: 0;
                    border-radius: 50%;
                    border: 2px solid #ffffff;
                    animation: ringPulse 2s ease-out infinite;
                }

                .loader-pulse-ring::after {
                    animation-delay: .7s;
                }

            @keyframes ringPulse {
                0% {
                    transform: scale(.8);
                    opacity: .8;
                }

                100% {
                    transform: scale(1.4);
                    opacity: 0;
                }
            }

            .loader-logo-img {
                width: 100px;
                height: 100px;
                object-fit: contain;
                border-radius: 50%;
                border: 3px solid #f80000;
                animation: logoPulse 2.4s ease-in-out infinite;
                position: relative;
                z-index: 2;
            }

            @keyframes logoPulse {
                0%, 100% {
                    transform: scale(1);
                }

                50% {
                    transform: scale(1.06);
                }
            }

            .loader-ecg {
                width: 200px;
                height: 40px;
                margin-top: 24px;
            }

            .loader-brand {
                margin-top: 14px;
                font-family: 'Cormorant Garamond', serif;
                font-size: 26px;
                color: #ffffff;
                letter-spacing: 1px;
            }

            .loader-sub {
                font-size: 11px;
                color: #ffffff;
                margin-top: 5px;
                letter-spacing: 2.5px;
                text-transform: uppercase;
            }

            /* ── TOPBAR ── */
            .topbar {
                background: #252477;
                padding: 7px 0;
                text-align: center;
                font-size: 12px;
                color: #ffffff;
                letter-spacing: .3px;
                font-family: 'Plus Jakarta Sans', sans-serif;
            }

                .topbar a {
                    color: #ffffff;
                    text-decoration: none;
                    margin: 0 12px;
                }

                    .topbar a:hover {
                        text-decoration: underline;
                    }

            /* ── HEADER ── */
            header {
                background: linear-gradient(135deg, #ffffff 0%, #ffffff 55%, #ffffff 100%);
                border-bottom: 1px solid rgba(0,168,107,.15);
                position: relative;
                top: 0;
                z-index: 900;
                box-shadow: 0 4px 28px rgba(0,0,0,.35);
            }

                header::before {
                    content: '';
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: 100%;
                    height: 2px;
                    background: linear-gradient(90deg, #00a86b 0%, #6ee7b7 40%, #c8102e 100%);
                }

            .header-inner {
                max-width: 1280px;
                margin: 0 auto;
                padding: 14px 32px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                position: relative;
            }

            header::after {
                display: none;
            }        

            /* ── LOGO ── */
            .logo {
                display: flex;
                align-items: center;
                gap: 14px;
                text-decoration: none;
            }

            .logo-inj-img {
                height: 48px;
                width: 48px;
                object-fit: contain;
                border-radius: 10px;
                border: 1.5px solid rgba(0,168,107,.35);
                background: rgba(255,255,255,.06);
                padding: 3px;
                filter: drop-shadow(0 0 8px rgba(0,168,107,.35));
            }

            .logo-text {
                display: flex;
                flex-direction: column;
            }

            .logo-name {
                font-family: 'Cormorant Garamond', serif;
                font-size: 23px;
                font-weight: 700;
                color: #6ee7b7;
                line-height: 1;
            }

            .logo-tagline {
                font-size: 10px;
                color: rgba(110,231,183,.45);
                text-transform: uppercase;
                letter-spacing: 2px;
                margin-top: 4px;
            }

            /* ── DESKTOP NAV ── */
            nav.desktop {
                display: flex;
                align-items: center;
                gap: 6px;
            }

                nav.desktop a {
                    position: relative;
                    overflow: hidden;
                    padding: 9px 24px;
                    font-size: 13px;
                    font-weight: 600;
                    color: rgb(4 4 4);
                    text-decoration: none;
                    border-radius: 50px;
                    border: 1.5px solid rgb(0 0 0);
                    transition: color .3s, border-color .3s;
                    letter-spacing: .2px;
                    white-space: nowrap;
                    font-family: 'Plus Jakarta Sans', sans-serif;
                }

                    nav.desktop a::before {
                        content: '';
                        position: absolute;
                        left: -100%;
                        bottom: 0;
                        width: 100%;
                        height: 100%;
                        background: linear-gradient(90deg, #35337c 0%, #050769 100%);
                        border-radius: 50px;
                        transition: left .38s cubic-bezier(.4,0,.2,1);
                        z-index: 0;
                    }

                    nav.desktop a:hover::before,
                    nav.desktop a.active::before {
                        left: 0;
                    }

                    nav.desktop a span {
                        position: relative;
                        z-index: 1;
                    }

                    nav.desktop a:hover,
                    nav.desktop a.active {
                        color: #fff;
                        border-color: var(--green);
                    }

                nav.desktop .btn-enquiry {
                    background: var(--accent);
                    color: #fff !important;
                    padding: 9px 26px;
                    border-radius: 50px;
                    border: 1.5px solid rgb(16 16 16);
                    font-weight: 700;
                    box-shadow: 0 3px 16px rgba(200,16,46,.4);
                }

                    nav.desktop .btn-enquiry::before {
                        background: linear-gradient(90deg, #a00020, var(--accent));
                        border-radius: 50px;
                    }

            /* ── HAMBURGER ── */
            .hamburger {
                display: none;
                background: none;
                border: none;
                cursor: pointer;
                padding: 8px;
                position: relative;
                width: 44px;
                height: 44px;
                align-items: center;
                justify-content: center;
            }

            .ham-pill {
                position: absolute;
                height: 4px;
                border-radius: 20px;
                background: #000265;
                transition: all .35s cubic-bezier(.4,0,.2,1);
                transform-origin: center;
            }

                .ham-pill:nth-child(1) {
                    width: 28px;
                    top: 12px;
                    left: 8px;
                }

                .ham-pill:nth-child(2) {
                    width: 20px;
                    top: 20px;
                    left: 8px;
                }

                .ham-pill:nth-child(3) {
                    width: 28px;
                    top: 28px;
                    left: 8px;
                }

            .hamburger.open .ham-pill:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
                width: 28px;
            }

            .hamburger.open .ham-pill:nth-child(2) {
                opacity: 0;
                transform: scaleX(0);
            }

            .hamburger.open .ham-pill:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
                width: 28px;
            }

            /* ── MOBILE OVERLAY ── */
            .mobile-overlay {
                display: none;
                position: fixed;
                inset: 0;
                background: rgba(0,0,0,.45);
                z-index: 1000;
                opacity: 0;
                transition: opacity .3s;
            }

                .mobile-overlay.open {
                    opacity: 1;
                }

            /* ── MOBILE MENU ── */
            .mobile-menu {
                position: fixed;
                top: 0;
                right: -300px;
                width: 280px;
                height: 100%;
                background: var(--white);
                z-index: 1001;
                box-shadow: -4px 0 24px rgba(0,0,0,.12);
                transition: right .35s cubic-bezier(.4,0,.2,1);
                display: flex;
                flex-direction: column;
                padding-top: 0;
            }

                .mobile-menu.open {
                    right: 0;
                }

            .mob-menu-header {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 16px 20px;
                border-bottom: 1px solid var(--border);
                background: #ffffff;
            }

            .mob-menu-logo {
                height: 36px;
                object-fit: contain;
            }

            .mob-close-btn {
                background: rgb(255 7 7);
                border: none;
                color: #fff;
                width: 34px;
                height: 34px;
                border-radius: 6px;
                cursor: pointer;
                font-size: 18px;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: background .2s;
            }

                .mob-close-btn:hover {
                    background: rgb(255 7 7);
                }

            .mob-menu-links {
                flex: 1;
                padding: 16px 0;
                overflow-y: auto;
            }

                .mob-menu-links a {
                    display: flex;
                    align-items: center;
                    gap: 14px;
                    padding: 15px 22px;
                    font-size: 15px;
                    font-weight: 600;
                    color: var(--text);
                    text-decoration: none;
                    border-bottom: 1px solid var(--bg);
                    transition: background .2s, color .2s;
                }

                    .mob-menu-links a svg {
                        width: 18px;
                        height: 18px;
                        flex-shrink: 0;
                        stroke: #a6a6e3;
                        transition: stroke .2s;
                    }

                    .mob-menu-links a:hover {
                        background: #a6a6e3;
                        color: #000265;
                    }

                        .mob-menu-links a:hover svg {
                            stroke: #000265;
                        }

                .mob-menu-links .mob-enquiry {
                    margin: 16px 20px 0;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 10px;
                    background: var(--accent);
                    color: #fff;
                    padding: 13px;
                    border-radius: 8px;
                    border-bottom: none;
                    font-weight: 700;
                }

                    .mob-menu-links .mob-enquiry:hover {
                        background: #a00020;
                        color: #fff;
                    }

                    .mob-menu-links .mob-enquiry svg {
                        stroke: #fff;
                    }

            .mob-menu-footer {
                padding: 16px 20px;
                border-top: 1px solid var(--border);
                font-size: 11px;
                color: var(--muted);
                text-align: center;
            }

            /* ── HERO SLIDER ── */
            .hero-slider {
                position: relative;
                overflow: hidden;
                background: #0d1f17;
                height: 560px;
                touch-action: pan-y;
            }

            .slides-track {
                display: flex;
                height: 100%;
                transition: transform .6s cubic-bezier(.4,0,.2,1);
            }

            .slide {
                min-width: 100%;
                height: 100%;
                position: relative;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
            }

            .slide-bg {
                position: absolute;
                inset: 0;
                background-size: cover;
                background-position: center;
            }

                .slide-bg::after {
                    content: '';
                    position: absolute;
                    inset: 0;
                    background: linear-gradient(90deg, rgba(67,64,131,0.75) 38%, rgba(0,2,104,0.6) 100%);
                }

            .slide-content {
                position: relative;
                z-index: 2;
                max-width: 1280px;
                margin: 0 auto;
                padding: 0 28px;
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
            }

            .slide-badge {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                background: rgba(0,168,107,.18);
                border: 1px solid rgba(110,231,183,.4);
                color: #6ee7b7;
                font-size: 11px;
                font-weight: 700;
                padding: 5px 16px;
                border-radius: 4px;
                margin-bottom: 18px;
                letter-spacing: 1.5px;
                text-transform: uppercase;
            }

            .slide-content h1 {
                font-family: 'Cormorant Garamond', serif;
                font-size: clamp(30px, 4.5vw, 60px);
                color: #fff;
                line-height: 1.1;
                margin-bottom: 16px;
            }

                .slide-content h1 span {
                    color: #6ee7b7;
                }

            .slide-content p {
                font-size: 16px;
                color: rgba(255,255,255,.78);
                line-height: 1.75;
                margin-bottom: 30px;
                max-width: 500px;
            }

            .slide-btns {
                display: flex;
                gap: 14px;
                flex-wrap: wrap;
            }

            .btn-primary {
                background: var(--green);
                color: #fff;
                padding: 13px 30px;
                border-radius: 6px;
                font-weight: 700;
                font-size: 14px;
                text-decoration: none;
                border: none;
                cursor: pointer;
                transition: background .2s, transform .15s;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                letter-spacing: .3px;
            }

                .btn-primary:hover {
                    background: var(--blue-dark);
                    transform: translateY(-2px);
                }

            .btn-ghost {
                background: transparent;
                color: #fff;
                padding: 13px 30px;
                border-radius: 6px;
                font-weight: 600;
                font-size: 14px;
                text-decoration: none;
                border: 1.5px solid rgba(255,255,255,.45);
                cursor: pointer;
                transition: border-color .2s, background .2s;
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }

                .btn-ghost:hover {
                    border-color: #fff;
                    background: rgba(255,255,255,.08);
                }

            .swipe-hint {
                position: absolute;
                bottom: 28px;
                right: 28px;
                z-index: 10;
                display: flex;
                align-items: center;
                gap: 6px;
                color: rgba(255,255,255,.5);
                font-size: 11px;
                font-weight: 500;
                animation: swipeFade 3s ease-in-out forwards;
            }

                .swipe-hint svg {
                    width: 20px;
                    height: 20px;
                    stroke: rgba(255,255,255,.5);
                }

            @keyframes swipeFade {
                0%, 70% {
                    opacity: 1;
                }

                100% {
                    opacity: 0;
                }
            }

            .slider-dots {
                position: absolute;
                bottom: 22px;
                left: 50%;
                transform: translateX(-50%);
                display: flex;
                gap: 10px;
                z-index: 10;
            }

            .dot {
                width: 28px;
                height: 4px;
                border-radius: 2px;
                background: rgba(255,255,255,.30);
                cursor: pointer;
                transition: background .3s, width .3s;
            }

                .dot.active {
                    background: #fff;
                    width: 44px;
                }

            /* ── TRUST BAR ── */
            .trust-bar {
                background: linear-gradient(90deg, var(--blue-dark), #434083);
                padding: 14px 28px;
            }

            .trust-inner {
                max-width: 1280px;
                margin: 0 auto;
                display: flex;
                justify-content: space-around;
                flex-wrap: wrap;
                gap: 14px;
            }

            .trust-item {
                display: flex;
                align-items: center;
                gap: 10px;
                color: #fff;
                font-size: 13px;
                font-weight: 600;
            }

            .trust-icon {
                width: 22px;
                height: 22px;
                flex-shrink: 0;
            }

            /* ── SECTION COMMON ── */
            .section {
                padding: 72px 28px;
            }

            .section-title {
                text-align: center;
                margin-bottom: 52px;
            }

                .section-title .eyebrow {
                    font-size: 11px;
                    font-weight: 700;
                    color: #0c0e6c;
                    text-transform: uppercase;
                    letter-spacing: 3px;
                    margin-bottom: 10px;
                }

                .section-title h2 {
                    font-family: 'Cormorant Garamond', serif;
                    font-size: clamp(28px, 3vw, 42px);
                    color: var(--text);
                    line-height: 1.15;
                }

                .section-title p {
                    color: rgb(0 0 0);
                    margin-top: 10px;
                    font-size: 15px;
                    max-width: 560px;
                    margin-left: auto;
                    margin-right: auto;
                }

            .line {
                width: 54px;
                height: 3px;
                background: linear-gradient(90deg, var(--green), var(--accent));
                border-radius: 2px;
                margin: 14px auto 0;
            }

            /* ── ABOUT ── */
            .about-wrap {
                max-width: 1280px;
                margin: 0 auto;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 60px;
                align-items: center;
            }

            .about-img {
                border-radius: 12px;
                overflow: hidden;
            }

                .about-img img {
                    width: 100%;
                    height: 440px;
                    object-fit: cover;
                    display: block;
                }

            .about-img-placeholder {
                width: 100%;
                height: 440px;
                background: linear-gradient(135deg, #e6f9f2, #d0f0e0);
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 12px;
            }

            .about-tag {
                display: inline-block;
                background: #080a6a;
                color: #ffffff;
                font-size: 11px;
                font-weight: 700;
                padding: 4px 14px;
                border-radius: 4px;
                margin-bottom: 14px;
                text-transform: uppercase;
                letter-spacing: 1.5px;
            }

            .about-text h2 {
                font-family: 'Cormorant Garamond', serif;
                font-size: clamp(24px, 3vw, 38px);
                line-height: 1.2;
                margin-bottom: 16px;
            }

            .about-text p {
                font-size: 15px;
                color: rgb(0 0 0);
                line-height: 1.8;
                margin-bottom: 14px;
            }

            .about-checks {
                display: flex;
                flex-direction: column;
                gap: 10px;
                margin: 22px 0;
            }

            .about-check {
                display: flex;
                align-items: center;
                gap: 12px;
                font-size: 14px;
                color: var(--text);
            }

            .check-dot {
                width: 22px;
                height: 22px;
                border-radius: 50%;
                background: #009142;
                flex-shrink: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #fff;
                font-size: 12px;
                font-weight: 700;
            }

            .about-cta {
                display: flex;
                gap: 14px;
                flex-wrap: wrap;
            }

            .btn-green {
                background: #0c0e6c;
                color: #fff;
                padding: 12px 28px;
                border-radius: 6px;
                font-weight: 700;
                font-size: 14px;
                text-decoration: none;
                transition: background .2s;
            }

                .btn-green:hover {
                    background: var(--blue-dark);
                }

            .btn-outline-green {
                background: transparent;
                color: #0c0e6c;
                padding: 12px 28px;
                border-radius: 6px;
                font-weight: 600;
                font-size: 14px;
                text-decoration: none;
                border: 1.5px solid #0c0e6c;
                transition: background .2s;
            }

                .btn-outline-green:hover {
                    background: var(--green-light);
                }

            /* ── MARQUEE ── */
            .marquee-section {
                background: var(--text);
                padding: 0;
                overflow: hidden;
                position: relative;
            }

            .marquee-tape {
                display: flex;
                background: #f70506;
                padding: 9px 0;
                margin: -4px 0;
            }

            .marquee-track {
                display: flex;
                gap: 52px;
                white-space: nowrap;
                animation: marqueeRun 30s linear infinite;
            }

                .marquee-track span {
                    font-size: 12px;
                    font-weight: 700;
                    color: #fff;
                    display: flex;
                    align-items: center;
                    gap: 12px;
                    text-transform: uppercase;
                    letter-spacing: 1px;
                }

                    .marquee-track span::before {
                        content: '✚';
                        color: rgba(255,255,255,.5);
                        font-size: 10px;
                    }

            @keyframes marqueeRun {
                from {
                    transform: translateX(0);
                }

                to {
                    transform: translateX(-50%);
                }
            }

            /* ── PRODUCTS ── */
            #products {
                background: #fff4f4;
            }

            .prod-grid {
                max-width: 1280px;
                margin: 0 auto;
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 26px;
            }

            .prod-card {
                background: var(--white);
                border: 1.5px solid var(--border);
                border-radius: 12px;
                overflow: hidden;
                transition: transform .25s, box-shadow .25s;
                cursor: default;
                display: flex;
                flex-direction: column;
            }

                .prod-card:hover {
                    transform: translateY(-6px);
                    box-shadow: 0 16px 44px rgba(0,168,107,.14);
                    border-color: var(--green);
                }

            .prod-card-img {
                width: 100%;
                height: 190px;
                background: linear-gradient(160deg, #ffffff, #ffffff);
                display: flex;
                align-items: center;
                justify-content: center;
                overflow: hidden;
                position: relative;
            }

                .prod-card-img img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                    padding: 20px;
                }

            .prod-cat-badge {
                position: absolute;
                top: 12px;
                left: 12px;
                font-size: 10px;
                background: var(--green);
                color: #fff;
                padding: 3px 10px;
                border-radius: 3px;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: .8px;
            }

            .prod-svg-icon {
                width: 72px;
                height: 72px;
                opacity: .85;
            }

            .prod-card-body {
                padding: 22px;
                flex: 1;
                display: flex;
                flex-direction: column;
            }

            .prod-name {
                font-family: 'Cormorant Garamond', serif;
                font-size: 20px;
                margin-bottom: 8px;
                color: var(--text);
                font-weight: 700;
            }

            .prod-desc {
                font-size: 13px;
                color: rgb(0 0 0);
                line-height: 1.7;
                margin-bottom: 12px;
                flex: 1;
            }

            .prod-bullets {
                list-style: none;
                margin-bottom: 16px;
            }

                .prod-bullets li {
                    font-size: 12.5px;
                    color: var(--text);
                    padding: 3px 0;
                    display: flex;
                    align-items: flex-start;
                    gap: 8px;
                }

                    .prod-bullets li::before {
                        content: '';
                        width: 6px;
                        height: 6px;
                        min-width: 6px;
                        border-radius: 50%;
                        background: var(--green);
                        margin-top: 5px;
                    }

            .prod-link {
                display: inline-flex;
                align-items: center;
                gap: 6px;
                font-size: 13px;
                font-weight: 700;
                color: var(--white);
                background: var(--green);
                padding: 9px 18px;
                border-radius: 5px;
                text-decoration: none;
                transition: background .2s;
                align-self: flex-start;
            }

                .prod-link:hover {
                    background: var(--blue-dark);
                }

            .view-all-wrap {
                text-align: center;
                margin-top: 40px;
            }

            .cat-filter {
                max-width: 1280px;
                margin: 0 auto 36px;
                display: flex;
                gap: 10px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .cat-pill {
                display: flex;
                align-items: center;
                gap: 8px;
                padding: 9px 22px;
                border-radius: 5px;
                border: 1.5px solid var(--border);
                background: var(--white);
                font-size: 13px;
                font-weight: 600;
                color: rgb(0 0 0);
                cursor: pointer;
                transition: all .2s;
            }

                .cat-pill svg {
                    width: 16px;
                    height: 16px;
                }

                .cat-pill:hover,
                .cat-pill.active {
                    background: var(--green);
                    color: #fff;
                    border-color: var(--green);
                }

                    .cat-pill:hover svg,
                    .cat-pill.active svg {
                        stroke: #fff;
                    }

            /* ── WHY US ── */
            #why-us {
                background: var(--white);
            }

            .why-grid {
                max-width: 1280px;
                margin: 0 auto;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 60px;
                align-items: center;
            }

            .why-cards {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }

            .why-card {
                background: #fbfbfb;
                border: 1.5px solid #0e0f6d;
                border-radius: 10px;
                padding: 24px;
                transition: box-shadow .2s, border-color .2s;
            }

                .why-card:hover {
                    box-shadow: var(--shadow);
                    border-color: var(--green);
                }

            .why-icon-wrap {
                width: 48px;
                height: 48px;
                border-radius: 10px;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 14px;
            }

                .why-icon-wrap svg {
                    width: 24px;
                    height: 24px;
                }

            .why-card h4 {
                font-size: 15px;
                font-weight: 700;
                margin-bottom: 7px;
            }

            .why-card p {
                font-size: 13px;
                color: rgb(0 0 0);
                line-height: 1.6;
            }

            .why-visual {
                border-radius: 12px;
                overflow: hidden;
            }

                .why-visual img {
                    width: 100%;
                    height: 420px;
                    object-fit: cover;
                    display: block;
                }

            .why-visual-placeholder {
                width: 100%;
                height: 420px;
                background: linear-gradient(135deg, #0a1f14, #0d2b1a);
                border-radius: 12px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 16px;
            }

                .why-visual-placeholder p {
                    color: #6ee7b7;
                    font-size: 16px;
                    font-family: 'Cormorant Garamond', serif;
                }

            /* ── STATS BAR ── */
            .stats-bar {
                background: linear-gradient(120deg, var(--blue-dark) 0%, var(--green) 100%);
                padding: 52px 28px;
            }

            .stats-inner {
                max-width: 1280px;
                margin: 0 auto;
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 28px;
                text-align: center;
            }

            .stat-num {
                font-family: 'Cormorant Garamond', serif;
                font-size: 46px;
                color: #fff;
                font-weight: 700;
            }

            .stat-label {
                font-size: 12px;
                color: rgba(255,255,255,.72);
                margin-top: 6px;
                text-transform: uppercase;
                letter-spacing: 1px;
            }

            /* ── CONTACT ── */
            #contact {
                background: #fff4f4;
            }

            .contact-wrap {
                max-width: 1100px;
                margin: 0 auto;
                display: grid;
                grid-template-columns: 1fr 1.2fr;
                gap: 52px;
                align-items: start;
            }

            .contact-info h3 {
                font-family: 'Cormorant Garamond', serif;
                font-size: 30px;
                margin-bottom: 14px;
            }

            .contact-info p {
                font-size: 15px;
                color: rgb(0 0 0);
                line-height: 1.8;
                margin-bottom: 28px;
            }

            .contact-card {
                background: var(--white);
                border: 1.5px solid var(--border);
                border-radius: 10px;
                padding: 18px 20px;
                margin-bottom: 14px;
                display: flex;
                align-items: flex-start;
                gap: 14px;
                transition: box-shadow .2s;
            }

                .contact-card:hover {
                    box-shadow: var(--shadow);
                }

            .contact-icon {
                width: 44px;
                height: 44px;
                border-radius: 10px;
                background: #ffffff;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
            }

                .contact-icon svg {
                    width: 20px;
                    height: 20px;
                }

            .contact-card strong {
                font-size: 13.5px;
                display: block;
                margin-bottom: 3px;
            }

            .contact-card span,
            .contact-card a {
                font-size: 13px;
                color: rgb(0 0 0);
            }

            .contact-card a {
                color: var(--green);
                text-decoration: none;
            }

            /* ── MAP ── */
            .map-container {
                border-radius: 16px;
                overflow: hidden;
                border: 2px solid var(--border);
                margin-top: 20px;
                position: relative;
                box-shadow: var(--shadow);
            }

                .map-container iframe {
                    display: block;
                    width: 100%;
                    height: 240px;
                    border: none;
                }

            .map-label {
                background: var(--green);
                color: #fff;
                padding: 10px 16px;
                font-size: 12.5px;
                font-weight: 600;
                display: flex;
                align-items: center;
                gap: 8px;
            }

                .map-label svg {
                    width: 14px;
                    height: 14px;
                    stroke: #fff;
                    flex-shrink: 0;
                }

            .enquiry-form {
                background: var(--white);
                border: 1.5px solid var(--border);
                border-radius: 16px;
                padding: 36px;
            }

                .enquiry-form h3 {
                    font-family: 'Cormorant Garamond', serif;
                    font-size: 24px;
                    margin-bottom: 22px;
                }

            .frow {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 14px;
                margin-bottom: 14px;
            }

            .fg {
                display: flex;
                flex-direction: column;
                gap: 6px;
                margin-bottom: 14px;
            }

                .fg label {
                    font-size: 12.5px;
                    font-weight: 600;
                    color: rgb(0 0 0);
                    text-transform: uppercase;
                    letter-spacing: .8px;
                }

                .fg input,
                .fg select,
                .fg textarea {
                    padding: 11px 16px;
                    border: 1.5px solid var(--border);
                    border-radius: 8px;
                    font-size: 14px;
                    font-family: 'Plus Jakarta Sans', sans-serif;
                    outline: none;
                    background: #f1f0ff;
                    transition: border .2s;
                    color: rgb(0 0 0);
                }

                    .fg input:focus,
                    .fg select:focus,
                    .fg textarea:focus {
                        border-color: var(--green);
                    }

                .fg textarea {
                    min-height: 110px;
                    resize: vertical;
                }

            .btn-submit {
                width: 100%;
                background: var(--green);
                color: #fff;
                padding: 13px;
                border: none;
                border-radius: 8px;
                font-size: 15px;
                font-weight: 700;
                cursor: pointer;
                font-family: 'Plus Jakarta Sans', sans-serif;
                transition: background .2s, transform .15s;
                letter-spacing: .3px;
            }

                .btn-submit:hover {
                    background: var(--blue-dark);
                    transform: translateY(-2px);
                }

            .form-success {
                display: none;
                text-align: center;
                padding: 40px 20px;
            }

                .form-success .success-icon {
                    width: 64px;
                    height: 64px;
                    margin: 0 auto;
                    animation: popIn .4s ease;
                }

            @keyframes popIn {
                from {
                    transform: scale(0);
                }

                to {
                    transform: scale(1);
                }
            }

            /* ── FOOTER ── */
            footer {
                background: linear-gradient(180deg, #1c1c72 0%, #1c1c72 100%);
                color: #cde8d9;
                padding: 0 0 24px;
                position: relative;
                overflow: hidden;
            }

            .footer-wave {
                width: 100%;
                height: 60px;
                background: #ffffff;
                clip-path: ellipse(55% 100% at 50% 0%);
            }
                .footer-wave1 {
                width: 100%;
                height: 60px;
                background: #fff4f4;
                clip-path: ellipse(55% 100% at 50% 0%);
            }    
            .footer-wave2 {
                width: 100%;
                height: 60px;
                background: #fff4f4;
                clip-path: ellipse(55% 100% at 50% 0%);
            }
            .footer-wave3 {
                width: 100%;
                height: 60px;
                background: #fff4f4;
                clip-path: ellipse(55% 100% at 50% 0%);
            }

    

            .footer-main {
                padding: 52px 28px 24px;
            }

            .footer-inner {
                max-width: 1280px;
                margin: 0 auto;
                display: grid;
                grid-template-columns: 2fr 1fr 1fr 1fr;
                gap: 44px;
            }

            .footer-brand {
                display: flex;
                align-items: center;
                gap: 12px;
                margin-bottom: 16px;
            }

                .footer-brand img {
                    height: 46px;
                    width: auto;
                    object-fit: contain;
                }

            .footer-brand-name {
                font-family: 'Cormorant Garamond', serif;
                font-size: 24px;
                color: #fff;
            }

            .footer-desc {
                font-size: 13.5px;
                line-height: 1.8;
                color: #ffffff;
                margin-bottom: 20px;
            }

            .footer-certbadges {
                display: flex;
                gap: 8px;
                flex-wrap: wrap;
                margin-bottom: 22px;
            }

            .cert-badge {
                background: rgba(0,168,107,.15);
                border: 1px solid rgba(0,168,107,.3);
                color: #6ee7b7;
                font-size: 10px;
                font-weight: 700;
                padding: 4px 10px;
                border-radius: 3px;
                letter-spacing: .8px;
                text-transform: uppercase;
            }

            .footer-social {
                display: flex;
                gap: 10px;
            }

            .soc {
                width: 36px;
                height: 36px;
                border-radius: 6px;
                border: 1.5px solid #1e3a2a;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #ffffff;
                font-size: 13px;
                text-decoration: none;
                font-weight: 700;
                transition: background .2s, border-color .2s, color .2s;
            }

                .soc:hover {
                    background: var(--green);
                    border-color: var(--green);
                    color: #fff;
                }

            .footer-col h4 {
                font-size: 13px;
                font-weight: 700;
                color: #fff;
                margin-bottom: 16px;
                text-transform: uppercase;
                letter-spacing: 1px;
            }

            .footer-col ul {
                list-style: none;
            }

                .footer-col ul li {
                    margin-bottom: 10px;
                    display: flex;
                    align-items: center;
                    gap: 6px;
                }

                    .footer-col ul li::before {
                        content: '›';
                        color: var(--green);
                        font-size: 16px;
                    }

                    .footer-col ul li a {
                        font-size: 13.5px;
                        color: #ffffff;
                        text-decoration: none;
                        transition: color .2s;
                    }

                        .footer-col ul li a:hover {
                            color: #c8102e;
                        }

            .footer-bottom {
                max-width: 1280px;
                margin: 24px auto 0;
                border-top: 1px solid #0f2a1a;
                padding-top: 20px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                flex-wrap: wrap;
                gap: 12px;
            }

                .footer-bottom p {
                    font-size: 12px;
                    color: #ffffff;
                }

            .footer-rx-strip {
                background: linear-gradient(90deg, rgba(0,168,107,.15), transparent);
                border-top: 1px solid rgba(0,168,107,.2);
                padding: 10px 28px;
                display: flex;
                align-items: center;
                gap: 12px;
                max-width: 1280px;
                margin: 0 auto;
            }

                .footer-rx-strip span {
                    font-size: 11px;
                    color: #ffffff;
                }



            .footer-bottom a {
                color: #ff0000;
                text-decoration: none;
                font-weight: 600;
                transition: color 0.3s ease;
                position: relative;
            }

                .footer-bottom a:hover {
                    color: #ffffff;
                    text-decoration: underline;
                }
                .footer-bottom span:first-child {
                    color: #ffffff;
                }
                .footer-bottom span:last-child {
                    color: #ffffff;
                }


            /* ── BACK TO TOP ── */
            #btt {
                position: fixed;
                bottom: 30px;
                right: 30px;
                background: transparent;
                border: none;
                cursor: pointer;
                z-index: 800;
                opacity: 0;
                transition: opacity .4s, transform .25s;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 5px;
            }

                #btt.show {
                    opacity: 1;
                }

                #btt:hover {
                    transform: translateY(-7px);
                }

                    #btt:hover .inj-wrap {
                        filter: drop-shadow(0 8px 22px rgba(0,168,107,.65));
                    }

            .inj-wrap {
                position: relative;
                width: 54px;
                height: 70px;
                display: flex;
                align-items: center;
                justify-content: center;
                filter: drop-shadow(0 4px 14px rgba(0,168,107,.4));
                transition: filter .3s;
            }

                .inj-wrap img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                }

            .btt-label {
                font-size: 9px;
                font-weight: 700;
                color: #ffffff;
                letter-spacing: 1.5px;
                text-transform: uppercase;
                background: rgb(0 0 0);
                padding: 2px 8px;
                border-radius: 20px;
                border: 1px solid rgba(0,168,107,.25);
                font-family: 'Plus Jakarta Sans', sans-serif;
            }

            /* ── WHATSAPP FLOAT BUTTON ── */
#wa-btn {
    position: fixed;
    bottom: 150px;
    right: 30px;
    width: 54px;
    height: 54px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 800;
    box-shadow: 0 4px 16px rgba(37,211,102,.45);
    cursor: pointer;
    text-decoration: none;
    opacity: 1;
    transform: scale(1);
    transition: background .3s, box-shadow .3s, transform .3s;
}

#wa-btn:hover {
    background: #1ebe5d;
    box-shadow: 0 6px 24px rgba(37,211,102,.6);
    transform: scale(1.1);
}

#wa-btn svg {
    width: 28px;
    height: 28px;
    fill: #fff;
    flex-shrink: 0;
}

.wa-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37,211,102,.30);
    animation: waPulse 2.2s ease-out infinite;
    pointer-events: none;
}

@keyframes waPulse {
    0%   { transform: scale(1);   opacity: .8; }
    100% { transform: scale(1.6); opacity: 0;  }
}

/* Mobile */
@media (max-width: 768px) {
    #wa-btn {
        bottom: 130px;
        right: 18px;
        width: 48px;
        height: 48px;
    }
}

            /* ══════════════════════════════════════
    RESPONSIVE — TABLET
    ══════════════════════════════════════ */
            @media(max-width:1024px) {
                .about-wrap,
                .why-grid {
                    grid-template-columns: 1fr;
                }

                .about-img,
                .why-visual {
                    display: none;
                }

                .footer-inner {
                    grid-template-columns: 1fr 1fr;
                }

                .stats-inner {
                    grid-template-columns: repeat(2, 1fr);
                }
            }

            /* ══════════════════════════════════════
    RESPONSIVE — MOBILE  (≤768px)
    ══════════════════════════════════════ */
            @media(max-width:768px) {

                /* NAV */
                nav.desktop {
                    display: none;
                }

                .hamburger {
                    display: flex;
                }

                /* HERO */
                .hero-slider {
                    height: 480px;
                }

                .slide {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                .slide-content {
                    text-align: center;
                    padding: 0 20px;
                    width: 100%;
                    max-width: 100%;
                    align-items: center;
                    margin: 0 auto;
                }

                .slide-badge {
                    align-self: center;
                    text-align: center;
                }

                .slide-content h1 {
                    font-size: clamp(26px, 7vw, 38px);
                    text-align: center;
                    width: 100%;
                }

                .slide-content p {
                    text-align: center;
                    font-size: 14px;
                    max-width: 100%;
                    width: 100%;
                }

                .slide-btns {
                    justify-content: center;
                    width: 100%;
                    flex-wrap: wrap;
                    gap: 10px;
                }

                .btn-primary,
                .btn-ghost {
                    flex: 1;
                    min-width: 130px;
                    max-width: 200px;
                    text-align: center;
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                }

                .slider-dots {
                    bottom: 14px;
                }

                /* LAYOUT */
                .contact-wrap {
                    grid-template-columns: 1fr;
                }

                .footer-inner {
                    grid-template-columns: 1fr;
                }

                .frow {
                    grid-template-columns: 1fr;
                }

                /* FLOATING BUTTONS */
                #wa-btn {
                    bottom: 130px;
                    right: 18px;
                    width: 48px;
                    height: 48px;
                }

                #btt {
                    bottom: 22px;
                    right: 18px;
                }
            }

            /* ══════════════════════════════════════
    RESPONSIVE — SMALL MOBILE  (≤480px)
    ══════════════════════════════════════ */
            @media(max-width:480px) {

                .hero-slider {
                    height: 420px;
                }

                .slide-content {
                    padding: 0 16px;
                }

                    .slide-content h1 {
                        font-size: clamp(22px, 6.5vw, 30px);
                    }

                .slide-btns {
                    flex-direction: column;
                    align-items: center;
                }

                .btn-primary,
                .btn-ghost {
                    width: 100%;
                    max-width: 280px;
                    padding: 12px 22px;
                    font-size: 13px;
                }

                .stats-inner {
                    grid-template-columns: repeat(2, 1fr);
                }

                .why-cards {
                    grid-template-columns: 1fr;
                }
            }
            /* ── PAGE HERO BANNER ─────────────────────────────────────── */
            .page-hero {
                position: relative;
                width: 100%;
                min-height: 32px;
                display: flex;
                align-items: center;
                justify-content: center;
                overflow: hidden;
                background: linear-gradient(135deg, #ff8297 0%, #0044ff 45%, #990101 100%);
            }

            /* Decorative circle blobs */
            .page-hero::before,
            .page-hero::after {
                content: '';
                position: absolute;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.08);
                pointer-events: none;
            }
            .page-hero::before {
                width: 420px;
                height: 420px;
                top: -120px;
                left: -100px;
            }
            .page-hero::after {
                width: 340px;
                height: 340px;
                bottom: -120px;
                right: -80px;
            }

            /* Extra blob via a child span injected via CSS */
            .page-hero-blob {
                position: absolute;
                width: 260px;
                height: 260px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.06);
                top: 30px;
                right: 200px;
                pointer-events: none;
            }

            .page-hero-inner {
                position: relative;
                z-index: 2;
                text-align: center;
                padding: 60px 24px 50px;
                max-width: 700px;
            }

            .page-hero-badge {
                display: inline-block;
                background: rgba(255, 255, 255, 0.15);
                border: 1px solid rgba(255, 255, 255, 0.35);
                color: #fff;
                font-family: 'Plus Jakarta Sans', sans-serif;
                font-size: 12px;
                font-weight: 600;
                letter-spacing: 2px;
                text-transform: uppercase;
                padding: 6px 18px;
                border-radius: 999px;
                margin-bottom: 22px;
            }

            .page-hero-title {
                font-family: 'Cormorant Garamond', serif;
                font-size: clamp(36px, 6vw, 58px);
                font-weight: 700;
                color: #fff;
                line-height: 1.1;
                margin: 0 0 16px;
            }

            .page-hero-subtitle {
                font-family: 'Plus Jakarta Sans', sans-serif;
                font-size: 16px;
                font-weight: 400;
                color: rgba(255, 255, 255, 0.82);
                line-height: 1.65;
                margin: 0 auto 26px;
                max-width: 520px;
            }

            /* Breadcrumb */
            .page-hero-breadcrumb {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                font-family: 'Plus Jakarta Sans', sans-serif;
                font-size: 14px;
                font-weight: 500;
                color: rgba(255, 255, 255, 0.70);
            }
            .page-hero-breadcrumb a {
                color: rgba(255, 255, 255, 0.70);
                text-decoration: none;
                transition: color 0.2s;
            }
            .page-hero-breadcrumb a:hover {
                color: #fff;
            }
            .page-hero-breadcrumb .sep {
                font-size: 13px;
                color: rgba(255, 255, 255, 0.45);
            }
            .page-hero-breadcrumb .current {
                color: #fff;
                font-weight: 600;
            }

            /* Responsive */
            @media (max-width: 600px) {
                .page-hero {
                    min-height: 260px;
                }
                .page-hero-inner {
                    padding: 48px 20px 40px;
                }
            }