    /* /assets/css/components/navbar.css - Navigation Component */
    
    .navbar {
        background: rgba(30, 41, 59, 0.95);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        top: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar.scrolled {
        background: rgba(30, 41, 59, 0.98);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        top: 0;
    }
    
    .navbar-brand {
        font-weight: 700;
        font-size: 1.5rem;
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
    }
    
    .navbar-brand:hover {
        color: white;
    }
    
   .navbar-brand {
        font-weight: 700;
        font-size: 1.5rem;
        color: white !important;
        text-decoration: none;
        display: flex;
        align-items: center;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    .navbar-brand:hover {
        color: white !important;
    }
    
    .navbar-brand img {
        height: 40px;
        width: auto;
        margin-right: 0.5rem;
        filter: invert(1) brightness(2);
    }
    
    .navbar-brand .fw-bold {
        color: white !important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }

    .navbar-nav .nav-link {
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
        padding: 0.75rem 1rem;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .navbar-nav .nav-link:hover {
        color: white;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
    }
    
    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--primary-color);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }
    
    .navbar-nav .nav-link:hover::after {
        width: 80%;
    }
    
    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
    }
    
    .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, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    .navbar-collapse {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 1rem;
        padding-top: 1rem;
    }
    
    @media (min-width: 992px) {
        .navbar-collapse {
            border-top: none;
            margin-top: 0;
            padding-top: 0;
        }
    }
    
    /* Language Switcher in Navbar */
    .navbar .language-switcher .dropdown-toggle {
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }
    
    .navbar .language-switcher .dropdown-toggle:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
    }
    
    .navbar .language-switcher .dropdown-menu {
        background: rgba(30, 41, 59, 0.95);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        min-width: 250px;
    }
    
    .navbar .language-switcher .dropdown-item {
        color: rgba(255, 255, 255, 0.9);
        padding: 0.75rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar .language-switcher .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }
    
    .navbar .language-switcher .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .navbar .language-switcher .flag {
        margin-right: 0.5rem;
        font-size: 1.1rem;
    }
    
    /* CTA Button in Navbar */
    .navbar .btn-primary-custom {
        background: linear-gradient(135deg, var(--success-color), #059669);
        border: none;
        padding: 0.75rem 1.5rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.9rem;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .navbar .btn-primary-custom:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
        color: white;
    }
    
    /* Mobile Navbar Styles */
    @media (max-width: 991px) {
        .navbar-nav .nav-link {
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 0;
        }
        
        .navbar-nav .nav-link:hover {
            border-radius: 0;
        }
        
        .navbar .btn-primary-custom {
            margin-top: 1rem;
            display: block;
            text-align: center;
        }
        
        .navbar .language-switcher {
            margin-top: 1rem;
        }
    }