        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --navy: #1B1464;
            --blue-mid: #2D5DA1;
            --blue-light: #5BB5D5;
            --blue-pale: #A8DFF0;
            --blue-whisper: #E8F6FB;
            --white: #FFFFFF;
            --gray-50: #F8FAFB;
            --gray-100: #EEF1F3;
            --gray-600: #556270;
            --gold: #D4A843;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', sans-serif;
            color: #2A2A3C;
            background: var(--white);
            overflow-x: hidden;
        }

        /* ─── NAVBAR ─── */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 16px 0;
            transition: all 0.35s ease;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--gray-100);
        }
        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            padding: 10px 0;
            box-shadow: 0 2px 24px rgba(27, 20, 100, 0.08);
        }
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-logo img {
            height: 48px;
            transition: height 0.3s ease;
        }
        .navbar.scrolled .nav-logo img { height: 38px; }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
        }
        .nav-links a {
            text-decoration: none;
            color: var(--navy);
            font-weight: 500;
            font-size: 0.95rem;
            letter-spacing: 0.02em;
            position: relative;
            padding-bottom: 4px;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--blue-light);
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after { width: 100%; }
        .nav-links a.nav-cta {
            background: var(--navy) !important;
            color: var(--white) !important;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600 !important;
            line-height: 1;
            box-shadow: 0 4px 14px rgba(27, 20, 100, 0.22);
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }
        .nav-cta:hover { transform: translateY(-2px); background: var(--blue-mid) !important; box-shadow: 0 6px 20px rgba(27, 20, 100, 0.32); }
        .nav-cta::after { display: none !important; }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px;
        }
        .hamburger span {
            width: 26px;
            height: 2.5px;
            background: var(--navy);
            border-radius: 3px;
            transition: 0.3s;
        }

        /* ─── CONTAINER ─── */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ─── HERO ─── */
        .hero {
            min-height: 100vh;
            background: var(--navy);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        /* Moving photo slideshow */
        .hero-slideshow {
            position: absolute;
            inset: 0;
            z-index: 0;
            overflow: hidden;
        }
        .hero-slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            will-change: opacity, transform;
            animation: heroFade 32s infinite;
        }
        .hero-slide:nth-child(1) { background-image: url('../hero1.jpg'); animation-delay: 0s; }
        .hero-slide:nth-child(2) { background-image: url('../hero2.jpg'); animation-delay: 8s; }
        .hero-slide:nth-child(3) { background-image: url('../hero3.jpg'); animation-delay: 16s; }
        .hero-slide:nth-child(4) { background-image: url('../hero4.jpg'); animation-delay: 24s; }
        @keyframes heroFade {
            0%   { opacity: 0; transform: scale(1.12); }
            3%   { opacity: 1; }
            22%  { opacity: 1; }
            25%  { opacity: 0; transform: scale(1); }
            100% { opacity: 0; transform: scale(1); }
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(135deg, rgba(27,20,100,0.90) 0%, rgba(27,20,100,0.72) 45%, rgba(45,93,161,0.78) 100%);
        }
        @media (prefers-reduced-motion: reduce) {
            .hero-slide { animation: none; opacity: 1; }
            .hero-slide:nth-child(n+2) { display: none; }
        }
        .hero::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(91, 181, 213, 0.12) 0%, transparent 70%);
            top: -100px;
            right: -100px;
        }
        .hero::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(168, 223, 240, 0.08) 0%, transparent 70%);
            bottom: -50px;
            left: -50px;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            width: 100%;
            padding: 120px 0 80px;
        }
        .hero-logo {
            display: inline-block;
            background: var(--white);
            padding: 18px 32px;
            border-radius: 18px;
            box-shadow: 0 12px 40px rgba(0,0,0,0.28);
            margin-bottom: 36px;
        }
        .hero-logo img {
            height: 72px;
            display: block;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(91, 181, 213, 0.15);
            border: 1px solid rgba(91, 181, 213, 0.35);
            color: var(--blue-pale);
            padding: 8px 24px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 28px;
        }
        .hero h1 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2.4rem, 5vw, 4rem);
            font-weight: 800;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }
        .hero h1 .highlight {
            background: linear-gradient(135deg, var(--blue-light), var(--blue-pale));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-sub {
            font-size: clamp(1.1rem, 2vw, 1.35rem);
            color: var(--blue-pale);
            font-weight: 300;
            margin-bottom: 30px;
            letter-spacing: 0.01em;
        }
        /* Three promise lines — left-aligned as a block, block itself centred */
        .hero-points {
            list-style: none;
            display: flex;              /* block-level so it stacks, not inline */
            flex-direction: column;
            align-items: flex-start;
            gap: 14px;
            width: fit-content;
            margin: 0 auto 36px;
            text-align: left;
        }
        .hero-points li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Outfit', sans-serif;
            font-size: clamp(0.95rem, 1.5vw, 1.1rem);
            font-weight: 500;
            color: rgba(255,255,255,0.92);
            letter-spacing: 0.01em;
        }
        .hero-points .tick {
            width: 22px;
            height: 22px;
            flex-shrink: 0;
            border-radius: 50%;
            background: rgba(91, 181, 213, 0.22);
            border: 1px solid rgba(91, 181, 213, 0.55);
            color: var(--blue-pale);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.68rem;
            line-height: 1;
        }

        .hero-tagline {
            display: inline-flex;
            align-items: center;
            gap: 16px;
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.14);
            padding: 14px 34px;
            border-radius: 60px;
            margin-bottom: 40px;
        }
        .hero-tagline span {
            font-family: 'Outfit', sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--white);
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }
        .hero-tagline .divider {
            width: 2px;
            height: 28px;
            background: var(--blue-light);
            opacity: 0.5;
        }
        .hero-btns {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--blue-light);
            color: var(--navy);
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            padding: 16px 36px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(91, 181, 213, 0.35);
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.05);
            color: var(--white);
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            padding: 16px 36px;
            border-radius: 50px;
            text-decoration: none;
            border: 1.5px solid rgba(255,255,255,0.35);
            transition: all 0.3s ease;
        }
        .btn-outline:hover {
            border-color: var(--blue-light);
            background: rgba(91, 181, 213, 0.1);
        }

        /* ─── STATS BAR ─── */
        .stats-bar {
            background: var(--white);
            margin-top: -50px;
            position: relative;
            z-index: 10;
            border-radius: 20px;
            box-shadow: 0 10px 60px rgba(27, 20, 100, 0.1);
            padding: 40px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            text-align: center;
        }
        .stat-item h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--navy);
            line-height: 1;
            margin-bottom: 6px;
        }
        .stat-item h3 .accent { color: var(--blue-light); }
        .stat-item p {
            font-size: 0.88rem;
            color: var(--gray-600);
            font-weight: 500;
        }

        /* ─── SECTIONS ─── */
        .section {
            padding: 100px 0;
        }
        .section-label {
            font-family: 'Outfit', sans-serif;
            font-size: 0.82rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--blue-light);
            margin-bottom: 12px;
        }
        .section-title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            font-weight: 800;
            color: var(--navy);
            line-height: 1.15;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }
        .section-desc {
            font-size: 1.05rem;
            color: var(--gray-600);
            line-height: 1.7;
            max-width: 600px;
        }

        /* ─── ABOUT ─── */
        .about { background: var(--gray-50); }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 36px;
        }
        .about-feature {
            padding: 24px;
            background: var(--white);
            border-radius: 16px;
            border: 1px solid var(--gray-100);
            transition: all 0.3s ease;
        }
        .about-feature:hover {
            box-shadow: 0 8px 30px rgba(27, 20, 100, 0.08);
            transform: translateY(-4px);
        }
        .about-feature .icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--blue-whisper), rgba(91, 181, 213, 0.15));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin-bottom: 14px;
        }
        .about-feature h4 {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            color: var(--navy);
            margin-bottom: 6px;
        }
        .about-feature p {
            font-size: 0.85rem;
            color: var(--gray-600);
            line-height: 1.5;
        }
        .about-visual {
            position: relative;
        }
        .about-card {
            background: linear-gradient(135deg, var(--navy), var(--blue-mid));
            border-radius: 24px;
            padding: 48px 40px;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        .about-card::before {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(91, 181, 213, 0.15);
            top: -60px;
            right: -60px;
        }
        .about-card h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        .about-card ul {
            list-style: none;
            position: relative;
            z-index: 1;
        }
        .about-card ul li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .about-card ul li:last-child { border-bottom: none; }
        .about-card ul li .check {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: rgba(91, 181, 213, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 0.75rem;
        }

        /* ─── PARTNERS ─── */
        .partners {
            background: var(--white);
            text-align: center;
        }
        .partners .section-desc {
            margin: 0 auto 50px;
            text-align: center;
        }
        .marquee-wrapper {
            overflow: hidden;
            padding: 20px 0;
            position: relative;
        }
        .marquee-wrapper::before,
        .marquee-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            width: 120px;
            height: 100%;
            z-index: 2;
        }
        .marquee-wrapper::before {
            left: 0;
            background: linear-gradient(90deg, var(--white), transparent);
        }
        .marquee-wrapper::after {
            right: 0;
            background: linear-gradient(-90deg, var(--white), transparent);
        }
        .marquee-track {
            display: flex;
            align-items: stretch;
            animation: marquee 55s linear infinite;
            width: max-content;
        }
        .marquee-track:hover { animation-play-state: paused; }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        @media (prefers-reduced-motion: reduce) {
            .marquee-track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
        }
        .partner-card {
            flex-shrink: 0;
            margin: 0 12px;
            width: 200px;
            background: var(--white);
            border: 1.5px solid var(--gray-100);
            border-radius: 18px;
            padding: 26px 20px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
        }
        .partner-card:hover {
            border-color: var(--blue-light);
            box-shadow: 0 10px 32px rgba(27, 20, 100, 0.10);
            transform: translateY(-6px);
        }
        /* Fixed-height box keeps wildly different logo shapes optically aligned */
        .partner-logo-box {
            height: 64px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .partner-logo-box img {
            max-height: 64px;
            max-width: 150px;
            width: auto;
            height: auto;
            object-fit: contain;
            transition: transform 0.35s ease;
        }
        /* Compact square marks read smaller than wide wordmarks at the same
           height, so nudge them up to keep the row optically even. */
        .partner-card[data-shape="square"] .partner-logo-box img { max-width: 64px; transform: scale(1.08); }
        .partner-card:hover .partner-logo-box img { transform: scale(1.06); }
        .partner-card[data-shape="square"]:hover .partner-logo-box img { transform: scale(1.14); }
        /* Shown only until a logo file is uploaded for that partner */
        .partner-initial {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: var(--blue-whisper);
            color: var(--blue-mid);
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .partner-card .partner-name {
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--navy);
            letter-spacing: 0.01em;
            text-align: center;
            line-height: 1.3;
        }

        /* ─── HOT PROJECTS ─── */
        .projects { background: var(--gray-50); }
        .projects-intro {
            margin: 0 auto 50px;
            text-align: center;
        }
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 20px;
        }
        .project-card {
            display: flex;
            flex-direction: column;
            background: var(--white);
            border: 1px solid var(--gray-100);
            border-radius: 20px;
            padding: 22px 22px 18px;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }
        .project-card:hover {
            border-color: var(--blue-light);
            box-shadow: 0 16px 44px rgba(27, 20, 100, 0.12);
            transform: translateY(-6px);
        }

        /* Logo sits free at the top of the card — no tile, so wide wordmarks
           (Mahindra, Narang) stay readable instead of shrinking into a square. */
        .project-logo {
            height: 46px;
            display: flex;
            align-items: center;
            margin-bottom: 18px;
            position: relative;
            z-index: 1;
        }
        .project-logo img {
            max-height: 46px;
            max-width: 145px;
            width: auto;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        .project-logo[data-shape="square"] img { max-height: 46px; max-width: 46px; }
        .project-card:hover .project-logo img { transform: scale(1.05); }
        .project-initial {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: var(--blue-whisper);
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 1.1rem;
            color: var(--blue-mid);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .project-name {
            font-family: 'Outfit', sans-serif;
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--navy);
            letter-spacing: -0.01em;
            line-height: 1.2;
            position: relative;
            z-index: 1;
        }
        .project-dev {
            font-size: 0.85rem;
            color: var(--gray-600);
            margin-top: 4px;
            position: relative;
            z-index: 1;
        }
        .project-foot {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-top: auto;          /* pins the footer to the bottom of every card */
            padding-top: 16px;
            position: relative;
            z-index: 1;
        }
        .project-area {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.86rem;
            color: var(--gray-600);
        }
        .project-area svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--blue-mid); }
        .project-cta {
            font-family: 'Outfit', sans-serif;
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--blue-mid);
            white-space: nowrap;
            opacity: 0;
            transform: translateX(-6px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
        .project-card:hover .project-cta { opacity: 1; transform: translateX(0); }

        /* ─── CONTACT ─── */
        .contact { background: var(--white); }
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
        }
        .contact-info { display: flex; flex-direction: column; gap: 28px; }
        .contact-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }
        .contact-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--navy), var(--blue-mid));
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .contact-icon svg { width: 22px; height: 22px; fill: var(--white); }
        .contact-item h4 {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--navy);
            margin-bottom: 4px;
        }
        .contact-item p, .contact-item a {
            font-size: 0.92rem;
            color: var(--gray-600);
            line-height: 1.6;
            text-decoration: none;
        }
        .contact-item a:hover { color: var(--blue-light); }
        .contact-map {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(27, 20, 100, 0.08);
            height: 100%;
            min-height: 360px;
        }
        .contact-map iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }
        .map-directions {
            position: absolute;
            left: 16px;
            bottom: 16px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--navy);
            color: var(--white);
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 0.85rem;
            padding: 10px 18px;
            border-radius: 50px;
            text-decoration: none;
            box-shadow: 0 6px 20px rgba(27, 20, 100, 0.28);
            transition: all 0.25s ease;
        }
        .map-directions:hover { background: var(--blue-mid); transform: translateY(-2px); }
        .map-directions svg { width: 15px; height: 15px; }

        /* ─── FOOTER ─── */
        .footer {
            background: var(--navy);
            color: var(--white);
            padding: 48px 0 28px;
            text-align: center;
        }
        .footer-logo img { height: 50px; margin-bottom: 20px; }
        .footer p {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.5);
            line-height: 1.8;
        }
        .footer .gst {
            color: rgba(255,255,255,0.35);
            font-size: 0.8rem;
            margin-top: 12px;
        }

        /* ─── WHATSAPP FAB ─── */
        .wa-fab {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 999;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #25D366;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .wa-fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5); }
        .wa-fab svg { width: 30px; height: 30px; fill: #fff; }
        .wa-fab .pulse {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: #25D366;
            animation: wa-pulse 2s infinite;
            z-index: -1;
        }
        @keyframes wa-pulse {
            0% { transform: scale(1); opacity: 0.5; }
            100% { transform: scale(1.6); opacity: 0; }
        }

        /* ─── RESPONSIVE ─── */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: rgba(255, 255, 255, 0.98);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 28px;
                z-index: 999;
            }
            .nav-links.active { display: flex; }
            .nav-links a { font-size: 1.2rem; }
            .hamburger { display: flex; z-index: 1001; }
            .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
            .hamburger.active span:nth-child(2) { opacity: 0; }
            .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
            .hero-content { padding: 100px 0 60px; }
            .hero-logo img { height: 65px; }
            .hero-tagline {
                flex-direction: column;
                gap: 8px;
                padding: 14px 28px;
                border-radius: 16px;
            }
            .hero-tagline .divider { width: 40px; height: 1.5px; }
            .stats-bar {
                grid-template-columns: repeat(2, 1fr);
                margin-top: -30px;
                padding: 28px 20px;
                border-radius: 16px;
            }
            .stat-item h3 { font-size: 1.6rem; }
            .about-grid { grid-template-columns: 1fr; gap: 36px; }
            .about-features { grid-template-columns: 1fr; }
            .contact-grid { grid-template-columns: 1fr; }
            /* No hover on touch, so the CTA and rail must always be visible */
            .project-cta { opacity: 1; transform: none; }
            .project-card::before { transform: scaleY(1); }
            .project-card { padding: 20px 20px 18px; }
            .project-name { font-size: 1.2rem; }
            .partner-card { width: 158px; margin: 0 8px; padding: 20px 14px 16px; gap: 12px; }
            .partner-logo-box { height: 48px; }
            .partner-logo-box img { max-height: 48px; max-width: 112px; }
            .partner-card[data-shape="square"] .partner-logo-box img { max-width: 48px; }
            .partner-card .partner-name { font-size: 0.82rem; }
            .marquee-wrapper::before, .marquee-wrapper::after { width: 48px; }
            .section { padding: 60px 0; }
            .wa-fab { bottom: 20px; right: 20px; width: 54px; height: 54px; }
        }

        /* ─── SCROLL ANIMATIONS ─── */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ═══════════════════════════════════════════════
           INNER PAGES (About / Privacy / Terms)
           ═══════════════════════════════════════════════ */

        /* Fixed navbar overlaps content on pages with no full-bleed hero */
        .page-hero {
            background: linear-gradient(135deg, var(--navy) 0%, var(--blue-mid) 100%);
            padding: 160px 0 70px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            width: 460px;
            height: 460px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(91, 181, 213, 0.16) 0%, transparent 70%);
            top: -160px;
            right: -120px;
        }
        .page-hero .container { position: relative; z-index: 1; }
        .page-hero .section-label { color: var(--blue-pale); }
        .page-hero h1 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2rem, 4.5vw, 3.2rem);
            font-weight: 800;
            color: var(--white);
            line-height: 1.12;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
        }
        .page-hero p {
            font-size: clamp(1rem, 1.8vw, 1.15rem);
            color: rgba(255,255,255,0.78);
            line-height: 1.7;
            max-width: 720px;
            margin: 0 auto;
            font-weight: 300;
        }

        /* Breadcrumb */
        .breadcrumb {
            background: var(--gray-50);
            border-bottom: 1px solid var(--gray-100);
            padding: 14px 0;
            font-size: 0.85rem;
            color: var(--gray-600);
        }
        .breadcrumb a { color: var(--blue-mid); text-decoration: none; font-weight: 500; }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb span { opacity: 0.6; margin: 0 8px; }

        /* ─── Prose blocks (legal pages, mission copy) ─── */
        .prose { max-width: 860px; }
        .prose h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.45rem;
            font-weight: 700;
            color: var(--navy);
            letter-spacing: -0.01em;
            margin: 44px 0 14px;
        }
        .prose h2:first-child { margin-top: 0; }
        .prose h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--navy);
            margin: 26px 0 10px;
        }
        .prose p, .prose li {
            font-size: 1rem;
            color: var(--gray-600);
            line-height: 1.8;
        }
        .prose p { margin-bottom: 14px; }
        .prose ul, .prose ol { margin: 0 0 18px 22px; }
        .prose li { margin-bottom: 8px; }
        .prose a { color: var(--blue-mid); text-decoration: none; font-weight: 500; }
        .prose a:hover { text-decoration: underline; }
        /* Keep phone numbers from breaking mid-number across a line wrap */
        a[href^="tel:"] { white-space: nowrap; }
        .prose strong { color: var(--navy); font-weight: 600; }
        .prose .updated {
            display: inline-block;
            background: var(--blue-whisper);
            color: var(--blue-mid);
            font-size: 0.82rem;
            font-weight: 600;
            padding: 8px 18px;
            border-radius: 50px;
            margin-bottom: 34px;
        }

        /* Opening paragraph of a section — one step up from body copy */
        .lead {
            font-size: clamp(1.02rem, 1.5vw, 1.14rem);
            line-height: 1.8;
            color: var(--gray-600);
            max-width: 880px;
        }
        .lead strong { color: var(--navy); font-weight: 600; }
        .lead + .lead { margin-top: 18px; }

        /* Rule under a section heading, used where a section needs a harder start */
        .title-rule {
            width: 64px;
            height: 4px;
            border-radius: 4px;
            background: linear-gradient(90deg, var(--navy), var(--blue-light));
            margin: 0 0 26px;
        }
        .mission .title-rule { background: linear-gradient(90deg, var(--blue-light), var(--blue-pale)); margin: 0 auto 26px; }

        /* ─── Legal pages: sticky contents rail ─── */
        .legal-layout {
            display: grid;
            grid-template-columns: 260px 1fr;
            gap: 56px;
            align-items: start;
        }
        .legal-toc {
            position: sticky;
            top: 100px;
            background: var(--gray-50);
            border: 1px solid var(--gray-100);
            border-radius: 18px;
            padding: 24px 22px;
            max-height: calc(100vh - 140px);
            overflow-y: auto;
        }
        .legal-toc h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 0.74rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--blue-mid);
            margin: 0 0 14px;
        }
        .legal-toc ol {
            list-style: none;
            margin: 0;
            padding: 0;
            counter-reset: toc;
        }
        .legal-toc li { margin: 0; }
        .legal-toc a {
            display: block;
            padding: 7px 10px 7px 12px;
            border-left: 2px solid var(--gray-100);
            font-size: 0.84rem;
            line-height: 1.45;
            color: var(--gray-600);
            text-decoration: none;
            transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
        }
        .legal-toc a:hover {
            color: var(--navy);
            border-left-color: var(--blue-light);
            background: rgba(91, 181, 213, 0.08);
            text-decoration: none;
        }
        .legal-toc a.active {
            color: var(--navy);
            font-weight: 600;
            border-left-color: var(--blue-mid);
            background: var(--blue-whisper);
        }
        /* Offset anchor targets so the fixed navbar doesn't cover the heading */
        .prose h2[id] { scroll-margin-top: 96px; }

        @media (max-width: 980px) {
            .legal-layout { grid-template-columns: 1fr; gap: 32px; }
            .legal-toc { position: static; max-height: none; }
        }

        /* Identity / contact panel reused on legal + about pages */
        .info-panel {
            background: var(--gray-50);
            border: 1px solid var(--gray-100);
            border-radius: 18px;
            padding: 28px 30px;
            margin: 8px 0 28px;
        }
        .info-panel dl {
            display: grid;
            grid-template-columns: 190px 1fr;
            gap: 12px 20px;
        }
        .info-panel dt {
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--navy);
        }
        .info-panel dd {
            font-size: 0.95rem;
            color: var(--gray-600);
            line-height: 1.6;
        }
        .info-panel dd a { color: var(--blue-mid); text-decoration: none; }
        .info-panel dd a:hover { text-decoration: underline; }

        /* ─── Services grid ─── */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 44px;
            counter-reset: svc;
        }
        .service-card {
            position: relative;
            overflow: hidden;
            background: var(--white);
            border: 1px solid var(--gray-100);
            border-radius: 20px;
            padding: 32px 28px 30px;
            counter-increment: svc;
            transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
        }
        /* Accent rail wipes in on hover */
        .service-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--blue-light), var(--blue-pale));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        /* Oversized step number, kept faint so it reads as texture not content */
        .service-card::after {
            content: '0' counter(svc);
            position: absolute;
            top: 22px; right: 26px;
            font-family: 'Outfit', sans-serif;
            font-size: 2.4rem;
            font-weight: 800;
            line-height: 1;
            color: var(--navy);
            opacity: 0.07;
            transition: opacity 0.35s ease;
        }
        .service-card:hover {
            transform: translateY(-6px);
            border-color: rgba(91, 181, 213, 0.55);
            box-shadow: 0 18px 46px rgba(27, 20, 100, 0.12);
        }
        .service-card:hover::before { transform: scaleX(1); }
        .service-card:hover::after  { opacity: 0.13; }
        .service-card .icon {
            width: 54px;
            height: 54px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--navy), var(--blue-mid));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            box-shadow: 0 6px 18px rgba(27, 20, 100, 0.20);
            transition: transform 0.35s ease;
        }
        .service-card .icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--white);
            fill: none;
            stroke-width: 1.9;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .service-card:hover .icon { transform: translateY(-2px) scale(1.05); }
        .service-card h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.12rem;
            font-weight: 700;
            color: var(--navy);
            letter-spacing: -0.01em;
            margin-bottom: 10px;
            padding-right: 40px;   /* clears the step number */
        }
        .service-card p {
            font-size: 0.92rem;
            color: var(--gray-600);
            line-height: 1.7;
        }

        /* ─── About page: mission band ─── */
        .mission {
            background: linear-gradient(135deg, var(--navy) 0%, var(--blue-mid) 100%);
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .mission::before {
            content: '';
            position: absolute;
            width: 380px;
            height: 380px;
            border-radius: 50%;
            background: rgba(91, 181, 213, 0.12);
            bottom: -140px;
            left: -100px;
        }
        .mission .container { position: relative; z-index: 1; }
        .mission .section-label { color: var(--blue-pale); }
        .mission .section-title { color: var(--white); }
        .mission-statement {
            position: relative;
            font-family: 'Outfit', sans-serif;
            font-size: clamp(1.2rem, 2.3vw, 1.62rem);
            font-weight: 500;
            line-height: 1.6;
            color: rgba(255,255,255,0.95);
            max-width: 880px;
            margin: 0 auto;
            padding-top: 46px;
        }
        /* Oversized quote mark anchors the statement as a pull-quote */
        .mission-statement::before {
            content: '“';
            position: absolute;
            top: -18px;
            left: 50%;
            transform: translateX(-50%);
            font-family: 'Outfit', sans-serif;
            font-size: 5.5rem;
            font-weight: 800;
            line-height: 1;
            color: var(--blue-light);
            opacity: 0.5;
        }
        .mission-pillars {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 18px;
            margin-top: 56px;
            text-align: left;
            counter-reset: pillar;
        }
        .mission-pillar {
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.14);
            border-radius: 18px;
            padding: 28px 24px 26px;
            counter-increment: pillar;
            transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
        }
        .mission-pillar:hover {
            background: rgba(255,255,255,0.11);
            border-color: rgba(91, 181, 213, 0.5);
            transform: translateY(-4px);
        }
        .mission-pillar::before {
            content: '0' counter(pillar);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 11px;
            background: rgba(91, 181, 213, 0.20);
            border: 1px solid rgba(91, 181, 213, 0.45);
            font-family: 'Outfit', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--blue-pale);
            margin-bottom: 16px;
        }
        .mission-pillar h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.02rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--white);
        }
        .mission-pillar p {
            font-size: 0.88rem;
            line-height: 1.65;
            color: rgba(255,255,255,0.72);
        }

        /* ─── Credentials strip ─── */
        .credentials {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
            margin-top: 48px;
        }
        .credential {
            position: relative;
            overflow: hidden;
            background: var(--white);
            border: 1px solid var(--gray-100);
            border-radius: 20px;
            padding: 30px 26px 26px;
            text-align: left;
            transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
        }
        /* Gradient cap ties the strip to the brand without four heavy borders */
        .credential::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--navy), var(--blue-light));
        }
        .credential:hover {
            transform: translateY(-5px);
            border-color: rgba(91, 181, 213, 0.5);
            box-shadow: 0 16px 40px rgba(27, 20, 100, 0.10);
        }
        .credential .label {
            font-family: 'Outfit', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--blue-mid);
            margin-bottom: 12px;
        }
        .credential .value {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--navy);
            letter-spacing: -0.01em;
            line-height: 1.15;
            word-break: break-word;
        }
        .credential .note {
            font-size: 0.84rem;
            color: var(--gray-600);
            line-height: 1.6;
            margin-top: 10px;
            padding-top: 12px;
            border-top: 1px solid var(--gray-100);
        }

        /* ─── Areas served ─── */
        .area-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 34px;
        }
        .area-tags span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--white);
            border: 1px solid var(--gray-100);
            border-radius: 50px;
            padding: 10px 20px 10px 16px;
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--navy);
            transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
        }
        /* Dot stands in for a map pin — lighter than 20 inline SVGs */
        .area-tags span::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--blue-light);
            flex-shrink: 0;
        }
        .area-tags span:hover {
            border-color: var(--blue-light);
            box-shadow: 0 6px 18px rgba(27, 20, 100, 0.08);
            transform: translateY(-2px);
        }

        /* ─── CTA band ─── */
        .cta-band {
            background: var(--gray-50);
            text-align: center;
            padding: 80px 0;
        }
        .cta-band .btn-primary { background: var(--navy); color: var(--white); }
        .cta-band .btn-primary:hover { box-shadow: 0 8px 30px rgba(27, 20, 100, 0.30); }
        .cta-band .btn-outline { color: var(--navy); border-color: rgba(27, 20, 100, 0.25); background: var(--white); }
        .cta-band .btn-outline:hover { border-color: var(--navy); background: var(--blue-whisper); }
        .cta-band .hero-btns { margin-top: 30px; }

        /* ═══════════════════════════════════════════════
           FOOTER (expanded)
           ═══════════════════════════════════════════════ */
        .footer {
            background: var(--navy);
            color: var(--white);
            padding: 64px 0 0;
            text-align: left;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.78fr 1.42fr;
            gap: 40px 56px;
            padding-bottom: 40px;
        }
        .footer-logo img { height: 50px; margin-bottom: 18px; }
        .footer-about {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.62);
            line-height: 1.75;
            max-width: 340px;
        }
        /* Registration IDs live in the brand column so it isn't left half-empty */
        .footer-ids {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 24px;
        }
        .footer-ids div {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 12px;
            padding: 10px 16px;
        }
        .footer-ids span {
            display: block;
            font-family: 'Outfit', sans-serif;
            font-size: 0.62rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--blue-pale);
            opacity: 0.75;
            margin-bottom: 3px;
        }
        .footer-ids strong {
            font-family: 'Outfit', sans-serif;
            font-size: 0.86rem;
            font-weight: 600;
            color: rgba(255,255,255,0.88);
            letter-spacing: 0.02em;
        }
        .footer h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--blue-pale);
            margin-bottom: 18px;
        }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 11px; }
        .footer-links a,
        .footer-contact a {
            color: rgba(255,255,255,0.72);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.25s ease;
        }
        .footer-links a:hover,
        .footer-contact a:hover { color: var(--blue-light); }
        .footer-contact { list-style: none; }
        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 14px;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.72);
            line-height: 1.6;
            text-wrap: pretty;
        }
        .footer-contact li svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            margin-top: 3px;
            color: var(--blue-light);
        }
        /* Single divider: copyright left, agency credit centred, legal links right */
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 22px 0 26px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 10px 28px;
            font-size: 0.82rem;
            color: rgba(255,255,255,0.45);
        }
        .footer-bottom nav { display: flex; flex-wrap: wrap; gap: 20px; }
        /* Agency credit — deliberately the quietest line on the page */
        .footer-credit {
            font-size: 0.78rem;
            letter-spacing: 0.02em;
            color: rgba(255,255,255,0.3);
        }
        .footer-bottom a {
            color: rgba(255,255,255,0.55);
            text-decoration: none;
            transition: color 0.25s ease;
        }
        .footer-bottom a:hover { color: var(--blue-light); }

        @media (max-width: 900px) {
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
            .footer-brand { grid-column: 1 / -1; }
        }
        @media (max-width: 768px) {
            .page-hero { padding: 120px 0 54px; }
            .info-panel { padding: 22px 20px; }
            .info-panel dl { grid-template-columns: 1fr; gap: 4px 0; }
            .info-panel dd { margin-bottom: 12px; }
            .footer-grid { grid-template-columns: 1fr; gap: 32px; }
            .footer-bottom { flex-direction: column; align-items: flex-start; }
            .cta-band { padding: 56px 0; }
        }
