
        :root {
            /* Design Guidelines Color Palette */
            --primary: #0F2744;         /* Deep Navy Blue */
            --primary-light: #1A3E66;   /* Secondary Lighter Navy */
            --gold: #B8925E;            /* Soft Gold */
            --gold-hover: #A07F4E;      /* Rich Gold Hover */
            --gold-light: #F7F4EE;      /* Soft Gold Tint */
            --bg-light: #F5F7FA;        /* Light Grey background */
            --bg-white: #FFFFFF;        /* White background */
            --text-main: #1E293B;       /* Slate 800 for high readability */
            --text-muted: #475569;      /* Slate 600 for descriptions */
            --text-light: #94a3b8;      /* Slate 400 */
            --border: #E2E8F0;          /* Soft border lines */
            --success: #10B981;         /* Emerald Green */
            --danger: #EF4444;          /* Crimson Red */
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --shadow-sm: 0 1px 3px rgba(15, 39, 68, 0.05);
            --shadow: 0 4px 6px -1px rgba(15, 39, 68, 0.04), 0 2px 4px -2px rgba(15, 39, 68, 0.04);
            --shadow-lg: 0 10px 25px -5px rgba(15, 39, 68, 0.08), 0 8px 10px -6px rgba(15, 39, 68, 0.08);
            --shadow-xl: 0 20px 35px -5px rgba(15, 39, 68, 0.12), 0 10px 15px -6px rgba(15, 39, 68, 0.12);
        }

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

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
            width: 100%;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
            width: 100%;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: -0.5px;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        /* Utility Layouts */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-padding {
            padding: 100px 0;
        }

        .bg-white-sec {
            background-color: var(--bg-white);
        }

        .bg-light-sec {
            background-color: var(--bg-light);
        }

        .bg-navy-sec {
            background-color: var(--primary);
            color: #ffffff;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.25rem;
            margin-bottom: 16px;
            position: relative;
            display: inline-block;
            padding-bottom: 14px;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 3px;
            background-color: var(--gold);
            border-radius: 2px;
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto;
            font-weight: 400;
        }

        /* Top Information Bar */
        .top-bar {
            background-color: var(--primary);
            color: #ffffff;
            font-size: 0.85rem;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            font-weight: 500;
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }

        .top-bar-left {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .top-bar-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .top-bar-item i {
            color: var(--gold);
            width: 15px;
            height: 15px;
        }

        .top-bar-item a:hover {
            color: var(--gold);
        }

        .top-bar-right {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        /* Header Navigation */
        header {
            background-color: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-mark {
            background-color: var(--primary);
            color: #ffffff;
            width: 44px;
            height: 44px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            font-weight: 800;
            border-bottom: 3px solid var(--gold);
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-title {
            font-size: 1.25rem;
            font-weight: 850;
            color: var(--primary);
            letter-spacing: -0.5px;
            line-height: 1.2;
            text-transform: uppercase;
        }

        .logo-subtitle {
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            color: var(--gold);
            text-transform: uppercase;
        }

        nav {
            display: flex;
            align-items: center;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .nav-links a {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-muted);
            padding: 8px 0;
            position: relative;
            white-space: nowrap;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2.5px;
            background-color: var(--gold);
            transition: var(--transition);
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--primary);
        }

        .nav-links a:hover::after, .nav-links a.active::after {
            width: 100%;
        }

        .nav-cta {
            display: block;
        }

        .btn-consultation {
            background-color: var(--gold);
            color: #ffffff;
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 0.88rem;
            border: 2px solid var(--gold);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            white-space: nowrap;
            display: inline-block;
        }

        .btn-consultation:hover {
            background-color: transparent;
            color: var(--primary);
            border-color: var(--primary);
        }

        .mobile-cta-item {
            display: none;
        }

        .menu-toggle {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            color: var(--primary);
            padding: 8px;
        }

        /* SECTION 1 - Hero Section */
        .hero {
            position: relative;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: #ffffff;
            padding: 120px 0 140px 0;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(rgba(184, 146, 94, 0.08) 1px, transparent 1px);
            background-size: 32px 32px;
            opacity: 0.8;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            align-items: center;
            gap: 64px;
            position: relative;
            z-index: 2;
        }

        .hero-text h1 {
            color: #ffffff;
            font-size: 3.5rem;
            line-height: 1.15;
            margin-bottom: 24px;
            letter-spacing: -1.5px;
        }

        .hero h1 span {
            color: var(--gold);
        }

        .hero p {
            font-size: 1.15rem;
            color: #cbd5e1;
            margin-bottom: 40px;
            max-width: 620px;
            font-weight: 400;
            line-height: 1.65;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 48px;
        }

        .btn-primary {
            background-color: var(--gold);
            color: var(--primary);
            padding: 16px 32px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 16px rgba(184, 146, 94, 0.3);
            border: 2px solid var(--gold);
        }

        .btn-primary:hover {
            background-color: #ffffff;
            color: var(--primary);
            border-color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
        }

        .btn-secondary {
            background-color: transparent;
            color: #ffffff;
            border: 2px solid rgba(255, 255, 255, 0.25);
            padding: 16px 32px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.05);
            border-color: #ffffff;
            transform: translateY(-2px);
        }

        .trust-line {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 24px;
            font-size: 0.88rem;
            color: #94a3b8;
            font-weight: 500;
            letter-spacing: 0.5px;
            line-height: 1.5;
        }

        .hero-img-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-img-wrapper {
            background-color: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 16px;
            box-shadow: var(--shadow-xl);
            position: relative;
            overflow: hidden;
            width: 100%;
            max-width: 440px;
            aspect-ratio: 1.15;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* SECTION 2 - Why India */
        .why-india-intro {
            font-size: 1.25rem;
            color: var(--primary);
            text-align: center;
            max-width: 800px;
            margin: 0 auto 56px auto;
            line-height: 1.6;
            font-weight: 500;
        }

        .why-india-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .why-india-card {
            background-color: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 36px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .why-india-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(184, 146, 94, 0.3);
        }

        .why-india-icon {
            width: 48px;
            height: 48px;
            background-color: var(--gold-light);
            color: var(--gold);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .why-india-card h4 {
            font-size: 1.2rem;
            margin-bottom: 12px;
            color: var(--primary);
        }

        .why-india-card p {
            font-size: 0.92rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* SECTION 3 - What is a GCC */
        .what-gcc-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .what-gcc-text p {
            font-size: 1.05rem;
            color: var(--text-muted);
            margin-bottom: 24px;
            line-height: 1.7;
        }

        .what-gcc-text p:last-child {
            margin-bottom: 0;
            padding-left: 20px;
            border-left: 3px solid var(--gold);
            color: var(--primary);
            font-weight: 600;
        }

        .what-gcc-map {
            position: relative;
            background-color: var(--primary-light);
            border-radius: 16px;
            padding: 40px;
            box-shadow: var(--shadow-lg);
            color: #ffffff;
            overflow: hidden;
            min-height: 320px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-bottom: 4px solid var(--gold);
        }

        .what-gcc-map-dots {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1.5px, transparent 1.5px);
            background-size: 20px 20px;
            opacity: 0.7;
        }

        .what-gcc-map-label {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .what-gcc-map-label i {
            color: var(--gold);
            margin-bottom: 16px;
        }

        .what-gcc-map-label h4 {
            color: #ffffff;
            font-size: 1.5rem;
            margin-bottom: 12px;
        }

        .what-gcc-map-label p {
            color: #cbd5e1;
            font-size: 0.95rem;
            max-width: 320px;
            margin: 0 auto;
        }

        /* SECTION 4 - GCC Setup Models */
        .models-subheadline {
            text-align: center;
            font-size: 1.15rem;
            color: var(--text-muted);
            margin-top: -44px;
            margin-bottom: 56px;
        }

        .models-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-bottom: 56px;
        }

        .model-card {
            background-color: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 36px 28px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
        }

        .model-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background-color: transparent;
            transition: var(--transition);
        }

        .model-card:hover::before {
            background-color: var(--gold);
        }

        .model-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(184, 146, 94, 0.2);
        }

        .model-icon {
            width: 52px;
            height: 52px;
            background-color: var(--bg-light);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px auto;
            transition: var(--transition);
        }

        .model-card:hover .model-icon {
            background-color: var(--gold-light);
            color: var(--gold);
        }

        .model-card h4 {
            font-size: 1.15rem;
            margin-bottom: 12px;
            color: var(--primary);
        }

        .model-card p {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.5;
            margin-bottom: 0;
        }

        .models-cta {
            text-align: center;
            background-color: var(--gold-light);
            border: 1px solid rgba(184, 146, 94, 0.2);
            border-radius: 8px;
            padding: 24px;
            max-width: 600px;
            margin: 0 auto;
        }

        .models-cta h4 {
            font-size: 1.1rem;
            margin-bottom: 8px;
            color: var(--primary);
        }

        .models-cta a {
            color: var(--gold);
            font-weight: 700;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .models-cta a:hover {
            color: var(--gold-hover);
        }

        /* SECTION 5 - Our GCC Setup Services */
        .services-timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            padding-left: 48px;
        }

        .services-timeline::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 17px;
            bottom: 8px;
            width: 2px;
            background-color: rgba(255, 255, 255, 0.1);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 40px;
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        .timeline-marker {
            position: absolute;
            left: -48px;
            top: 2px;
            width: 36px;
            height: 36px;
            background-color: var(--primary-light);
            border: 2px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--gold);
            font-family: 'Plus Jakarta Sans', sans-serif;
            transition: var(--transition);
            z-index: 2;
        }

        .timeline-item:hover .timeline-marker {
            background-color: var(--gold);
            color: var(--primary);
            box-shadow: 0 0 10px rgba(184, 146, 94, 0.4);
        }

        .timeline-content h4 {
            font-size: 1.25rem;
            margin-bottom: 8px;
            color: #ffffff;
        }

        .timeline-content p {
            font-size: 0.92rem;
            color: #cbd5e1;
        }

        /* SECTION 6 - Common Challenges */
        .challenges-grid {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 64px;
            align-items: flex-start;
        }

        .challenges-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .challenges-text p {
            color: var(--text-muted);
            margin-bottom: 28px;
            font-size: 1.05rem;
        }

        .challenges-cta-box {
            background-color: var(--bg-light);
            border-left: 4px solid var(--gold);
            padding: 24px;
            border-radius: 0 8px 8px 0;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--primary);
        }

        .challenges-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .challenge-item {
            background-color: var(--bg-light);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: var(--transition);
        }

        .challenge-item:hover {
            border-color: var(--danger);
            background-color: #ffffff;
            transform: translateX(4px);
        }

        .challenge-item i {
            color: var(--danger);
            flex-shrink: 0;
        }

        .challenge-item span {
            font-weight: 600;
            font-size: 0.92rem;
            color: var(--primary);
        }

        /* SECTION 7 - Tax & Regulatory Expertise */
        .expertise-intro {
            text-align: center;
            font-size: 1.15rem;
            color: var(--text-muted);
            margin-top: -44px;
            margin-bottom: 56px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .expertise-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .expertise-card {
            background-color: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 28px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .expertise-card:hover {
            border-color: var(--gold);
            box-shadow: var(--shadow);
            transform: translateY(-2px);
        }

        .expertise-card h4 {
            font-size: 1.05rem;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .expertise-card h4 i {
            color: var(--gold);
            width: 16px;
            height: 16px;
        }

        /* SECTION 8 - Industries We Serve */
        .industries-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .industry-pill {
            background-color: var(--bg-light);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 18px 24px;
            display: flex;
            align-items: center;
            gap: 14px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .industry-pill:hover {
            background-color: var(--primary);
            border-color: var(--primary);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .industry-pill i {
            color: var(--gold);
            flex-shrink: 0;
        }

        /* SECTION 9 - Why GCC Expert India */
        .why-expert-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .why-expert-card {
            background-color: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 32px;
            box-shadow: var(--shadow-sm);
            display: flex;
            gap: 20px;
            align-items: flex-start;
            transition: var(--transition);
        }

        .why-expert-card:hover {
            border-color: var(--gold);
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .why-expert-icon {
            width: 40px;
            height: 40px;
            background-color: var(--gold-light);
            color: var(--gold);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .why-expert-info h4 {
            font-size: 1.1rem;
            margin-bottom: 8px;
            color: var(--primary);
        }

        .why-expert-info p {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* SECTION 10 - GCC Knowledge Center */
        .resources-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .resource-card {
            background-color: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 32px 24px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 260px;
        }

        .resource-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--gold);
        }

        .resource-meta {
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 12px;
        }

        .resource-card h4 {
            font-size: 1.15rem;
            margin-bottom: 24px;
            color: var(--primary);
            line-height: 1.4;
        }

        .btn-download {
            background: none;
            border: 1px solid var(--border);
            color: var(--primary);
            padding: 10px 16px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 0.85rem;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            transition: var(--transition);
            width: 100%;
        }

        .resource-card:hover .btn-download {
            background-color: var(--primary);
            color: #ffffff;
            border-color: var(--primary);
        }

        /* SECTION 11 - About Vidhu Duggal */
        .partner-grid {
            display: grid;
            grid-template-columns: 0.8fr 1.2fr;
            gap: 64px;
            align-items: stretch;
        }

        .partner-img-card {
            background-color: var(--primary);
            border-radius: 16px;
            padding: 32px;
            color: #ffffff;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            text-align: center;
            border-bottom: 4px solid var(--gold);
            box-shadow: var(--shadow-lg);
            position: relative;
        }

        .partner-avatar {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.05);
            border: 3px solid var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            font-weight: 800;
            color: var(--gold);
            font-family: 'Plus Jakarta Sans', sans-serif;
            margin-bottom: 24px;
            overflow: hidden;
        }

        .partner-meta h4 {
            color: #ffffff;
            font-size: 1.4rem;
            margin-bottom: 6px;
        }

        .partner-meta .title {
            font-size: 0.85rem;
            font-weight: 750;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 24px;
        }

        .partner-credentials {
            font-size: 0.88rem;
            color: #cbd5e1;
            margin-bottom: 32px;
            line-height: 1.5;
        }

        .btn-linkedin {
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #ffffff;
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-linkedin:hover {
            background-color: #0077b5;
            border-color: #0077b5;
        }

        .partner-content h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .partner-content p {
            font-size: 1.05rem;
            color: var(--text-muted);
            margin-bottom: 28px;
            line-height: 1.65;
        }

        .partner-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            border-top: 1px solid var(--border);
            padding-top: 28px;
        }

        .partner-stat-item h4 {
            font-size: 1.6rem;
            color: var(--primary);
            margin-bottom: 4px;
        }

        .partner-stat-item p {
            font-size: 0.82rem;
            color: var(--text-muted);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0;
        }

        /* SECTION 12 - Consultation Form */
        .consultation-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: #ffffff;
            position: relative;
        }

        .consultation-section h2, .consultation-section h3, .consultation-section h4 {
            color: #ffffff;
        }

        .consultation-section .section-header h2::after {
            background-color: var(--gold);
        }

        .consultation-section .section-header p {
            color: #94a3b8;
        }

        .consultation-card {
            background-color: #ffffff;
            border-radius: 16px;
            padding: 48px;
            box-shadow: var(--shadow-xl);
            color: var(--text-main);
            max-width: 800px;
            margin: 0 auto;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .form-row-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-row-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 20px;
        }

        .form-group.full-width {
            grid-column: span 3;
        }

        .form-group.full-width-2 {
            grid-column: span 2;
        }

        .form-group label {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--primary);
        }

        .form-group input, .form-group select, .form-group textarea {
            border: 1px solid var(--border);
            padding: 12px 18px;
            border-radius: 6px;
            font-family: inherit;
            font-size: 0.92rem;
            color: var(--text-main);
            transition: var(--transition);
            background-color: var(--bg-light);
        }

        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            outline: none;
            border-color: var(--gold);
            background-color: #ffffff;
            box-shadow: 0 0 0 3px rgba(184, 146, 94, 0.15);
        }

        .btn-submit {
            background-color: var(--primary);
            color: #ffffff;
            border: 2px solid var(--primary);
            padding: 16px 32px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-submit:hover {
            background-color: transparent;
            color: var(--primary);
            border-color: var(--primary);
        }

        .form-alert {
            display: none;
            background-color: rgba(16, 185, 129, 0.08);
            border: 1px solid var(--success);
            color: var(--success);
            padding: 16px;
            border-radius: 6px;
            margin-bottom: 28px;
            font-size: 0.9rem;
            font-weight: 600;
            align-items: center;
            gap: 10px;
        }

        /* SECTION 13 - FAQ Accordion */
        .faq-grid {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .faq-item {
            background-color: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item:hover {
            border-color: var(--gold);
        }

        .faq-trigger {
            width: 100%;
            padding: 24px;
            background: none;
            border: none;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--primary);
            font-family: 'Plus Jakarta Sans', sans-serif;
            transition: var(--transition);
        }

        .faq-trigger i {
            color: var(--gold);
            transition: var(--transition);
        }

        .faq-content {
            padding: 0 24px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
            color: var(--text-muted);
            font-size: 0.92rem;
            line-height: 1.6;
        }

        .faq-item.open .faq-content {
            padding: 0 24px 24px 24px;
            max-height: 400px;
            transition: max-height 0.5s cubic-bezier(1, 0, 1, 0), padding 0.3s ease;
        }

        .faq-item.open .faq-trigger i {
            transform: rotate(180deg);
        }

        /* FOOTER CTA & Footer details */
        .footer-cta {
            background-color: var(--primary);
            padding: 80px 0;
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            color: #ffffff;
        }

        .footer-cta h3 {
            color: #ffffff;
            font-size: 2rem;
            margin-bottom: 12px;
        }

        .footer-cta p {
            color: #cbd5e1;
            font-size: 1.1rem;
            margin-bottom: 32px;
        }

        footer {
            background-color: #081322;
            color: #64748b;
            padding: 48px 0;
            font-size: 0.85rem;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-logo .logo-mark {
            width: 36px;
            height: 36px;
            font-size: 1.1rem;
            border-radius: 6px;
            border-bottom: 2.5px solid var(--gold);
        }

        .footer-logo .logo-title {
            color: #ffffff;
            font-size: 1.1rem;
        }

        .footer-info {
            text-align: right;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .footer-info-item {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 8px;
            color: #94a3b8;
        }

        .footer-info-item i {
            color: var(--gold);
            width: 14px;
            height: 14px;
        }

        .footer-info-item a:hover {
            color: #ffffff;
        }

        /* Interactive Lead-Gated Modal Dialog */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(15, 39, 68, 0.6);
            backdrop-filter: blur(8px);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 24px;
        }

        .modal.open {
            display: flex;
            animation: modalFadeIn 0.3s ease;
        }

        .modal-card {
            background-color: #ffffff;
            border-radius: 12px;
            width: 100%;
            max-width: 480px;
            box-shadow: var(--shadow-xl);
            border: 1px solid var(--border);
            overflow: hidden;
            position: relative;
        }

        .modal-header {
            background-color: var(--primary);
            color: #ffffff;
            padding: 24px;
            position: relative;
            border-bottom: 3px solid var(--gold);
        }

        .modal-header h3 {
            color: #ffffff;
            font-size: 1.25rem;
            margin-bottom: 4px;
        }

        .modal-header p {
            color: #cbd5e1;
            font-size: 0.8rem;
        }

        .btn-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: #cbd5e1;
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-modal-close:hover {
            color: #ffffff;
        }

        .modal-body {
            padding: 32px 24px;
        }

        /* Animations */
        @keyframes modalFadeIn {
            from { opacity: 0; transform: scale(0.95); }
            to { opacity: 1; transform: scale(1); }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .hero h1 { font-size: 2.85rem; }
            .why-india-grid { grid-template-columns: repeat(2, 1fr); }
            .models-grid { grid-template-columns: repeat(2, 1fr); }
            .challenges-grid { grid-template-columns: 1fr; gap: 40px; }
            .expertise-grid { grid-template-columns: repeat(2, 1fr); }
            .resources-grid { grid-template-columns: repeat(2, 1fr); }
            .partner-grid { grid-template-columns: 1fr; gap: 40px; }
            .form-row-3 { grid-template-columns: repeat(2, 1fr); }
            .form-group.full-width { grid-column: span 2; }
            .industries-grid { grid-template-columns: repeat(3, 1fr); }
            .why-expert-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 992px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: #ffffff;
                border-top: 1px solid var(--border);
                border-bottom: 1px solid var(--border);
                padding: 28px;
                box-shadow: var(--shadow-lg);
                flex-direction: column;
                gap: 18px;
                align-items: stretch;
                text-align: center;
            }

            .nav-links.mobile-open {
                display: flex;
            }

            .nav-cta {
                display: none;
            }

            .mobile-cta-item {
                display: block;
                margin-top: 10px;
            }

            .mobile-cta-item .btn-consultation {
                display: block;
                text-align: center;
            }

            .menu-toggle {
                display: block;
            }

            .hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
            .hero p { margin-left: auto; margin-right: auto; }
            .hero-actions { justify-content: center; }
            .hero-img-wrapper { max-width: 100%; }
            .hero-mini-badge { display: none; }
            .trust-content { justify-content: center; }
            .what-gcc-grid { grid-template-columns: 1fr; gap: 40px; }
            .form-row-3 { grid-template-columns: 1fr; }
            .form-group.full-width { grid-column: auto; }
            .form-row-2 { grid-template-columns: 1fr; }
            .form-group.full-width-2 { grid-column: auto; }
            .consultation-card { padding: 32px 24px; }
            .footer-content { flex-direction: column; align-items: center; text-align: center; }
            .footer-info { align-items: center; text-align: center; }
            .footer-info-item { justify-content: center; }
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 60px 0;
            }
            .section-header {
                margin-bottom: 40px;
            }
            .section-header h2 {
                font-size: 1.85rem;
            }
            .section-header p {
                font-size: 0.98rem;
            }
            .partner-content h3 {
                font-size: 1.65rem;
            }
            .partner-stats {
                grid-template-columns: 1fr;
                gap: 16px;
                text-align: center;
                padding-top: 20px;
            }
            .partner-stat-item {
                border-bottom: 1px solid var(--border);
                padding-bottom: 12px;
            }
            .partner-stat-item:last-child {
                border-bottom: none;
                padding-bottom: 0;
            }
        }

        @media (max-width: 600px) {
            .hero h1 { font-size: 2.25rem; }
            .why-india-grid { grid-template-columns: 1fr; }
            .models-grid { grid-template-columns: 1fr; }
            .expertise-grid { grid-template-columns: 1fr; }
            .resources-grid { grid-template-columns: 1fr; }
            .industries-grid { grid-template-columns: repeat(2, 1fr); }
            .why-expert-grid { grid-template-columns: 1fr; }
            .top-bar-left { justify-content: center; width: 100%; flex-wrap: wrap; gap: 12px; }
            .top-bar-right { display: none; }
            .services-timeline {
                padding-left: 36px;
            }
            .services-timeline::before {
                left: 11px;
            }
            .timeline-marker {
                left: -36px;
                width: 28px;
                height: 28px;
                font-size: 0.75rem;
                top: 4px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.85rem;
            }
            .hero p {
                font-size: 0.95rem;
            }
            .section-header h2 {
                font-size: 1.65rem;
            }
            .industries-grid {
                grid-template-columns: 1fr;
            }
            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }
            .hero-actions .btn-primary,
            .hero-actions .btn-secondary {
                width: 100%;
                justify-content: center;
            }
            .logo-title {
                font-size: 1.05rem;
            }
            .logo-subtitle {
                font-size: 0.55rem;
            }
            .logo-mark {
                width: 36px;
                height: 36px;
                font-size: 1.1rem;
            }
        }
        
.whatsapp-float{
    position:fixed;
    left:25px;
    bottom:25px;
    width:60px;
    height:60px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 25px rgba(0,0,0,.20);
    z-index:9999;
    transition:.3s ease;
}
.whatsapp-float:hover{
    transform:scale(1.08);
}
