    /* ========== COMPLETE ROOT CSS (Preserved) ========== */
        :root {
            --primary-blue: #0b57d0;
            --primary-blue-light: #4285f4;
            --accent-blue: #d3e3fd;
            --bg-white: #ffffff;
            --bg-light: #f8fafd;
            --text-black: #1f1f1f;
            --text-muted: #444746;
            --border-color: #c7c7c7;
            --accent-green: #7ddc1f;
            --dark-blue: #0a1128;
            --primary-blue-dark: #0742a0;
            --geo-bg: #eef2f6;
            --font-heading: 'Poppins', sans-serif;
            --font-body: 'Poppins', sans-serif;
            --font-mono: 'Roboto Mono', monospace;
            --transition-fast: 0.2s cubic-bezier(0.2, 0, 0, 1);
            --transition-normal: 0.3s cubic-bezier(0.2, 0, 0, 1);
            --transition-slow: 0.5s cubic-bezier(0.2, 0, 0, 1);
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 1px 3px 1px rgba(0, 0, 0, 0.15);
            --shadow-md: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
            --shadow-lg: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 4px 8px 3px rgba(0, 0, 0, 0.15);
            --shadow-hover: 0 2px 3px 0 rgba(0, 0, 0, 0.3), 0 6px 10px 4px rgba(0, 0, 0, 0.15);
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-pill: 4px;
            --mezz-blue: #1e3a8a;
            --mezz-accent: #3b82f6;
            --mezz-steel: #f1f5f9;
            --mezz-dark: #0f172a;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-white);
            color: var(--text-black);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 600;
            line-height: 1.2;
            color: var(--primary-blue);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Header & Navigation (Fixed) */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(13, 27, 42, 0.95);
            backdrop-filter: blur(8px);
            transition: all var(--transition-normal);
            padding: 0.8rem 0;
        }

        .header.scrolled {
            background-color: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            padding: 0.4rem 0;
            box-shadow: var(--shadow-sm);
        }

        .header.header-inner {
            background-color: rgba(255, 255, 255, 0.98);
            padding: 0.5rem 0;
            box-shadow: var(--shadow-sm);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-height: 70px;
        }

        .logo img {
            height: 60px;
            width: auto;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
            list-style: none;
        }

        .nav-links a {
            color: white;
            font-weight: 500;
            text-decoration: none;
            font-size: 0.95rem;
        }

        .header-inner .nav-links a {
            color: var(--text-black);
        }

        .dropdown {
            position: relative;
        }

        .dropdown i {
            font-size: 0.7rem;
            margin-left: 4px;
            transition: transform 0.2s;
        }

        .dropdown:hover i {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: -1rem;
            background: white;
            min-width: 260px;
            border-radius: 8px;
            box-shadow: var(--shadow-lg);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.2s;
            list-style: none;
            z-index: 1100;
        }

        .dropdown:hover > .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu a {
            color: var(--text-black) !important;
            padding: 0.75rem 1.5rem;
            display: block;
        }

        .dropdown-submenu {
            position: relative;
        }

        .dropdown-submenu .dropdown-menu {
            top: 0;
            left: 100%;
            transform: translateX(10px);
        }

        .dropdown-submenu:hover > .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .btn-primary {
            background: var(--primary-blue);
            border: none;
            color: white;
            padding: 8px 20px;
            border-radius: var(--radius-pill);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: 0.2s;
            cursor: pointer;
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.6rem;
            cursor: pointer;
            color: var(--text-black);
        }

        @media (max-width: 1024px) {
            .mobile-toggle {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: white;
                flex-direction: column;
                align-items: flex-start;
                padding: 5rem 2rem 2rem;
                gap: 1rem;
                transition: right 0.3s ease;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
                z-index: 1100;
                overflow-y: auto;
            }
            .nav-links.active {
                right: 0;
            }
            .nav-links a {
                color: var(--text-black) !important;
                font-size: 1rem;
                width: 100%;
                padding: 0.6rem 0;
                border-bottom: 1px solid #eee;
            }
            .dropdown .dropdown-menu,
            .dropdown-submenu .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                padding-left: 20px;
                display: none;
                background: transparent;
                width: 100%;
            }
            .dropdown.open > .dropdown-menu,
            .dropdown-submenu.open > .dropdown-menu {
                display: block;
            }
            .dropdown i, .dropdown-submenu i {
                transform: rotate(0deg);
            }
            .dropdown.open > a i, .dropdown-submenu.open > a i {
                transform: rotate(180deg);
            }
        }

        /* Hero Section */
        .mezz-hero {
            position: relative;
            min-height: 80vh;
            display: flex;
            align-items: center;
            background: var(--mezz-dark);
            margin-top: 80px;
            padding: 40px 0;
            overflow: hidden;
        }
        .mezz-hero-bg {
            position: absolute;
            inset: 0;
            background:center/cover no-repeat;
            opacity: 0.25;
            z-index: 1;
        }
        .mezz-hero-inner {
            position: relative;
            z-index: 10;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 4rem;
            align-items: center;
        }
        .mezz-content {
            color: #fff;
        }
        .mezz-badges {
            display: flex;
            gap: 1.5rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }
        .badge-box {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0.65rem 1.25rem;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.95rem;
            font-weight: 500;
        }
        .hero-image-box {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
        }
        @media (max-width: 992px) {
            .mezz-hero-inner {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
            .mezz-content h1 { font-size: 2.5rem !important; }
            .hero-btns { justify-content: center; }
            .mezz-badges { justify-content: center; }
        }
        @media (max-width: 550px) {
            .mezz-hero { margin-top: 70px; }
            .mezz-content h1 { font-size: 1.9rem !important; }
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 0.75rem 1.5rem;
            font-family: var(--font-heading);
            font-weight: 500;
            border-radius: var(--radius-pill);
            cursor: pointer;
            transition: all var(--transition-normal);
            box-shadow: var(--shadow-sm);
            text-decoration: none;
        }
        .btn-primary {
            background-color: var(--primary-blue);
            color: var(--bg-white);
            border: none;
        }
        .btn-primary:hover {
            background-color: var(--primary-blue-light);
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .btn-outline {
            background-color: transparent;
            border: 1px solid var(--bg-white);
            color: var(--bg-white);
        }
        .btn-outline:hover {
            background-color: var(--bg-white);
            color: var(--primary-blue);
            transform: translateY(-2px);
        }
        .w-100 { width: 100%; }

        /* Other sections */
        .section { padding: 4rem 0; }
        .bg-light { background-color: var(--bg-light); }
        .section-title { text-align: center; margin-bottom: 2.5rem; }
        .section-title h2 { font-size: 2.2rem; margin-bottom: 1rem; color: var(--primary-blue); }
        .section-title p { color: var(--text-muted); max-width: 700px; margin: 0 auto; }

        .aeo-service-overview {
            background: var(--bg-light);
            border-left: 5px solid var(--primary-blue);
            padding: 2rem;
            border-radius: var(--radius-md);
        }
        .detailed-service-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .service-sub-block {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            border-left: 4px solid var(--primary-blue);
            box-shadow: var(--shadow-sm);
        }
        .strong-cta-strip {
            background: var(--primary-blue);
            color: white;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            margin-top: 2rem;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            border-top: 4px solid var(--mezz-accent);
            box-shadow: var(--shadow-sm);
        }
        .industries-served-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }
        .industry-chip {
            background: white;
            border: 1px solid var(--border-color);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .process-timeline {
            position: relative;
            max-width: 900px;
            margin: 2rem auto;
        }
        .process-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 4px;
            background: var(--border-color);
            transform: translateX(-50%);
        }
        .timeline-step {
            position: relative;
            width: 50%;
            padding: 2rem;
        }
        .timeline-step:nth-child(odd) { left: 0; text-align: right; }
        .timeline-step:nth-child(even) { left: 50%; text-align: left; }
        .timeline-step::after {
            content: attr(data-step);
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: var(--primary-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            z-index: 1;
        }
        .timeline-step:nth-child(odd)::after { right: -24px; }
        .timeline-step:nth-child(even)::after { left: -24px; }
        .timeline-content {
            background: white;
            padding: 1.5rem;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
        }
        @media (max-width: 768px) {
            .process-timeline::before { left: 24px; }
            .timeline-step { width: 100%; left: 0 !important; padding: 1rem 1rem 1rem 3rem !important; text-align: left !important; }
            .timeline-step::after { left: 4px !important; top: 20px; transform: none; }
            .detailed-service-grid { grid-template-columns: 1fr; }
        }
        .geo-seo-boost {
            background: var(--geo-bg);
            padding: 3rem 0;
        }
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            background: white;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            margin-bottom: 1rem;
            overflow: hidden;
        }
        .faq-question {
            padding: 1rem 1.5rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        .faq-item.active .faq-answer {
            max-height: 300px;
        }
        .faq-answer-inner {
            padding: 0 1.5rem 1.5rem 1.5rem;
            color: var(--text-muted);
        }
        .project-scroll-container {
            overflow: hidden;
            width: 100%;
            padding: 1.5rem 0;
        }
        .project-marquee-track {
            display: flex;
            gap: 1.5rem;
            width: max-content;
            animation: scrollMarquee 30s linear infinite;
        }
        @keyframes scrollMarquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .project-marquee-track:hover { animation-play-state: paused; }
        .project-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 1/1;
            width: 280px;
            flex-shrink: 0;
        }
        .project-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .project-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
            opacity: 0;
            transition: 0.3s;
        }
        .project-item:hover .project-overlay { opacity: 1; }
        @media (max-width: 768px) { .project-item { width: 220px; } }
        @media (max-width: 550px) { .project-item { width: 180px; } }

        /* CTA Grid and Form */
        .cta-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            background: var(--mezz-blue);
            border-radius: 20px;
            overflow: hidden;
        }
        .cta-text-content {
            padding: 3rem;
            color: white;
        }
        .cta-image-content {
            background: white;
            padding: 2rem;
        }
        .cta-image-content input,
        .cta-image-content select,
        .cta-image-content textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            background-color: var(--bg-white);
            font-family: var(--font-body);
            font-size: 1rem;
            color: var(--text-black);
        }
        .cta-image-content .btn-primary {
            background: var(--primary-blue);
            color: white;
            width: 100%;
            padding: 0.8rem;
            font-size: 1rem;
            border: none;
            cursor: pointer;
        }
        @media (max-width: 992px) {
            .cta-grid { grid-template-columns: 1fr; }
            .cta-text-content { text-align: center; padding: 2rem; }
        }

        /* Footer */
        .footer {
            background: var(--dark-blue);
            color: #eef2f6;
            padding: 3rem 0 1.5rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        .footer-col ul li { margin-bottom: 0.5rem; }
        .footer-col a { color: #ccddee; }
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 2rem;
        }
        .floating-widgets {
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            z-index: 1000;
        }
        .widget-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: var(--shadow-md);
        }
        .whatsapp { background: #25D366; }
        .phone { background: var(--primary-blue); }
        @media (max-width: 768px) { .floating-widgets { display: none; } }