
        /* ==================== CSS RESET & BASE ==================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-dark: #0a1628;
            --primary: #1a237e;
            --primary-light: #283593;
            --secondary: #c62828;
            --secondary-light: #e53935;
            --accent: #ff8f00;
            --accent-light: #ffb300;
            --gold: #ffd700;
            --white: #ffffff;
            --light-gray: #f5f5f5;
            --medium-gray: #e0e0e0;
            --dark-gray: #333333;
            --text-dark: #212121;
            --text-medium: #555555;
            --text-light: #888888;
            --success: #2e7d32;
            --info: #1565c0;
            --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto', sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
            background: var(--white);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* ==================== SCROLLBAR ==================== */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--light-gray);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 4px;
        }

        /* ==================== TOP BAR ==================== */
        .top-bar {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #0d1f3c 100%);
            color: var(--white);
            padding: 6px 0;
            font-size: 13px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 1001;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .top-bar-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .top-bar-left a,
        .top-bar-left span {
            color: rgba(255, 255, 255, 0.85);
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .top-bar-left a:hover {
            color: var(--accent-light);
        }

        .top-bar-right {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .top-bar-right a {
            color: rgba(255, 255, 255, 0.85);
            padding: 3px 10px;
            border-radius: 3px;
            transition: var(--transition);
            font-size: 12px;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .top-bar-right a:hover {
            background: var(--secondary);
            border-color: var(--secondary);
            color: var(--white);
        }

        .top-bar-right .font-size-controls {
            display: flex;
            align-items: center;
            gap: 4px;
            margin-right: 5px;
            border-right: 1px solid rgba(255, 255, 255, 0.2);
            padding-right: 10px;
        }

        .top-bar-right .font-size-controls button {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: var(--white);
            width: 24px;
            height: 24px;
            border-radius: 3px;
            cursor: pointer;
            font-size: 11px;
            transition: var(--transition);
        }

        .top-bar-right .font-size-controls button:hover {
            background: var(--accent);
            border-color: var(--accent);
        }

        .social-top {
            display: flex;
            gap: 6px;
            margin-left: 10px;
            padding-left: 10px;
            border-left: 1px solid rgba(255, 255, 255, 0.2);
        }

        .social-top a {
            width: 26px;
            height: 26px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.3) !important;
            padding: 0 !important;
            font-size: 12px;
        }

        .social-top a:hover {
            background: var(--accent) !important;
            border-color: var(--accent) !important;
            transform: translateY(-2px);
        }

        /* ==================== NEWS TICKER ==================== */
        .news-ticker-bar {
            background: linear-gradient(90deg, var(--secondary) 0%, #b71c1c 100%);
            padding: 0;
            overflow: hidden;
            position: relative;
            z-index: 1000;
        }

        .news-ticker-bar .container {
            display: flex;
            align-items: center;
        }

        .ticker-label {
            background: var(--accent);
            color: var(--primary-dark);
            padding: 8px 20px;
            font-weight: 700;
            font-size: 13px;
            text-transform: uppercase;
            white-space: nowrap;
            position: relative;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .ticker-label::after {
            content: '';
            position: absolute;
            right: -15px;
            top: 0;
            bottom: 0;
            width: 0;
            height: 0;
            border-top: 18px solid transparent;
            border-bottom: 18px solid transparent;
            border-left: 15px solid var(--accent);
        }

        .ticker-label .blink {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: var(--secondary);
            border-radius: 50%;
            animation: blink 1s infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        .ticker-content {
            flex: 1;
            overflow: hidden;
            padding: 8px 0 8px 25px;
        }

        .ticker-scroll {
            display: flex;
            animation: tickerScroll 30s linear infinite;
            white-space: nowrap;
        }

        .ticker-scroll:hover {
            animation-play-state: paused;
        }

        .ticker-scroll a {
            color: var(--white);
            margin-right: 60px;
            font-size: 13px;
            font-weight: 400;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
        }

        .ticker-scroll a::before {
            content: '★';
            color: var(--accent-light);
            font-size: 10px;
        }

        .ticker-scroll a:hover {
            color: var(--accent-light);
        }

        .ticker-scroll a .new-badge {
            background: var(--accent);
            color: var(--primary-dark);
            padding: 1px 6px;
            border-radius: 3px;
            font-size: 9px;
            font-weight: 700;
            text-transform: uppercase;
            animation: blink 1.5s infinite;
        }

        @keyframes tickerScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* ==================== HEADER / LOGO BAR ==================== */
        .header-main {
            background: linear-gradient(135deg, var(--white) 0%, #f8f9ff 100%);
            padding: 12px 0;
            border-bottom: 3px solid var(--primary);
            position: relative;
        }

        .header-main .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-img {
            width: 75px;
            height: 75px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 28px;
            font-weight: 900;
            font-family: 'Poppins', sans-serif;
            border: 3px solid var(--gold);
            box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
            flex-shrink: 0;
        }

        .logo-text h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 24px;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
            letter-spacing: 0.5px;
        }

        .logo-text .hindi-name {
            font-size: 16px;
            color: var(--secondary);
            font-weight: 600;
        }

        .logo-text .tagline {
            font-size: 12px;
            color: var(--text-medium);
            margin-top: 2px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .header-search {
            position: relative;
        }

        .header-search input {
            padding: 10px 40px 10px 16px;
            border: 2px solid var(--medium-gray);
            border-radius: 25px;
            font-size: 14px;
            width: 260px;
            outline: none;
            transition: var(--transition);
            font-family: 'Roboto', sans-serif;
        }

        .header-search input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 10px rgba(26, 35, 126, 0.15);
            width: 300px;
        }

        .header-search button {
            position: absolute;
            right: 3px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary);
            border: none;
            color: var(--white);
            width: 34px;
            height: 34px;
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition);
        }

        .header-search button:hover {
            background: var(--secondary);
        }

        .header-actions {
            display: flex;
            gap: 10px;
        }

        .header-actions .btn {
            padding: 10px 22px;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
            font-family: 'Poppins', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-primary-custom {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }

        .btn-primary-custom:hover {
            background: transparent;
            color: var(--primary);
        }

        .btn-secondary-custom {
            background: var(--secondary);
            color: var(--white);
            border-color: var(--secondary);
        }

        .btn-secondary-custom:hover {
            background: transparent;
            color: var(--secondary);
        }

        /* ==================== MAIN NAVBAR ==================== */
        .main-navbar {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 15px;
            /* overflow: hidden; */
        }

        .nav-menu {
            display: flex;
            align-items: center;
        }

        .nav-menu > li {
            position: relative;
        }

        .nav-menu > li > a {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 16px 16px;
            color: rgba(255, 255, 255, 0.95);
            font-size: 12px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            transition: var(--transition);
            font-family: 'Poppins', sans-serif;
            white-space: nowrap;
            position: relative;
        }

        .nav-menu > li > a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--accent);
            transition: var(--transition);
            border-radius: 3px 3px 0 0;
        }

        .nav-menu > li:hover > a,
        .nav-menu > li.active > a {
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
        }

        .nav-menu > li:hover > a::after,
        .nav-menu > li.active > a::after {
            width: 70%;
        }

        .nav-menu > li > a .fa-home {
            font-size: 16px;
        }

        .nav-menu > li > a .dropdown-icon {
            font-size: 10px;
            transition: var(--transition);
        }

        .nav-menu > li:hover > a .dropdown-icon {
            transform: rotate(180deg);
        }

        /* ---- DROPDOWN MENUS ---- */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            min-width: 260px;
            box-shadow: var(--shadow-lg);
            border-top: 3px solid var(--accent);
            border-radius: 0 0 8px 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 1000;
        }

        .nav-menu > li:hover > .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li {
            position: relative;
        }

        .dropdown-menu li a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 11px 20px;
            color: var(--text-dark);
            font-size: 13.5px;
            font-weight: 400;
            transition: var(--transition);
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        }

        .dropdown-menu li:last-child a {
            border-bottom: none;
        }

        .dropdown-menu li a:hover {
            background: linear-gradient(90deg, rgba(26, 35, 126, 0.08) 0%, transparent 100%);
            color: var(--primary);
            padding-left: 26px;
        }

        .dropdown-menu li a .fa-chevron-right {
            font-size: 10px;
            color: var(--text-light);
        }

        /* ---- SUB-DROPDOWN ---- */
        .sub-dropdown {
            position: absolute;
            top: 0;
            left: 100%;
            background: var(--white);
            min-width: 250px;
            box-shadow: var(--shadow-lg);
            border-top: 3px solid var(--secondary);
            border-radius: 0 0 8px 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(10px);
            transition: var(--transition);
        }

        .dropdown-menu li:hover > .sub-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }

        /* ---- MEGA MENU ---- */
        .mega-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background: var(--white);
            width: 900px;
            box-shadow: var(--shadow-lg);
            border-top: 3px solid var(--accent);
            border-radius: 0 0 12px 12px;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 1000;
            padding: 25px 30px;
        }

        .nav-menu > li:hover > .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .mega-menu-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .mega-menu-col h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 15px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--accent);
            display: inline-block;
        }

        .mega-menu-col ul li a {
            display: block;
            padding: 7px 0;
            color: var(--text-medium);
            font-size: 13.5px;
            transition: var(--transition);
        }

        .mega-menu-col ul li a:hover {
            color: var(--primary);
            padding-left: 8px;
        }

        .mega-menu-col ul li a::before {
            content: '›';
            margin-right: 8px;
            color: var(--accent);
            font-weight: 700;
        }

        /* ---- MOBILE MENU TOGGLE ---- */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 26px;
            cursor: pointer;
            padding: 10px;
            transition: var(--transition);
        }

        .mobile-toggle:hover {
            color: var(--accent);
        }

        .mobile-close {
            display: none;
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--secondary);
            border: none;
            color: var(--white);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 18px;
            cursor: pointer;
            z-index: 1002;
        }

        .nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 998;
            backdrop-filter: blur(3px);
        }

        .nav-overlay.active {
            display: block;
        }

        /* ==================== HERO SLIDER ==================== */
        .hero-slider {
            position: relative;
            height: 550px;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-bg {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(26, 35, 126, 0.6) 50%, rgba(198, 40, 40, 0.4) 100%);
        }

        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: var(--white);
            width: 90%;
            max-width: 800px;
            z-index: 2;
        }

        .slide-content .subtitle {
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: var(--accent-light);
            margin-bottom: 15px;
            font-weight: 500;
        }

        .slide-content h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 48px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
        }

        .slide-content p {
            font-size: 18px;
            margin-bottom: 35px;
            opacity: 0.9;
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .slide-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .slide-buttons .btn-slide {
            padding: 14px 35px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: var(--transition);
            font-family: 'Poppins', sans-serif;
            border: 2px solid transparent;
        }

        .btn-slide-primary {
            background: var(--accent);
            color: var(--primary-dark);
            border-color: var(--accent);
        }

        .btn-slide-primary:hover {
            background: transparent;
            color: var(--white);
            border-color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 143, 0, 0.4);
        }

        .btn-slide-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-slide-outline:hover {
            background: var(--white);
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
        }

        /* Slider Controls */
        .slider-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 3;
        }

        .slider-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .slider-dot.active {
            background: var(--accent);
            border-color: var(--white);
            transform: scale(1.2);
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.15);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: var(--white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 3;
            font-size: 18px;
            transition: var(--transition);
            backdrop-filter: blur(5px);
        }

        .slider-arrow:hover {
            background: var(--accent);
            border-color: var(--accent);
            transform: translateY(-50%) scale(1.1);
        }

        .slider-arrow.prev {
            left: 30px;
        }

        .slider-arrow.next {
            right: 30px;
        }

        /* ==================== QUICK ACCESS SECTION ==================== */
        .quick-access {
            padding: 0;
            position: relative;
            z-index: 10;
            margin-top: -60px;
        }

        .quick-access-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 15px;
        }

        .quick-card {
            background: var(--white);
            border-radius: 12px;
            padding: 30px 15px;
            text-align: center;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
            cursor: pointer;
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .quick-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary);
            transition: var(--transition);
        }

        .quick-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .quick-card:hover::before {
            height: 100%;
            opacity: 0.05;
        }

        .quick-card:nth-child(2)::before { background: var(--secondary); }
        .quick-card:nth-child(3)::before { background: var(--accent); }
        .quick-card:nth-child(4)::before { background: var(--success); }
        .quick-card:nth-child(5)::before { background: var(--info); }
        .quick-card:nth-child(6)::before { background: #7b1fa2; }

        .quick-card-icon {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 26px;
            transition: var(--transition);
        }

        .quick-card:nth-child(1) .quick-card-icon { background: rgba(26, 35, 126, 0.1); color: var(--primary); }
        .quick-card:nth-child(2) .quick-card-icon { background: rgba(198, 40, 40, 0.1); color: var(--secondary); }
        .quick-card:nth-child(3) .quick-card-icon { background: rgba(255, 143, 0, 0.1); color: var(--accent); }
        .quick-card:nth-child(4) .quick-card-icon { background: rgba(46, 125, 50, 0.1); color: var(--success); }
        .quick-card:nth-child(5) .quick-card-icon { background: rgba(21, 101, 192, 0.1); color: var(--info); }
        .quick-card:nth-child(6) .quick-card-icon { background: rgba(123, 31, 162, 0.1); color: #7b1fa2; }

        .quick-card:hover .quick-card-icon {
            transform: scale(1.1) rotateY(180deg);
        }

        .quick-card h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 5px;
        }

        .quick-card p {
            font-size: 12px;
            color: var(--text-light);
        }

        /* ==================== INFO SECTIONS ==================== */
        .info-section {
            padding: 80px 0 60px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header .section-label {
            display: inline-block;
            background: rgba(26, 35, 126, 0.08);
            color: var(--primary);
            padding: 5px 18px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }

        .section-header h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 36px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .section-header .section-line {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            margin: 0 auto;
            border-radius: 2px;
        }

        /* ---- Three Column Layout ---- */
        .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 25px;
        }

        .info-card {
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow);
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.06);
            transition: var(--transition);
        }

        .info-card:hover {
            box-shadow: var(--shadow-lg);
        }

        .info-card-header {
            padding: 18px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid var(--medium-gray);
        }

        .info-card-header h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 17px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .info-card:nth-child(1) .info-card-header {
            background: linear-gradient(135deg, rgba(26, 35, 126, 0.05), rgba(26, 35, 126, 0.02));
        }
        .info-card:nth-child(1) .info-card-header h3 { color: var(--primary); }

        .info-card:nth-child(2) .info-card-header {
            background: linear-gradient(135deg, rgba(198, 40, 40, 0.05), rgba(198, 40, 40, 0.02));
        }
        .info-card:nth-child(2) .info-card-header h3 { color: var(--secondary); }

        .info-card:nth-child(3) .info-card-header {
            background: linear-gradient(135deg, rgba(46, 125, 50, 0.05), rgba(46, 125, 50, 0.02));
        }
        .info-card:nth-child(3) .info-card-header h3 { color: var(--success); }

        .info-card-header .view-all {
            font-size: 12px;
            color: var(--text-light);
            font-weight: 500;
            transition: var(--transition);
        }

        .info-card-header .view-all:hover {
            color: var(--primary);
        }

        .info-card-body {
            padding: 15px 22px;
            max-height: 350px;
            overflow-y: auto;
        }

        .info-card-body::-webkit-scrollbar {
            width: 4px;
        }
        .info-card-body::-webkit-scrollbar-thumb {
            background: var(--medium-gray);
            border-radius: 4px;
        }

        .info-item {
            padding: 12px 0;
            border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
            transition: var(--transition);
        }

        .info-item:last-child {
            border-bottom: none;
        }

        .info-item:hover {
            padding-left: 8px;
        }

        .info-item a {
            color: var(--text-dark);
            font-size: 13.5px;
            line-height: 1.5;
            display: block;
            transition: var(--transition);
        }

        .info-item a:hover {
            color: var(--primary);
        }

        .info-item .date {
            display: inline-block;
            font-size: 11px;
            color: var(--text-light);
            margin-top: 4px;
            background: var(--light-gray);
            padding: 2px 8px;
            border-radius: 3px;
        }

        .info-item .new-tag {
            display: inline-block;
            background: var(--secondary);
            color: var(--white);
            padding: 1px 6px;
            border-radius: 3px;
            font-size: 9px;
            font-weight: 700;
            text-transform: uppercase;
            margin-left: 5px;
            animation: blink 1.5s infinite;
            vertical-align: middle;
        }

        /* ==================== STATS COUNTER ==================== */
        .stats-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 50%;
        }

        .stats-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 50%;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .stat-item {
            text-align: center;
            color: var(--white);
        }

        .stat-icon {
            font-size: 40px;
            color: var(--accent-light);
            margin-bottom: 15px;
        }

        .stat-number {
            font-family: 'Poppins', sans-serif;
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 15px;
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* ==================== EVENTS & GALLERY ==================== */
        .events-gallery-section {
            padding: 70px 0;
            background: var(--light-gray);
        }

        .eg-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .events-panel, .gallery-panel {
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .panel-header {
            padding: 18px 25px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid var(--medium-gray);
        }

        .panel-header h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .panel-body {
            padding: 20px 25px;
        }

        .event-item {
            display: flex;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            transition: var(--transition);
        }

        .event-item:last-child {
            border-bottom: none;
        }

        .event-item:hover {
            padding-left: 5px;
        }

        .event-date-box {
            min-width: 60px;
            height: 65px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: var(--white);
            border-radius: 8px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .event-date-box .day {
            font-size: 22px;
            font-weight: 800;
            font-family: 'Poppins', sans-serif;
            line-height: 1;
        }

        .event-date-box .month {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.9;
        }

        .event-info h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 5px;
            line-height: 1.4;
        }

        .event-info p {
            font-size: 12px;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }

        .gallery-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            height: 120px;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .gallery-item::after {
            content: '\f00e';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: var(--white);
            font-size: 22px;
            opacity: 0;
            transition: var(--transition);
            z-index: 2;
        }

        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 35, 126, 0.6);
            opacity: 0;
            transition: var(--transition);
            z-index: 1;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item:hover::before,
        .gallery-item:hover::after {
            opacity: 1;
        }

        /* ==================== FOOTER ==================== */
        .footer {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #0d1f3c 100%);
            color: var(--white);
            padding-top: 60px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-col h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
            display: inline-block;
        }

        .footer-about p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            gap: 10px;
        }

        .footer-social a {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            font-size: 14px;
        }

        .footer-social a:hover {
            background: var(--accent);
            border-color: var(--accent);
            transform: translateY(-3px);
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 13.5px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-col ul li a::before {
            content: '›';
            color: var(--accent);
            font-weight: 700;
            font-size: 16px;
        }

        .footer-col ul li a:hover {
            color: var(--accent-light);
            padding-left: 5px;
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 13.5px;
        }

        .footer-contact li i {
            color: var(--accent);
            margin-top: 3px;
            min-width: 16px;
        }

        .footer-bottom {
            padding: 20px 0;
            text-align: center;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 13px;
        }

        .footer-bottom a {
            color: var(--accent-light);
            transition: var(--transition);
        }

        .footer-bottom a:hover {
            color: var(--accent);
        }

        /* ==================== BACK TO TOP ==================== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 48px;
            height: 48px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 50%;
            font-size: 18px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            box-shadow: 0 4px 15px rgba(26, 35, 126, 0.4);
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }

        /* ==================== RESPONSIVE - TABLET ==================== */
        @media (max-width: 1200px) {
            .nav-menu > li > a {
                padding: 15px 11px;
                font-size: 12.5px;
            }

            .mega-menu {
                width: 750px;
            }

            .quick-access-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 992px) {
            /* Top bar */
            .top-bar-left {
                display: none;
            }

            .top-bar .container {
                justify-content: center;
            }

            /* Header */
            .header-main .container {
                flex-wrap: wrap;
                gap: 15px;
                justify-content: center;
                text-align: center;
            }

            .logo-section {
                justify-content: center;
            }

            .header-right {
                width: 100%;
                justify-content: center;
                flex-wrap: wrap;
            }

            .header-search input {
                width: 220px;
            }

            /* MOBILE NAV */
            .mobile-toggle {
                display: block;
            }

            .mobile-close {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                left: -320px;
                width: 310px;
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                align-items: stretch;
                overflow-y: auto;
                transition: left 0.4s ease;
                z-index: 1001;
                padding-top: 65px;
                box-shadow: 5px 0 30px rgba(0, 0, 0, 0.3);
            }

            .nav-menu.open {
                left: 0;
            }

            .nav-menu > li > a {
                color: var(--text-dark);
                padding: 14px 20px;
                border-bottom: 1px solid var(--medium-gray);
                font-size: 14px;
            }

            .nav-menu > li > a::after {
                display: none;
            }

            .nav-menu > li:hover > a,
            .nav-menu > li.active > a {
                background: rgba(26, 35, 126, 0.06);
                color: var(--primary);
            }

            .nav-menu > li > a .dropdown-icon {
                margin-left: auto;
                font-size: 12px;
            }

            /* Mobile Dropdowns */
            .dropdown-menu,
            .mega-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border-top: none;
                border-radius: 0;
                display: none;
                min-width: 100%;
                width: 100% !important;
                background: var(--light-gray);
                padding: 0;
            }

            .dropdown-menu.open,
            .mega-menu.open {
                display: block;
            }

            .dropdown-menu li a {
                padding-left: 35px;
                font-size: 13px;
            }

            .sub-dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                display: none;
                min-width: 100%;
                box-shadow: none;
                border-top: none;
            }

            .sub-dropdown.open {
                display: block;
            }

            .sub-dropdown li a {
                padding-left: 55px !important;
            }

            .mega-menu-grid {
                grid-template-columns: 1fr;
                gap: 10px;
                padding: 15px 20px;
            }

            .mega-menu-col h4 {
                font-size: 14px;
                margin-bottom: 8px;
            }

            /* Hero */
            .hero-slider {
                height: 420px;
            }

            .slide-content h2 {
                font-size: 34px;
            }

            .slide-content p {
                font-size: 15px;
            }

            .slider-arrow {
                width: 40px;
                height: 40px;
                font-size: 14px;
            }

            .slider-arrow.prev { left: 15px; }
            .slider-arrow.next { right: 15px; }

            /* Quick Access */
            .quick-access-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            /* Info Grid */
            .info-grid {
                grid-template-columns: 1fr;
            }

            /* Stats */
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px 20px;
            }

            /* Events Gallery */
            .eg-grid {
                grid-template-columns: 1fr;
            }

            /* Footer */
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* ==================== RESPONSIVE - MOBILE ==================== */
        @media (max-width: 576px) {
            .top-bar {
                font-size: 11px;
            }

            .top-bar-right a {
                padding: 2px 6px;
                font-size: 10px;
            }

            .social-top {
                display: none;
            }

            .top-bar-right .font-size-controls {
                display: none;
            }

            /* Header */
            .logo-img {
                width: 55px;
                height: 55px;
                font-size: 20px;
            }

            .logo-text h1 {
                font-size: 18px;
            }

            .logo-text .hindi-name {
                font-size: 14px;
            }

            .logo-text .tagline {
                font-size: 10px;
                letter-spacing: 1px;
            }

            .header-search {
                width: 100%;
            }

            .header-search input {
                width: 100%;
            }

            .header-search input:focus {
                width: 100%;
            }

            .header-actions {
                width: 100%;
                justify-content: center;
            }

            .header-actions .btn {
                padding: 8px 16px;
                font-size: 12px;
                flex: 1;
                text-align: center;
            }

            /* Ticker */
            .ticker-label {
                padding: 8px 12px;
                font-size: 11px;
            }

            /* Hero */
            .hero-slider {
                height: 350px;
            }

            .slide-content .subtitle {
                font-size: 12px;
                letter-spacing: 2px;
            }

            .slide-content h2 {
                font-size: 24px;
            }

            .slide-content p {
                font-size: 13px;
                margin-bottom: 25px;
            }

            .slide-buttons .btn-slide {
                padding: 10px 22px;
                font-size: 12px;
            }

            .slider-arrow {
                width: 36px;
                height: 36px;
                font-size: 12px;
            }

            /* Quick Access */
            .quick-access {
                margin-top: -40px;
            }

            .quick-access-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .quick-card {
                padding: 20px 10px;
            }

            .quick-card-icon {
                width: 50px;
                height: 50px;
                font-size: 22px;
            }

            .quick-card h4 {
                font-size: 12px;
            }

            /* Sections */
            .info-section {
                padding: 60px 0 40px;
            }

            .section-header h2 {
                font-size: 26px;
            }

            /* Stats */
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px 15px;
            }

            .stat-number {
                font-size: 32px;
            }

            .stat-label {
                font-size: 12px;
                letter-spacing: 1px;
            }

            /* Gallery */
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            /* Footer */
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 42px;
                height: 42px;
            }
        }

        @media (max-width: 380px) {
            .hero-slider {
                height: 300px;
            }

            .slide-content h2 {
                font-size: 20px;
            }

            .slide-buttons {
                flex-direction: column;
                align-items: center;
            }

            .quick-access-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
    