
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }

        /* ============ Top Bar ============ */
        .top-bar {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: #fff;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 2px solid #FF3300;
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .contact-info {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .contact-info a,
        .contact-info span {
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .contact-info a:hover {
            color: #ffd700;
            transform: translateY(-2px);
        }

        .top-bar-right {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .top-bar-btn {
            background: #FF3300;
            color: #fff;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid #FF3300;
        }

        .top-bar-btn:hover {
            background: #fff;
            color: #FF3300;
            transform: scale(1.05);
        }

        /* ============ Header with Logo ============ */
        .header-section {
            background: #fff;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container img {
            max-height: 60px;
            transition: transform 0.3s ease;
        }

        .logo-container img:hover {
            transform: scale(1.05);
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .social-icons li a {
            display: inline-block;
            transition: all 0.3s ease;
        }

        .social-icons li a img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .social-icons li a:hover img {
            transform: translateY(-5px) rotate(360deg);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        /* ============ Main Navigation ============ */
        .main-navbar {
            background: white;
            padding: 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar-nav {
            width: 100%;
            justify-content: center;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: #1e3c72 !important;
            font-weight: 600;
            padding: 1.2rem 1.5rem !important;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        /* Hover Effect - Underline Animation */
        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: white;
            transition: width 0.4s ease;
        }

        .nav-link:hover::before {
            width: 100%;
        }

        .nav-link:hover {
    
            
            
            color: #1e3c72 !important;
            font-weight: bold;
            transform: translateY(-2px);
        }

        /* Active State */
        .nav-link.active {
            background: rgba(255,255,255,0.15);
        }

        /* ============ Dropdown Menus - HOVER ENABLED ============ */
        .dropdown-menu {
            border: none;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            border-radius: 12px;
            padding: 1.5rem;
            min-width: 320px;
            margin-top: 0;
            background: #fff;
            display: none;
            opacity: 0;
            transition: opacity 0.3s ease, transform 0.3s ease;
            transform: translateY(-10px);
        }

        /* Show dropdown on hover */
        .nav-item:hover > .dropdown-menu {
            display: block;
            opacity: 1;
            transform: translateY(0);
            animation: fadeInDown 0.4s ease;
        }

        /* Keep dropdown open when hovering over it */
        .dropdown-menu:hover {
            display: block;
            opacity: 1;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }









/* ============ Ultra Wide Mega Menu - FIXED POSITIONING ============ */
.mega-menu-ultra-wide {
    min-width: 1400px !important;
    max-width: 1500px;
    padding: 2rem 2.5rem !important;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.25);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: none;
    margin-top: 0.5rem;
    top: 53px;
    /* FIX: Position in center */
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
}

/* Ensure parent dropdown has proper positioning */
.nav-item.dropdown {
    position: static !important;
}

/* For regular dropdowns (not mega menus) */
.dropdown-menu:not(.mega-menu) {
    position: absolute !important;
    left: 250px !important;
    right: auto !important;
}

/* Auto Direction for last items - Regular Dropdowns Only */
.nav-item:nth-last-child(-n+2) .dropdown-menu:not(.mega-menu) {
    right: 328px !important;
    left: auto !important;
 
}
        .menu-section:hover {
            box-shadow: 0 5px 20px rgba(102, 126, 234, 0.15);
            transform: translateY(-3px);
        }

        .menu-section:last-child {
            margin-bottom: 0;
        }

        /* Section Titles */
        .section-title {
            color: #1e3c72;
            font-weight: 700;
            font-size: 1.05rem;
            margin-bottom: 1rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid #e9ecef;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .section-title i {
            color: #1e3c72;
            font-size: 1.1rem;
        }

        /* Dropdown Items - More Spacious */
        .mega-menu-ultra-wide .dropdown-item,
        .dropdown-menu .dropdown-item {
            padding:-0.25rem;
            margin-bottom: 0.4rem;
            border-radius: 8px;
            font-size: 0.95rem;
            color: #495057;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .mega-menu-ultra-wide .dropdown-item i,
        .dropdown-menu .dropdown-item i {
            color: #1e3c72;
            font-size: 1rem;
            min-width: 20px;
            transition: all 0.3s ease;
        }

        .mega-menu-ultra-wide .dropdown-item:hover,
        .dropdown-menu .dropdown-item:hover {
            background:#2a5298;
            color: #fff;
            transform: translateX(8px);
            border: 1px solid #2a5298;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

        .mega-menu-ultra-wide .dropdown-item:hover i,
        .dropdown-menu .dropdown-item:hover i {
            color: white;
            transform: scale(1.2);
        }

        /* Regular Dropdown Menu Styling */
        .dropdown-menu {
            min-width: 350px;
        }

        .dropdown-header {
            color: #1e3c72;
            font-weight: bold;
            font-size: 1.2rem;
            padding: 0.5rem 1rem 1rem 1rem;
            margin-bottom: 1rem;
            border-bottom: 3px solid #1e3c72;
            text-align: center;
        }

        .dropdown-divider {
            margin: 1rem 0;
            border-color: #e9ecef;
        }

        /* CTA Section */
        .cta-section {
            margin-top: 2rem;
        }

        .cta-section .alert {
            background:#1e3c72;
            color: #fff;
            border: none;
            border-radius: 12px;
            padding: 1.5rem;
        }

        .cta-section .alert-heading {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 0.75rem;
        }

        .cta-section .btn-primary {
            background: #fff;
            color: #667eea;
            border: 2px solid #fff;
            font-weight: 600;
            padding: 0.6rem 1rem;
            transition: all 0.3s ease;
        }

        .cta-section .btn-primary:hover {
            background: white;
            color: #333;
            transform: scale(1.05);
        }

        /* Row Gap */
        .mega-menu-ultra-wide .row {
            row-gap: 0;
        }

        /* Column Padding */
        .mega-menu-ultra-wide [class*="col-"] {
            padding-left: 1rem;
            padding-right: 1rem;
        }

        /* Scrollbar for Overflow */
        .mega-menu-ultra-wide {
            max-height: 650px;
            overflow-y: auto;
        }

        .mega-menu-ultra-wide::-webkit-scrollbar {
            width: 8px;
        }

        .mega-menu-ultra-wide::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .mega-menu-ultra-wide::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 10px;
        }

        .mega-menu-ultra-wide::-webkit-scrollbar-thumb:hover {
            background: #FF3300;
        }

        /* ============ Responsive Design ============ */
        @media (max-width: 1600px) {
            .mega-menu-ultra-wide {
                min-width: 1200px !important;
                padding: 1.5rem 2rem !important;
            }
        }

        @media (max-width: 1399px) {
            .mega-menu-ultra-wide {
                min-width: 1000px !important;
            }
            
            .menu-section {
                padding: 1.25rem;
            }
        }

        @media (max-width: 1199px) {
            .mega-menu-ultra-wide {
                min-width: 95vw !important;
                max-width: 95vw;
            }
        }

        @media (max-width: 991px) {
            .top-bar-content {
                justify-content: center;
                text-align: center;
            }

            .contact-info {
                flex-direction: column;
                gap: 0.5rem;
                margin-bottom: 0.5rem;
            }

            .header-content {
                flex-direction: column;
                gap: 1rem;
            }

            .social-icons {
                justify-content: center;
            }

            .mega-menu-ultra-wide {
                min-width: 100% !important;
                max-height: 75vh;
                padding: 1.5rem !important;
            }
            
            .mega-menu-ultra-wide [class*="col-"] {
                margin-bottom: 1rem;
            }
            
            .menu-section {
                margin-bottom: 1rem;
            }

            .nav-link {
                padding: 1rem !important;
            }

            /* Disable hover on mobile, use click */
            .nav-item:hover > .dropdown-menu {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .top-bar {
                font-size: 0.75rem;
            }

            .social-icons li a img {
                width: 32px;
                height: 32px;
            }

            .logo-container img {
                max-height: 50px;
            }

            .mega-menu-ultra-wide {
                padding: 1rem !important;
            }
            
            .menu-section {
                padding: 1rem;
            }
            
            .mega-menu-ultra-wide .dropdown-item,
            .dropdown-menu .dropdown-item {
                padding: 0.6rem 0.8rem;
                font-size: 0.9rem;
            }
            
            .section-title {
                font-size: 0.95rem;
            }

            .nav-link {
                font-size: 0.85rem;
            }

            .dropdown-header {
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .mega-menu-header h5 {
                font-size: 1.1rem;
            }
            
            .cta-section {
                margin-top: 1rem;
            }
        }

        /* ============ Additional Enhancements ============ */
        .navbar-toggler {
            border: 2px solid #fff;
            padding: 0.5rem 0.75rem;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.5);
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* Dropdown Arrow Indicator */
        .dropdown-toggle::after {
            transition: transform 0.3s ease;
        }

        .nav-item:hover .dropdown-toggle::after {
            transform: rotate(180deg);
        }

        /* Animation for Mega Menu */
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
