
 
    /* Mobile menu styles */
    .navbar-toggler {
        border: none;
        color: white;
        font-size: 1.5rem;
        padding: 0.5rem;
    }
    
    .mobile-menu {
        position: fixed;
        top: 0;
        left: -300px;
        width: 280px;
        height: 100vh;
        background-color: var(--neutral-70);
        z-index: 1100;
        transition: all 0.3s ease;
        padding: 20px;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        overflow-y: auto;
    }
    
    .mobile-menu.show {
        left: 0;
    }
    
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0,0,0,0.5);
        z-index: 1099;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-overlay.show {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-header {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 20px;
    }
    
    .mobile-menu-close {
        background: none;
        border: none;
        color: white;
        font-size: 2rem;
        cursor: pointer;
    }
    
    .mobile-profile-section {
        margin-bottom: 15px;
    }
    
    .mobile-profile-section .profile-img {
        width: 50px;
        height: 50px;
    }
    
    .mobile-divider {
        border-color: rgba(255,255,255,0.1);
        margin: 15px 0;
    }
    
    .mobile-nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-nav-list li {
        margin-bottom: 10px;
    }
    
    .mobile-nav-list a {
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
        padding: 10px;
        border-radius: 5px;
    }
    
    .mobile-nav-list a:hover {
        background-color: rgba(255,255,255,0.1);
    }
    
    .mobile-nav-list i {
        width: 20px;
        text-align: center;
        margin-left: 10px;
    }
    
    .mobile-auth-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
        padding: 0 10px;
    }
    
    .mobile-auth-buttons .btn {
        width: 100%;
    }
    
    /* Adjust navbar items for mobile */
    @media (max-width: 991.98px) {
        .navbar-brand {
            margin-right: auto !important;
        }
        
        .header-search {
            display: none !important;
        }
    }
    
    /* Keep your existing styles */
    .header .navbar {
        background-color: var(--neutral-70);
        padding: 10px 20px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    
   /* .dropdown {
        position: relative;
        padding-left: 118px;
    }*/
    
    .nav-item .nav-link { 
        color: var(--Gray-700);
        text-align: right;
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }
    
    .header .navbar-nav .nav-link.active {
         color: var(--Main, #EB6824);   
      /*  color: #ffffff;*/
    }
    
    .nav-item .active {
        color: var(--Main, #EB6824);    
    }
    
    .profile-img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        object-fit: cover;
    }
    
    .header-search {
        max-width: 500px;
        margin: 0 auto;
    }

    #mobileMenuButton .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");
    }
    
    /* Optional: Remove default border from the button */
    #mobileMenuButton {
        border: none;
    }
    
    /* Optional: Add focus styles */
    #mobileMenuButton:focus {
        outline: none;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
    }

    .create-account{
        display: flex;
        height: 40px;
        padding: 8px 16px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        border-radius: 8px;
        border: 1px solid var(--Main, #EB6824);
        background: var(--Main, #EB6824);
        color: #FFF;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        text-decoration:none;
    }
    .login-header{
        display: flex;
        height: 40px;
        padding: 8px 16px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        border-radius: 8px;
        background: var(--Success-500, #00866B);
        color: #FFF;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        text-decoration:none;
    }