        /* --- HEADER & NAV --- */
        .header {
            position: sticky; 
            top: 0; 
            z-index: 999;
            background: var(--color-bjp-green-light);
            border-bottom: 4px solid var(--color-bjp-green);
            box-shadow: var(--shadow-sm);
        }

        .header-main { 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            height: 5rem; 
            position: relative; 
        }

        /* --- LOGO SECTION --- */
        .logo-wrap { 
            display: flex; 
            align-items: center; 
            gap: 1rem; 
            cursor: pointer; 
            flex-shrink: 0; 
        }
        
        .logo-img { 
            height: 3.5rem; 
            width: auto; 
            object-fit: contain; 
            filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)); 
        }
        
        .logo-text h1 {
            margin-top: 15px;
            font-size: 1.4rem;
            font-weight: 900;
            color: white;
            line-height: 0.8;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }
        
        /* 1024-1200px के बीच छोटा title */
        @media (min-width: 1024px) and (max-width: 1200px) {
            .logo-text h1 {
                font-size: 1.2rem;
            }
            .logo-text span {
                font-size: 0.75rem;
            }
        }
        
        .logo-text span { 
            font-size: 0.875rem; 
            color: rgba(255,255,255,0.9); 
            font-weight: 500; 
        }

        /* --- NAVIGATION DEFAULT STATE --- */
        .desktop-nav { 
            display: none; 
        }
        
        /* DESKTOP VIEW (1201px+) - Full Size */
        @media (min-width: 1201px) { 
            .desktop-nav {
                display: flex; 
                align-items: center; 
                gap: 0.5rem;
                flex-wrap: nowrap;
                justify-content: flex-end;
            }
        }
        
        /* MEDIUM DESKTOP (1024px - 1200px) - Compact */
        @media (min-width: 1024px) and (max-width: 1200px) {
            .desktop-nav {
                display: flex; 
                align-items: center; 
                gap: 0.2rem;
                flex-wrap: nowrap;
                justify-content: flex-end;
            }
        }

        /* --- NAV LINKS RESPONSIVE SIZING --- */
        .nav-link {
            padding: 0.4rem 0.5rem;
            color: white; 
            font-weight: 600; 
            text-decoration: none;
            border-radius: 0.5rem; 
            transition: background 0.3s; 
            white-space: nowrap;
            font-size: 13px; /* Mobile default */
        }
        
        /* 1024px - 1200px: 14px */
        @media (min-width: 1024px) and (max-width: 1200px) {
            .nav-link {
                font-size: 14px;
                padding: 0.3rem 0.4rem;
            }
        }
        
        /* 1201px+: 16px */
        @media (min-width: 1201px) {
            .nav-link {
                font-size: 16px;
                padding: 0.4rem 0.5rem;
            }
        }
        
        .nav-link:hover { 
            background: rgba(255,255,255,0.2); 
        }
        
        .nav-link.active { 
            background: white; 
            color: var(--color-bjp-green-light); 
        }
        
        .nav-home-icon { 
            font-size: 1.2rem; 
        }

        /* --- DESKTOP DROPDOWN --- */
        .dropdown { 
            position: relative; 
            display: inline-block; 
            padding-bottom: 10px; 
            margin-bottom: -10px; 
        }
        
        .dropdown-menu {
            opacity: 0;
            visibility: hidden;
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 200px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
            border-radius: 0.5rem;
            z-index: 1000;
            margin-top: 10px;
            transition: all 0.3s ease;
            transform: translateY(-10px); 
        }

        .dropdown-menu::before {
            content: ''; 
            position: absolute; 
            top: -15px; 
            left: 0; 
            width: 100%; 
            height: 15px; 
            background: transparent;
        }

        .dropdown:hover .dropdown-menu { 
            opacity: 1; 
            visibility: visible; 
            transform: translateY(0); 
        }

        .dropdown-menu a {
            color: #333; 
            padding: 10px 15px; 
            text-decoration: none; 
            display: block;
            font-size: 13px; 
            font-weight: 500; 
            border-bottom: 1px solid #eee; 
            transition: background 0.3s, color 0.3s;
        }
        
        .dropdown-menu a:last-child { 
            border-bottom: none; 
        }
        
        .dropdown-menu a:hover { 
            background: #f8f9fa; 
            color: var(--color-bjp-green); 
        }
        
        .dropdown-icon { 
            font-size: 0.55rem; 
            margin-left: 4px; 
            vertical-align: middle; 
        }

        /* --- SOCIAL ICONS --- */
        .social-nav { 
            display: flex; 
            gap: 0.4rem; 
            padding-left: 0.5rem; 
            border-left: 1px solid rgba(255,255,255,0.3); 
            margin-left: 0.2rem; 
        }
        
        .social-icon {
            width: 1.8rem; 
            height: 1.8rem; 
            border-radius: 50%; 
            text-decoration: none; 
            font-size: 0.9rem;
            background: rgba(255,255,255,0.2); 
            color: white; 
            display: flex; 
            justify-content: center; 
            align-items: center; 
            transition: all 0.3s;
        }
        
        .social-icon:hover { 
            background: white; 
            color: var(--color-saffron); 
        }
        
        /* 1023px तक Social Hide */
        @media (max-width: 1023px) {
            .social-nav { 
                display: none; 
            }
        }

        /* --- HAMBURGER BUTTON (RENAMED CLASS) --- */
        .as-mobile-toggle { 
            display: flex;
            align-items: center;
            justify-content: center;
            color: white; 
            font-size: 1.8rem;
            padding: 0.5rem; 
            background: none; 
            border: none; 
            cursor: pointer;
            z-index: 1001;
            min-width: 44px;
            min-height: 44px;
            transition: transform 0.3s ease;
        }
        
        .as-mobile-toggle:active {
            transform: scale(0.95);
        }
        
        /* 1024px+ पर Hamburger Hide */
        @media (min-width: 1024px) { 
            .as-mobile-toggle { 
                display: none; 
            }
        }

        /* --- SUB NAVIGATION BAR --- */
        .sub-nav {
            background: var(--color-saffron);
            border-top: 1px solid rgba(255,255,255,0.2);
            display: block; 
            width: 100%; 
            overflow-x: auto;
            -webkit-overflow-scrolling: touch; 
            scrollbar-width: none;
        }
        
        .sub-nav::-webkit-scrollbar { 
            display: none; 
        }
        
        .sub-nav-links {
            display: flex; 
            gap: 1.5rem; 
            padding: 0.75rem 1rem; 
            font-size: 0.875rem; 
            color: rgba(255,255,255,0.9); 
            width: max-content;
        }
        
        @media (min-width: 1116px) {
            .sub-nav-links { 
                padding: 0.8rem 1.5rem 0.5rem; 
                gap: 1.5rem; 
                width: auto; 
                margin: 0 auto; 
                justify-content: flex-start; 
            }
        }
        
        /* SUB-NAV LINKS - RESPONSIVE SIZING */
        .sub-nav-links a { 
            font-size: 14px; 
            font-weight: 700; 
            display: flex; 
            align-items: center; 
            gap: 4px; 
            transition: color 0.3s; 
            text-decoration: none; 
            color: inherit; 
        }
        
        @media (min-width: 1201px) {
            .sub-nav-links a {
                font-size: 16px;
                gap: 8px;
            }
        }
        
        .sub-nav-links a:hover { 
            color: white; 
        }
        
        .sub-nav-links i { 
            margin-top: -5px; 
            font-size: 0.75rem; 
        }

        /* --- NEW UNIQUE CLASSES FOR MOBILE MENU --- */
        .as-mobile-panel { 
            display: none; 
            position: absolute;
            top: 100%; 
            left: 0; 
            width: 100%;
            background: rgba(22, 163, 74, 0.95); 
            backdrop-filter: blur(10px);
            padding: 0;
            z-index: 1000;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            max-height: calc(100vh - 5rem);
            overflow-y: auto;
        }
        
        .as-mobile-panel.as-menu-open { 
            display: flex; 
            flex-direction: column; 
        }
        
        .as-mobile-panel .nav-link { 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            padding: 1rem; 
            border-bottom: 1px solid rgba(255,255,255,0.15); 
            font-size: 15px;
            cursor: pointer;
        }
        
        .as-mobile-panel .nav-link:last-of-type { 
            border-bottom: none; 
        }

        /* --- MOBILE DROPDOWN --- */
        .as-mobile-dropdown { 
            border-bottom: 1px solid rgba(255,255,255,0.15); 
        }
        
        .as-mobile-dropdown .nav-link {
            border-bottom: none;
        }
        
        .as-mobile-dropdown-menu { 
            display: none; 
            background: rgba(0,0,0,0.2); 
            margin: 0;
            overflow: hidden; 
        }
        
        .as-mobile-dropdown.as-drop-open .as-mobile-dropdown-menu { 
            display: block; 
        }
        
        .as-mobile-dropdown-menu a {
            display: block; 
            padding: 0.8rem 1rem 0.8rem 2.5rem; 
            color: rgba(255,255,255,0.95);
            text-decoration: none; 
            border-bottom: 1px solid rgba(255,255,255,0.1); 
            font-size: 14px;
            transition: all 0.2s;
        }
        
        .as-mobile-dropdown-menu a:last-child { 
            border-bottom: none; 
        }
        
        .as-mobile-dropdown-menu a:hover { 
            background: rgba(255,255,255,0.15); 
            color: white; 
            padding-left: 2.7rem;
        }

        .custom-logo { 
            height: 3.5rem; 
            width: auto; 
        }