    /* ─── Design Tokens ──────────────────────────────────────────── */
    :root {
        --red-900: #4a0010;
        --red-800: #7f0019;
        --red-700: #b5001e;
        --red-600: #d90027;
        --red-500: #f50030;
        --accent: #ff4d6d;
        --accent2: #ff8fa3;
        --gold: #ffd166;
        --purple: #6d23b6;
        --purple2: #9b5de5;
        --pink: #ff006e;
        --bg-dark: #0d0010;
        --bg-card: rgba(255, 255, 255, 0.05);
        --glass: rgba(255, 255, 255, 0.08);
        --glass-border: rgba(255, 255, 255, 0.12);
        --text: #f0e6ff;
        --text-muted: #b8a8d0;
        --radius: 14px;
        --trans: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* ─── Reset & Base ───────────────────────────────────────────── */
    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
        font-size: 16px;
    }

    body {
        font-family: 'Inter', sans-serif;
        background: var(--bg-dark);
        color: var(--text);
        line-height: 1.65;
        overflow-x: hidden;
    }

    a {
        color: inherit;
        text-decoration: none;
    }

    img {
        display: block;
        max-width: 100%;
    }

    ::selection {
        background: var(--accent);
        color: white;
    }

    /* ─── Scrollbar ──────────────────────────────────────────────── */
    ::-webkit-scrollbar {
        width: 6px;
    }

    ::-webkit-scrollbar-track {
        background: var(--red-900);
    }

    ::-webkit-scrollbar-thumb {
        background: var(--accent);
        border-radius: 3px;
    }

    /* ─── Animated BG Gradient ───────────────────────────────────── */
    body::before {
        content: '';
        position: fixed;
        inset: 0;
        z-index: -2;
        background:
            radial-gradient(ellipse at 15% 20%, rgba(127, 0, 25, 0.55) 0%, transparent 55%),
            radial-gradient(ellipse at 85% 10%, rgba(109, 35, 182, 0.4) 0%, transparent 50%),
            radial-gradient(ellipse at 50% 80%, rgba(183, 0, 30, 0.35) 0%, transparent 55%),
            radial-gradient(ellipse at 90% 85%, rgba(155, 93, 229, 0.3) 0%, transparent 45%),
            linear-gradient(160deg, #0d0010 0%, #1a0020 40%, #0d0010 100%);
        animation: bgPulse 12s ease-in-out infinite alternate;
    }

    @keyframes bgPulse {
        0% {
            filter: hue-rotate(0deg) brightness(1);
        }

        100% {
            filter: hue-rotate(15deg) brightness(1.1);
        }
    }

    /* ─── Floating Orbs ──────────────────────────────────────────── */
    .orb {
        position: fixed;
        border-radius: 50%;
        filter: blur(80px);
        pointer-events: none;
        z-index: -1;
        animation: float 18s ease-in-out infinite;
    }

    .orb-1 {
        width: 500px;
        height: 500px;
        background: rgba(181, 0, 30, 0.18);
        top: -100px;
        left: -150px;
        animation-duration: 20s;
    }

    .orb-2 {
        width: 350px;
        height: 350px;
        background: rgba(109, 35, 182, 0.22);
        top: 40%;
        right: -100px;
        animation-duration: 15s;
        animation-delay: -5s;
    }

    .orb-3 {
        width: 280px;
        height: 280px;
        background: rgba(255, 0, 110, 0.15);
        bottom: 10%;
        left: 30%;
        animation-duration: 22s;
        animation-delay: -10s;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0) scale(1);
        }

        50% {
            transform: translateY(-40px) scale(1.08);
        }
    }

    /* ─── Container ──────────────────────────────────────────────── */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }

    /* ─── NAVBAR ─────────────────────────────────────────────────── */
    #navbar {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        padding: 18px 0;
        background: rgba(13, 0, 16, 0.3);
        backdrop-filter: blur(20px) saturate(180%);
        border-bottom: 1px solid var(--glass-border);
        transition: var(--trans);
    }

    #navbar.scrolled {
        background: rgba(13, 0, 16, 0.85);
        padding: 12px 0;
    }

    #navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        flex-shrink: 0;
    }

    .logo-img {
        width: 32px;
        height: 32px;
        object-fit: cover;
        border-radius: 50%;
        filter: drop-shadow(0 0 8px rgba(77, 144, 255, 0.55));
        transition: filter 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .logo:hover .logo-img {
        filter: drop-shadow(0 0 16px rgba(77, 180, 255, 0.9));
        transform: scale(1.08) rotate(-4deg);
    }

    .logo-text {
        font-family: 'Poppins', sans-serif;
        font-size: 1.25rem;
        font-weight: 600;
        color: #ffffff;
        letter-spacing: -0.5px;
    }

    .nav-links {
        display: flex;
        gap: 4px;
        align-items: center;
    }

    .nav-links a {
        font-size: 0.85rem;
        font-weight: 500;
        padding: 8px 16px;
        border-radius: 50px;
        border: 1px solid transparent;
        color: var(--text-muted);
        transition: var(--trans);
        position: relative;
    }

    .nav-links a:hover {
        color: var(--text);
        border-color: var(--glass-border);
        background: var(--glass);
    }

    .nav-links a:not(.nav-cta)::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: var(--accent2);
        border-radius: 1px;
        transition: width 0.28s ease;
    }

    .nav-links a:not(.nav-cta):hover::after {
        width: 50%;
    }

    .nav-cta {
        background: linear-gradient(135deg, var(--red-600), var(--accent)) !important;
        color: white !important;
        border: none !important;
        box-shadow: 0 4px 20px rgba(217, 0, 39, 0.4);
    }

    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(217, 0, 39, 0.55) !important;
    }

    /* ─── HERO ───────────────────────────────────────────────────── */
    #hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 120px 24px 80px;
        position: relative;
        overflow: hidden;
        background: url('hero-bg.jpg') center 30% / cover no-repeat;
    }

    #hero::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 0;
        background: linear-gradient(180deg,
                rgba(8, 4, 22, 0.70) 0%,
                rgba(8, 4, 22, 0.52) 40%,
                rgba(8, 4, 22, 0.90) 100%);
        animation: heroPan 20s ease-in-out infinite alternate;
    }

    @keyframes heroPan {
        0% {
            background-position: center 28%;
        }

        100% {
            background-position: center 34%;
        }
    }

    .hero-inner {
        max-width: 860px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--glass);
        border: 1px solid var(--glass-border);
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 0.78rem;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--accent2);
        margin-bottom: 28px;
        animation: fadeDown 0.7s ease both;
    }

    .hero-badge .dot {
        width: 7px;
        height: 7px;
        background: var(--accent);
        border-radius: 50%;
        animation: blink 1.5s ease-in-out infinite;
    }

    @keyframes blink {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: 0.2;
        }
    }

    .hero h1 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2.6rem, 7vw, 5.2rem);
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 24px;
        animation: fadeDown 0.7s 0.15s ease both;
    }

    .hero h1 span {
        background: linear-gradient(135deg, #ff4d6d 0%, #ffd166 50%, #ff8fa3 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hero p {
        font-size: 1.15rem;
        color: var(--text-muted);
        max-width: 620px;
        margin: 0 auto 40px;
        line-height: 1.75;
        animation: fadeDown 0.7s 0.3s ease both;
    }

    .hero-btns {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
        animation: fadeDown 0.7s 0.45s ease both;
    }

    .btn-primary {
        padding: 15px 36px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.95rem;
        border: none;
        cursor: pointer;
        background: linear-gradient(135deg, var(--red-700), var(--accent), var(--purple2));
        background-size: 200% auto;
        color: white;
        box-shadow: 0 6px 30px rgba(217, 0, 39, 0.45);
        transition: var(--trans);
        text-decoration: none;
        animation: gradientShift 4s ease infinite;
    }

    @keyframes gradientShift {
        0% {
            background-position: 0%
        }

        50% {
            background-position: 100%
        }

        100% {
            background-position: 0%
        }
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 40px rgba(217, 0, 39, 0.6);
    }

    .btn-outline {
        padding: 15px 36px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.95rem;
        cursor: pointer;
        text-decoration: none;
        border: 1.5px solid var(--glass-border);
        color: var(--text);
        background: var(--glass);
        backdrop-filter: blur(10px);
        transition: var(--trans);
    }

    .btn-outline:hover {
        border-color: var(--accent);
        color: var(--accent);
        transform: translateY(-3px);
    }

    /* Hero scroll cue */
    .scroll-cue {
        position: absolute;
        bottom: 32px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        opacity: 0.5;
        animation: bounce 2s ease-in-out infinite;
    }

    .scroll-cue span {
        font-size: 0.72rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--text-muted);
    }

    .scroll-cue svg {
        width: 20px;
        height: 20px;
        stroke: var(--text-muted);
    }

    @keyframes bounce {

        0%,
        100% {
            transform: translateX(-50%) translateY(0)
        }

        50% {
            transform: translateX(-50%) translateY(8px)
        }
    }

    /* ─── STATS BAND ─────────────────────────────────────────────── */
    #stats {
        padding: 60px 0;
        background: linear-gradient(135deg, rgba(127, 0, 25, 0.3), rgba(109, 35, 182, 0.2));
        border-top: 1px solid var(--glass-border);
        border-bottom: 1px solid var(--glass-border);
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
        gap: 24px;
    }

    .stat-item {
        text-align: center;
        padding: 20px;
    }

    .stat-num {
        font-family: 'Playfair Display', serif;
        font-size: 2.8rem;
        font-weight: 900;
        background: linear-gradient(135deg, var(--accent), var(--gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        line-height: 1;
    }

    .stat-label {
        font-size: 0.82rem;
        font-weight: 500;
        color: var(--text-muted);
        margin-top: 6px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* ─── SECTION TITLES ─────────────────────────────────────────── */
    .sec-title {
        text-align: center;
        margin-bottom: 60px;
    }

    .sec-title h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(1.8rem, 4vw, 2.8rem);
        font-weight: 900;
        line-height: 1.2;
        margin-bottom: 14px;
    }

    .sec-title h2 span {
        background: linear-gradient(135deg, var(--accent), var(--gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .sec-title p {
        font-size: 1rem;
        color: var(--text-muted);
        max-width: 560px;
        margin: 0 auto;
    }

    .sec-line {
        width: 56px;
        height: 3px;
        margin: 16px auto 0;
        background: linear-gradient(90deg, var(--red-600), var(--purple2));
        border-radius: 2px;
    }

    /* ─── WHAT WE DO ─────────────────────────────────────────────── */
    #what-we-do {
        padding: 100px 0;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }

    .feature-card {
        background: var(--glass);
        border: 1px solid var(--glass-border);
        border-radius: var(--radius);
        padding: 36px 30px;
        transition: var(--trans);
        position: relative;
        overflow: hidden;
    }

    .feature-card::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: var(--radius);
        background: linear-gradient(135deg, var(--red-800), var(--purple));
        opacity: 0;
        transition: var(--trans);
    }

    .feature-card:hover {
        transform: translateY(-8px);
        border-color: var(--accent);
        box-shadow: 0 20px 50px rgba(217, 0, 39, 0.25);
    }

    .feature-card:hover::before {
        opacity: 0.12;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        margin-bottom: 22px;
        background: linear-gradient(135deg, var(--red-700), var(--accent));
        box-shadow: 0 8px 24px rgba(217, 0, 39, 0.35);
        position: relative;
    }

    .feature-card h3 {
        font-size: 1.15rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .feature-card p {
        font-size: 0.9rem;
        color: var(--text-muted);
        line-height: 1.7;
        position: relative;
    }

    /* ─── SEARCH SECTION ─────────────────────────────────────────── */
    #search-section {
        padding: 80px 0;
    }

    /* Google-like search bar */
    .search-google-outer {
        max-width: 620px;
        margin: 0 auto;
        position: relative;
    }

    .search-google-bar {
        display: flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.08);
        border: 1.5px solid rgba(255, 255, 255, 0.13);
        border-radius: 50px;
        padding: 5px 6px 5px 22px;
        transition: var(--trans);
        backdrop-filter: blur(20px);
    }

    .search-google-bar:focus-within {
        border-color: rgba(255, 77, 109, 0.55);
        background: rgba(255, 255, 255, 0.11);
        box-shadow: 0 0 0 4px rgba(255, 77, 109, 0.1), 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .search-icon {
        color: var(--text-muted);
        font-size: 1rem;
        margin-right: 4px;
        flex-shrink: 0;
    }

    #searchInput {
        flex: 1;
        background: transparent;
        border: none;
        padding: 11px 8px;
        font-size: 1rem;
        color: var(--text);
        font-family: 'Inter', sans-serif;
        outline: none;
    }

    #searchInput::placeholder {
        color: var(--text-muted);
    }

    #searchBtn {
        padding: 10px 26px;
        border-radius: 50px;
        border: none;
        cursor: pointer;
        background: linear-gradient(135deg, var(--red-700), var(--accent));
        color: white;
        font-weight: 600;
        font-size: 0.9rem;
        font-family: 'Inter', sans-serif;
        transition: var(--trans);
        white-space: nowrap;
        flex-shrink: 0;
    }

    #searchBtn:hover {
        transform: scale(1.04);
        box-shadow: 0 6px 20px rgba(217, 0, 39, 0.45);
    }

    /* Suggestions dropdown */
    #suggestions {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        background: rgba(18, 10, 32, 0.97);
        border: 1px solid rgba(255, 255, 255, 0.11);
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 16px 50px rgba(0, 0, 0, 0.55);
        z-index: 500;
        display: none;
        backdrop-filter: blur(24px);
    }

    #suggestions.open {
        display: block;
        animation: fadeDown 0.18s ease both;
    }

    .sug-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 11px 20px;
        cursor: pointer;
        transition: background 0.18s ease;
        color: var(--text);
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .sug-item:last-child {
        border-bottom: none;
    }

    .sug-item:hover {
        background: rgba(255, 77, 109, 0.11);
    }

    .sug-icon-wrap {
        width: 30px;
        height: 30px;
        border-radius: 8px;
        background: rgba(255, 77, 109, 0.14);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        flex-shrink: 0;
    }

    .sug-name {
        font-weight: 600;
        font-size: 0.88rem;
    }

    .sug-meta {
        font-size: 0.75rem;
        color: var(--text-muted);
        margin-top: 1px;
    }

    .sug-right {
        margin-left: auto;
        font-size: 0.72rem;
        color: var(--accent2);
        white-space: nowrap;
    }

    /* Results area */
    .results-outer {
        max-width: 620px;
        margin: 14px auto 0;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 18px;
        overflow: hidden;
    }

    #searchResults {
        max-height: 430px;
        overflow-y: auto;
        padding: 8px;
    }

    .filter-tags {
        display: none;
    }

    .result-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 16px;
        border-radius: 10px;
        margin-bottom: 4px;
        background: transparent;
        border: 1px solid transparent;
        transition: var(--trans);
        animation: slideIn 0.25s ease both;
        text-decoration: none;
        color: var(--text);
    }

    .result-item:hover {
        background: rgba(255, 77, 109, 0.09);
        border-color: rgba(255, 77, 109, 0.22);
        transform: translateX(3px);
    }

    .result-district {
        font-weight: 600;
        font-size: 0.93rem;
    }

    .result-state {
        font-size: 0.76rem;
        color: var(--text-muted);
        margin-top: 2px;
    }

    .result-pin {
        font-size: 0.75rem;
        color: var(--accent2);
        font-weight: 600;
        background: rgba(255, 77, 109, 0.1);
        padding: 2px 9px;
        border-radius: 20px;
        white-space: nowrap;
    }

    .result-arrow {
        font-size: 1rem;
        color: var(--accent);
        opacity: 0;
        transition: var(--trans);
    }

    .result-item:hover .result-arrow {
        opacity: 1;
        transform: translateX(3px);
    }

    .no-results {
        text-align: center;
        padding: 36px;
        color: var(--text-muted);
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(-10px)
        }

        to {
            opacity: 1;
            transform: translateX(0)
        }
    }

    @keyframes fadeDown {
        from {
            opacity: 0;
            transform: translateY(-20px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    /* ─── INDIA MAP SECTION ──────────────────────────────────────── */
    #map-section {
        padding: 80px 0;
    }

    .map-layout {
        display: grid;
        grid-template-columns: 1fr 260px;
        gap: 28px;
        align-items: start;
    }

    @media(max-width:900px) {
        .map-layout {
            grid-template-columns: 1fr;
        }
    }

    .map-container {
        position: relative;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        padding: 16px;
        overflow: hidden;
    }

    .map-container::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 20px;
        background: radial-gradient(ellipse at 50% 35%, rgba(217, 0, 39, 0.04) 0%, transparent 60%);
        pointer-events: none;
    }

    #india-svg {
        width: 100%;
        height: auto;
        display: block;
    }

    /* District dots */
    .district-dot {
        cursor: pointer;
    }

    .district-dot circle {
        fill: var(--accent);
        stroke: rgba(255, 255, 255, 0.45);
        stroke-width: 0.8;
        filter: drop-shadow(0 0 3px rgba(255, 77, 109, 0.65));
        transition: all 0.2s ease;
    }

    .district-dot:hover circle {
        fill: var(--gold);
        filter: drop-shadow(0 0 9px rgba(255, 209, 102, 0.95));
    }

    /* Map tooltip */
    #mapTooltip {
        position: fixed;
        z-index: 2000;
        pointer-events: none;
        background: rgba(13, 0, 16, 0.95);
        border: 1px solid var(--accent);
        border-radius: 12px;
        padding: 12px 18px;
        display: none;
        min-width: 180px;
        box-shadow: 0 8px 32px rgba(255, 77, 109, 0.3);
    }

    #mapTooltip .tt-name {
        font-weight: 700;
        font-size: 0.95rem;
        color: var(--accent);
    }

    #mapTooltip .tt-state {
        font-size: 0.78rem;
        color: var(--text-muted);
        margin-top: 2px;
    }

    #mapTooltip .tt-pin {
        font-size: 0.75rem;
        color: var(--gold);
        margin-top: 4px;
    }

    /* Map sidebar */
    .map-sidebar {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .map-info-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        padding: 16px 18px;
    }

    .map-info-card h3 {
        font-size: 0.76rem;
        font-weight: 700;
        margin-bottom: 10px;
        color: var(--accent2);
        text-transform: uppercase;
        letter-spacing: 0.9px;
    }

    .map-info-card p {
        font-size: 0.82rem;
        color: var(--text-muted);
        line-height: 1.6;
    }

    .state-quick-links {
        display: flex;
        flex-direction: column;
        gap: 3px;
        max-height: 370px;
        overflow-y: auto;
    }

    .state-quick-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 7px 10px;
        border-radius: 7px;
        font-size: 0.8rem;
        background: transparent;
        color: var(--text-muted);
        cursor: pointer;
        transition: var(--trans);
        border: 1px solid transparent;
    }

    .state-quick-link:hover {
        background: rgba(255, 77, 109, 0.08);
        color: var(--text);
        border-color: rgba(255, 77, 109, 0.15);
    }

    .state-count {
        background: rgba(255, 77, 109, 0.1);
        color: var(--accent2);
        padding: 1px 7px;
        border-radius: 8px;
        font-size: 0.7rem;
        font-weight: 700;
    }

    /* ─── SITEMAP / DIRECTORY ────────────────────────────────────── */
    #directory {
        padding: 100px 0;
    }

    .state-accordion {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 16px;
    }

    .state-group {
        background: var(--glass);
        border: 1px solid var(--glass-border);
        border-radius: var(--radius);
        overflow: hidden;
        transition: var(--trans);
    }

    .state-group:hover {
        border-color: rgba(255, 77, 109, 0.3);
    }

    .state-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 22px;
        cursor: pointer;
        background: rgba(255, 255, 255, 0.03);
        border-bottom: 1px solid transparent;
        transition: var(--trans);
        user-select: none;
    }

    .state-header:hover,
    .state-header.open {
        background: rgba(255, 77, 109, 0.07);
        border-bottom-color: var(--glass-border);
    }

    .state-header-name {
        font-weight: 700;
        font-size: 0.92rem;
    }

    .state-header-meta {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .state-badge {
        background: rgba(255, 77, 109, 0.15);
        color: var(--accent2);
        padding: 3px 10px;
        border-radius: 20px;
        font-size: 0.72rem;
        font-weight: 700;
    }

    .chevron {
        font-size: 0.7rem;
        color: var(--text-muted);
        transition: transform 0.3s ease;
    }

    .state-header.open .chevron {
        transform: rotate(180deg);
    }

    .district-links {
        display: none;
        padding: 8px 12px 12px;
        flex-direction: column;
        gap: 2px;
    }

    .district-links.open {
        display: flex;
    }

    .district-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 12px;
        border-radius: 8px;
        font-size: 0.83rem;
        color: var(--text-muted);
        transition: var(--trans);
        text-decoration: none;
    }

    .district-link:hover {
        background: rgba(255, 77, 109, 0.1);
        color: var(--accent);
        padding-left: 18px;
    }

    .district-link .dl-pin {
        font-size: 0.72rem;
        color: var(--text-muted);
        opacity: 0.6;
    }

    .district-link:hover .dl-pin {
        color: var(--accent2);
        opacity: 1;
    }

    /* ─── FOOTER ─────────────────────────────────────────────────── */
    footer {
        padding: 60px 0 30px;
        border-top: 1px solid var(--glass-border);
        background: rgba(0, 0, 0, 0.4);
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    @media(max-width:768px) {
        .footer-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media(max-width:480px) {
        .footer-grid {
            grid-template-columns: 1fr;
        }
    }

    .footer-brand .logo {
        display: inline-flex;
        margin-bottom: 14px;
    }

    .footer-brand .logo-img {
        height: 34px;
    }

    .footer-brand .logo-text {
        font-family: 'Poppins', sans-serif;
        font-size: 1.42rem;
        font-weight: 600;
        color: #ffffff;
        letter-spacing: -0.5px;
    }

    .footer-brand p {
        font-size: 0.85rem;
        color: var(--text-muted);
        max-width: 260px;
        line-height: 1.7;
    }

    .footer-col h4 {
        font-size: 0.82rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        color: var(--accent2);
        margin-bottom: 16px;
    }

    .footer-col a {
        display: block;
        font-size: 0.85rem;
        color: var(--text-muted);
        margin-bottom: 8px;
        transition: var(--trans);
    }

    .footer-col a:hover {
        color: var(--accent);
        padding-left: 6px;
    }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
        padding-top: 28px;
        border-top: 1px solid var(--glass-border);
        font-size: 0.8rem;
        color: var(--text-muted);
    }

    /* ─── INDIA MAP STATES ───────────────────────────────────────────── */
    .state {
        fill: rgba(255, 255, 255, 0.01);
        stroke: rgba(255, 255, 255, 0.05);
        stroke-width: 0.5;
        cursor: pointer;
        transition: fill 0.22s ease, stroke 0.22s ease;
    }

    .state:hover {
        fill: rgba(255, 77, 109, 0.22);
        stroke: rgba(255, 77, 109, 0.55);
    }

    /* Gujarat – teal highlight */
    .s-gujarat {
        fill: rgba(20, 180, 148, 0.28);
        stroke: rgba(20, 220, 170, 0.55);
        stroke-width: 1;
    }

    .s-gujarat:hover {
        fill: rgba(20, 200, 165, 0.48);
    }

    /* Maharashtra (Mumbai) – saffron highlight */
    .s-maharashtra {
        fill: rgba(255, 145, 0, 0.28);
        stroke: rgba(255, 170, 30, 0.55);
        stroke-width: 1;
    }

    .s-maharashtra:hover {
        fill: rgba(255, 155, 0, 0.45);
    }

    /* Delhi – crimson highlight */
    .s-delhi {
        fill: rgba(255, 40, 80, 0.55);
        stroke: rgba(255, 80, 110, 0.9);
        stroke-width: 1.5;
    }

    .s-delhi:hover {
        fill: rgba(255, 60, 90, 0.75);
    }

    .state-name-label {
        font-family: 'Inter', sans-serif;
        font-size: 7px;
        font-weight: 700;
        fill: rgba(255, 255, 255, 0.55);
        pointer-events: none;
        text-anchor: middle;
    }

    .state-name-featured {
        fill: rgba(255, 220, 100, 0.9);
        font-size: 8px;
    }

    /* ─── FEATURED STATES BAND ──────────────────────────────────────── */
    #featured-states {
        padding: 60px 0 0;
    }

    .featured-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    @media(max-width:700px) {
        .featured-grid {
            grid-template-columns: 1fr;
        }
    }

    .featured-card {
        border-radius: var(--radius);
        padding: 28px 24px;
        position: relative;
        overflow: hidden;
        border: 1.5px solid var(--glass-border);
        cursor: pointer;
        transition: var(--trans);
        text-decoration: none;
        color: var(--text);
        display: block;
    }

    .featured-card:hover {
        transform: translateY(-6px);
    }

    .featured-card.gujarat {
        background: linear-gradient(135deg, rgba(20, 180, 148, 0.2), rgba(0, 80, 60, 0.1));
        border-color: rgba(20, 220, 170, 0.4);
    }

    .featured-card.gujarat:hover {
        border-color: rgba(20, 220, 170, 0.7);
        box-shadow: 0 16px 40px rgba(20, 180, 148, 0.3);
    }

    .featured-card.maharashtra {
        background: linear-gradient(135deg, rgba(255, 145, 0, 0.2), rgba(120, 50, 0, 0.1));
        border-color: rgba(255, 170, 30, 0.4);
    }

    .featured-card.maharashtra:hover {
        border-color: rgba(255, 170, 30, 0.7);
        box-shadow: 0 16px 40px rgba(255, 145, 0, 0.3);
    }

    .featured-card.delhi {
        background: linear-gradient(135deg, rgba(255, 40, 80, 0.25), rgba(120, 0, 30, 0.1));
        border-color: rgba(255, 80, 110, 0.4);
    }

    .featured-card.delhi:hover {
        border-color: rgba(255, 80, 110, 0.7);
        box-shadow: 0 16px 40px rgba(255, 40, 80, 0.35);
    }

    .fc-icon {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    .fc-title {
        font-family: 'Playfair Display', serif;
        font-size: 1.4rem;
        font-weight: 900;
        margin-bottom: 6px;
    }

    .fc-sub {
        font-size: 0.82rem;
        color: var(--text-muted);
        margin-bottom: 14px;
    }

    .fc-count {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 0.78rem;
        font-weight: 700;
        padding: 5px 14px;
        border-radius: 20px;
    }

    .fc-count.teal {
        background: rgba(20, 180, 148, 0.2);
        color: #14e0a0;
    }

    .fc-count.saffron {
        background: rgba(255, 145, 0, 0.2);
        color: #ffaa22;
    }

    .fc-count.red {
        background: rgba(255, 40, 80, 0.2);
        color: #ff6080;
    }

    .fc-arrow {
        position: absolute;
        right: 18px;
        bottom: 18px;
        font-size: 1.3rem;
        opacity: 0.4;
        transition: var(--trans);
    }

    .featured-card:hover .fc-arrow {
        opacity: 1;
        transform: translateX(4px);
    }

    /* ─── FOOTER SITEMAP ─────────────────────────────────────────────── */
    .footer-sitemap-section {
        margin-top: 40px;
        padding-top: 32px;
        border-top: 1px solid var(--glass-border);
    }

    .footer-sitemap-section h4 {
        font-size: 0.82rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        color: var(--accent2);
        margin-bottom: 16px;
    }

    .footer-state-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .footer-state-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 14px;
        border-radius: 50px;
        font-size: 0.78rem;
        font-weight: 600;
        border: 1px solid var(--glass-border);
        background: var(--glass);
        color: var(--text-muted);
        cursor: pointer;
        transition: var(--trans);
        text-decoration: none;
    }

    .footer-state-btn:hover {
        border-color: var(--accent);
        color: var(--accent);
        background: rgba(255, 77, 109, 0.1);
    }

    .footer-state-btn.featured-gj {
        border-color: rgba(20, 220, 170, 0.4);
        color: #14e0a0;
        background: rgba(20, 180, 148, 0.1);
    }

    .footer-state-btn.featured-mh {
        border-color: rgba(255, 170, 30, 0.4);
        color: #ffaa22;
        background: rgba(255, 145, 0, 0.1);
    }

    .footer-state-btn.featured-dl {
        border-color: rgba(255, 80, 110, 0.4);
        color: #ff6080;
        background: rgba(255, 40, 80, 0.1);
    }

    .fsb-count {
        background: rgba(255, 255, 255, 0.08);
        padding: 1px 7px;
        border-radius: 10px;
        font-size: 0.68rem;
    }

    /* ─── LOADING SPINNER ────────────────────────────────────────── */
    .spinner {
        display: inline-block;
        width: 22px;
        height: 22px;
        border: 2px solid rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        border-top-color: var(--accent);
        animation: spin 0.7s linear infinite;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg)
        }
    }

    /* ─── ANIMATIONS on scroll ───────────────────────────────────── */
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.65s ease, transform 0.65s ease;
    }

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

    /* ─── TOP BACK-TO-TOP ─────────────────────────────────────────── */
    #btt {
        position: fixed;
        bottom: 28px;
        right: 28px;
        z-index: 900;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: none;
        cursor: pointer;
        background: linear-gradient(135deg, var(--red-700), var(--accent));
        color: white;
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: var(--trans);
        box-shadow: 0 6px 24px rgba(217, 0, 39, 0.45);
    }

    #btt.show {
        opacity: 1;
        pointer-events: all;
    }

    #btt:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(217, 0, 39, 0.6);
    }

    /* ─── RESPONSIVE ─────────────────────────────────────────────── */
    @media(max-width:768px) {
        #navbar .nav-links {
            display: none;
        }

        /* Search button becomes an icon on mobile */
        #searchBtn {
            font-size: 0 !important;
            width: 44px !important;
            height: 44px !important;
            padding: 0 !important;
            display: flex !important;
            align-items: center;
            justify-content: center;
            border-radius: 50% !important;
        }

        #searchBtn::after {
            content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3C/svg%3E");
            display: block;
            width: 20px;
            height: 20px;
        }

        .search-wrap {
            padding: 28px 20px;
        }

        #stats {
            padding: 40px 0;
        }

        .state-accordion {
            grid-template-columns: 1fr;
        }
    }

    /* ─── CONTACT US DRAWER ───────────────────────────────────────── */
    .drawer-overlay {
        position: fixed;
        inset: 0;
        z-index: 1999;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(6px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
    }

    .drawer-overlay.open {
        opacity: 1;
        pointer-events: all;
    }

    .drawer-panel {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 2000;
        width: 420px;
        max-width: 92vw;
        height: 100vh;
        overflow-y: auto;
        background: rgba(13, 0, 22, 0.92);
        backdrop-filter: blur(28px) saturate(180%);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: -12px 0 60px rgba(0, 0, 0, 0.5);
        padding: 40px 32px 48px;
        transform: translateX(100%);
        transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .drawer-panel.open {
        transform: translateX(0);
    }

    .drawer-close {
        position: absolute;
        top: 18px;
        right: 20px;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.06);
        color: var(--text-muted);
        font-size: 1.2rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--trans);
    }

    .drawer-close:hover {
        background: rgba(255, 77, 109, 0.18);
        border-color: rgba(255, 77, 109, 0.4);
        color: var(--accent);
        transform: rotate(90deg);
    }

    .drawer-header {
        margin-bottom: 32px;
        padding-right: 40px;
    }

    .drawer-header h2 {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        font-weight: 900;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .drawer-header h2 span {
        background: linear-gradient(135deg, var(--accent), var(--gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .drawer-header p {
        font-size: 0.88rem;
        color: var(--text-muted);
        line-height: 1.6;
    }

    .drawer-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .drawer-field {
        display: flex;
        flex-direction: column;
        gap: 7px;
    }

    .drawer-field label {
        font-size: 0.82rem;
        font-weight: 600;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.8px;
    }

    .drawer-field input,
    .drawer-field textarea {
        width: 100%;
        padding: 13px 16px;
        border-radius: 12px;
        border: 1.5px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.06);
        color: var(--text);
        font-family: 'Inter', sans-serif;
        font-size: 0.95rem;
        outline: none;
        transition: var(--trans);
    }

    .drawer-field input::placeholder,
    .drawer-field textarea::placeholder {
        color: rgba(184, 168, 208, 0.5);
    }

    .drawer-field input:focus,
    .drawer-field textarea:focus {
        border-color: rgba(255, 77, 109, 0.55);
        background: rgba(255, 255, 255, 0.09);
        box-shadow: 0 0 0 3px rgba(255, 77, 109, 0.1);
    }

    .drawer-field textarea {
        resize: vertical;
        min-height: 100px;
    }

    .drawer-field .field-error {
        font-size: 0.78rem;
        color: #ff6b8a;
        display: none;
        margin-top: -2px;
    }

    .drawer-field .field-error.show {
        display: block;
        animation: fadeDown 0.2s ease both;
    }

    .drawer-submit {
        width: 100%;
        padding: 15px 28px;
        border-radius: 50px;
        border: none;
        cursor: pointer;
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        font-size: 0.95rem;
        color: white;
        background: linear-gradient(135deg, var(--red-700), var(--accent), var(--purple2));
        background-size: 200% auto;
        animation: gradientShift 4s ease infinite;
        box-shadow: 0 6px 28px rgba(217, 0, 39, 0.4);
        transition: var(--trans);
        margin-top: 6px;
    }

    .drawer-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 36px rgba(217, 0, 39, 0.55);
    }

    .drawer-submit:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }

    .drawer-success {
        display: none;
        text-align: center;
        padding: 32px 20px;
    }

    .drawer-success.show {
        display: block;
        animation: fadeDown 0.4s ease both;
    }

    .drawer-success .success-icon {
        font-size: 3.2rem;
        margin-bottom: 14px;
    }

    .drawer-success h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 900;
        margin-bottom: 8px;
        background: linear-gradient(135deg, #14e0a0, #6df0c8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .drawer-success p {
        font-size: 0.88rem;
        color: var(--text-muted);
        line-height: 1.6;
    }

    .drawer-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        margin: 8px 0;
    }

    /* --- Global Mobile-First Responsive Overrides --- */

    /* 1. Global Box Sizing & Viewport Overflow Safety */
    *,
    *::before,
    *::after {
        box-sizing: border-box !important;
    }

    html,
    body {
        max-width: 100vw !important;
        overflow-x: hidden !important;
        -webkit-text-size-adjust: 100%;
    }

    /* 2. Media & Images */
    img,
    video,
    iframe,
    embed,
    object {
        max-width: 100% !important;
        height: auto !important;
        display: block;
    }

    /* 3. Typography & Headings */
    h1,
    .hero-sec h1,
    .hero-section h1,
    #hero h1,
    .hero h1 {
        font-size: clamp(2rem, 6vw, 4rem) !important;
        line-height: 1.15 !important;
    }

    h2,
    .section-title {
        font-size: clamp(1.75rem, 5vw, 2.8rem) !important;
        line-height: 1.25 !important;
    }

    h3 {
        font-size: clamp(1.25rem, 4vw, 1.75rem) !important;
    }

    p,
    .section-desc,
    .editorial-content p {
        font-size: clamp(1rem, 2vw, 1.15rem) !important;
    }

    .site-logo,
    .brand,
    .logo {
        font-size: clamp(1.5rem, 4vw, 2.2rem) !important;
    }

    /* Responsive Breakpoints */
    @media (max-width: 768px) {

        /* 4. Layout Fixes: Convert Fixed-width & Grids */
        .history-grid,
        .market-grid,
        .grid-matrix,
        .companies-grid,
        .companies-cards-grid,
        .card-grid,
        .history-cards-grid,
        .evolution-row,
        .features-grid {
            display: grid !important;
            grid-template-columns: 1fr !important;
            gap: 1.5rem !important;
        }

        /* Section and Container Spacing */
        section {
            padding: 3rem 1.5rem !important;
        }

        .container,
        .section-container,
        .wrapper {
            padding-left: 15px !important;
            padding-right: 15px !important;
            width: 100% !important;
            max-width: 100% !important;
        }

        /* Form Wrappers */
        .form-wrapper,
        .form-container-inner,
        .form-card-wrapper,
        .form-container {
            padding: 2rem 1.2rem !important;
            margin: 0 10px !important;
        }

        /* Timeline specific overrides */
        .timeline::after {
            left: 20px !important;
        }

        .timeline-container {
            width: 100% !important;
            padding-left: 3rem !important;
            padding-right: 0 !important;
        }

        .timeline-container.right {
            left: 0 !important;
        }

        .timeline-container::after {
            left: 12px !important;
        }

        /* Image banners */
        .section-banner-img {
            height: 250px !important;
            margin-bottom: 2rem !important;
        }

        /* 5. Forms full width */
        form,
        .field-row {
            width: 100% !important;
        }

        input,
        select,
        textarea,
        .form-control,
        .input-element {
            width: 100% !important;
            max-width: 100% !important;
            font-size: 16px !important;
            /* Prevents iOS zoom */
            padding: 14px !important;
        }

        .tel-wrapper,
        .input-box-wrapper {
            width: 100% !important;
            display: flex !important;
            flex-direction: row !important;
        }

        /* 6. Buttons & CTAs Touch-Friendly */
        .cta-btn,
        .hero-cta,
        .submit-btn,
        .action-submit-btn,
        button:not(#btt):not(.hamburger):not(.burger-btn):not(#searchBtn):not(.drawer-close) {
            min-height: 48px !important;
            /* Minimum touch target size */
            padding: 14px 24px !important;
            font-size: 1.05rem !important;
            width: 100% !important;
            display: block !important;
            text-align: center !important;
            margin-top: 10px !important;
        }

        .cta-btn {
            width: auto !important;
            display: inline-block !important;
        }

        /* 7. Navigation Fixes if existing CSS missing */
        .hamburger,
        .burger-btn {
            display: flex !important;
            z-index: 1001 !important;
        }

        .nav-links,
        .nav-menu,
        #navWindowMenu,
        #navLinks {
            display: none;
            flex-direction: column !important;
            position: absolute !important;
            top: 100% !important;
            left: 0 !important;
            width: 100% !important;
            background-color: var(--primary-color, #1e3a8a) !important;
            padding: 1.5rem !important;
            z-index: 1000 !important;
        }

        .nav-links.active,
        .nav-links.show,
        #navWindowMenu.show,
        #navLinks.active {
            display: flex !important;
        }
    }

    /* Extra small devices */
    @media (max-width: 480px) {
        section {
            padding: 2.5rem 1rem !important;
        }

        .form-wrapper,
        .form-container-inner {
            padding: 1.5rem 1rem !important;
        }
    }