    /* Navbar Styles */
        .navbar {
            background-color: #003366;
            color: white;
            padding: 0.8rem 1rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        .logo{
            width: 200px;
            height:90px;
            padding-bottom: 20px;
            align-items: center;
        }
        .navbar-brand {
            margin-right: 1rem;
        }

        .navbar-nav .nav-link {
            color: white;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: #1d488c;
            transform: translateY(-2px);
        }

        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .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%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* Mobile Sidebar */
        .mobile-sidebar {
            position: fixed;
            top: 0;
            left: -300px;
            width: 280px;
            height: 100%;
            background-color: #fff;
            z-index: 1050;
            box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
            overflow-y: auto;
            transition: left 0.3s ease;
        }

        .mobile-sidebar.show {
            left: 0;
        }

        .mobile-sidebar .close-btn {
            background: none;
            border: none;
            font-size: 1.8rem;
            position: absolute;
            top: 15px;
            right: 20px;
            color: #333;
            cursor: pointer;
        }

        .mobile-sidebar ul {
            padding-top: 3rem;
        }

        .mobile-sidebar ul li {
            margin-bottom: 1rem;
        }

        .mobile-sidebar ul li a {
            color: #333;
            font-weight: 500;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: block;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }

        .mobile-sidebar ul li a:hover {
            background-color: #f8f9fa;
            color: #003366;
            transform: translateX(5px);
        }

        /* Overlay for sidebar */
        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1040;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .sidebar-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        /* Mega Menu */
        .mega-dropdown .dropdown-menu {
            width: 100%;
            border: none;
            border-radius: 0;
            margin-top: 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .mega-menu .row {
            padding: 1rem;
        }

        .mega-menu h6 {
            color: #003366;
            font-weight: 600;
            border-bottom: 2px solid #003366;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }

        .mega-menu ul li a {
            color: #555;
            padding: 0.3rem 0;
            display: block;
            transition: all 0.2s;
        }

        .mega-menu ul li a:hover {
            color: #003366;
            padding-left: 5px;
        }

        /* Search Form */
        .search-form {
            position: relative;
        }

        .search-form .form-control {
            border-radius: 20px;
            padding: 0.375rem 1.5rem 0.375rem 1rem;
            border: 1px solid #ced4da;
        }

        .search-form .btn {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #6c757d;
        }

        /* Language Selector */
        .language-selector .dropdown-toggle {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.5);
            color: white;
            border-radius: 20px;
            padding: 0.375rem 0.75rem;
        }

        .language-selector .dropdown-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .language-selector .dropdown-menu {
            min-width: 200px;
        }

        /* Modal Styles */
        .modal-header {
            background-color: #003366;
            color: white;
        }

        .modal-title {
            font-weight: 600;
        }

        .modal-body {
            padding: 1.5rem;
        }

        .category-item {
            display: flex;
            align-items: center;
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
        }

        .category-item img {
            margin-right: 1rem;
            object-fit: cover;
        }

        .category-item:hover {
            background-color: #f8f9fa;
        }

        /* Responsive Adjustments */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: #003366;
                padding: 1rem;
                margin-top: 0.5rem;
                border-radius: 0.25rem;
            }
        }
