 /* ========== COMPLETE CSS (all styles inline) ========== */
        :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;
        }
        * {
            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;
        }
        .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;
        }
        .section-title p {
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto;
        }
        /* 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);
            border: none;
            box-shadow: var(--shadow-sm);
        }
        .btn-primary {
            background-color: var(--primary-blue);
            color: var(--bg-white);
        }
        .btn-primary:hover {
            background-color: var(--primary-blue-light);
        }
        .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);
        }
        .w-100 { width: 100%; }

        /* Header & Navigation */
        .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;
        }
        .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 */
        .ind-hero-new {
            position: relative;
            min-height: 80vh;
            display: flex;
            align-items: center;
            background: var(--dark-blue);
            padding-top: 100px;
            padding-bottom: 60px;
            overflow: hidden;
        }
        .ind-hero-bg {
            position: absolute;
            inset: 0;
            background: url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?w=1600&q=80') center/cover no-repeat;
            opacity: 0.15;
            z-index: 1;
        }
        .ind-hero-inner {
            position: relative;
            z-index: 10;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 4rem;
            align-items: center;
        }
        .ind-content {
            color: #fff;
        }
        .ind-badges {
            display: flex;
            gap: 1.5rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }
        .badge-box-dark {
            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-enquiry-form {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }
        .hero-enquiry-form input, .hero-enquiry-form select {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-family: inherit;
        }
        @media (max-width: 992px) {
            .ind-hero-new {
                padding-top: 80px;
                min-height: auto;
            }
            .ind-hero-inner {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
            .ind-hero-new h1 {
                font-size: 2.5rem !important;
            }
            .hero-btns {
                justify-content: center;
            }
            .ind-badges {
                justify-content: center;
            }
        }
        @media (max-width: 550px) {
            .ind-hero-new h1 {
                font-size: 1.9rem !important;
            }
            .ind-hero-new p {
                font-size: 1rem !important;
            }
        }

        /* Other sections (ensure visibility) */
        .aeo-service-overview {
            background: var(--bg-light);
            border-left: 5px solid var(--primary-blue);
            padding: 2rem;
            border-radius: var(--radius-md);
        }
        .ind-badge-box {
            background: rgba(11, 87, 208, 0.1);
            border: 1px solid rgba(11, 87, 208, 0.2);
            padding: 0.65rem 1.25rem;
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            margin-right: 1rem;
            margin-bottom: 1rem;
        }
        .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;
        }
        .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(--primary-blue-light);
            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;
            box-sizing: border-box;
        }
        .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; }
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 12px;
            overflow: hidden;
        }
        .comparison-table th, .comparison-table td {
            padding: 1rem;
            border-bottom: 1px solid var(--border-color);
            text-align: left;
        }
        .comparison-table th {
            background: var(--dark-blue);
            color: white;
        }
        .geo-seo-boost {
            background: var(--geo-bg);
            padding: 3rem 0;
        }
        .cta-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            background: var(--dark-blue);
            border-radius: 20px;
            overflow: hidden;
        }
        .cta-text-content {
            padding: 3rem;
            color: white;
        }
        .cta-image-content {
            background: white;
            padding: 2rem;
        }
        @media (max-width: 992px) {
            .cta-grid { grid-template-columns: 1fr; }
        }
        /* === Enhanced styling for CTA form (Request a Call Back) === */
.cta-image-content {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.cta-image-content:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.cta-image-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.cta-image-content h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-blue-light);
    margin: 0.5rem auto 0;
    border-radius: 3px;
}

/* Form field styling */
.cta-image-content form input,
.cta-image-content form select {
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.8rem 1rem;
    width: 100%;
    transition: all var(--transition-fast);
    color: var(--text-black);
}

.cta-image-content form input:focus,
.cta-image-content form select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(11, 87, 208, 0.1);
}

.cta-image-content form input::placeholder {
    color: #9aa0a6;
    font-weight: 400;
}

/* Submit button */
.cta-image-content .btn-primary {
    background-color: var(--primary-blue);
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.9rem;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.cta-image-content .btn-primary:hover {
    background-color: var(--primary-blue-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.cta-image-content .btn-primary:active {
    transform: translateY(1px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-image-content {
        padding: 1.5rem;
    }
    .cta-image-content h3 {
        font-size: 1.4rem;
    }
    .cta-image-content form input,
    .cta-image-content form select,
    .cta-image-content .btn-primary {
        padding: 0.7rem;
    }
}
        .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);
        }
        .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; }
        .newsletter-form {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }
        .newsletter-form input {
            flex: 1;
            padding: 0.5rem;
            border-radius: 4px;
            border: none;
        }
        .newsletter-form button {
            background: var(--primary-blue);
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            color: white;
        }
        .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; }
        }
        .scroll-anim {
            opacity: 1;
            transform: none;
        }