.navbar {
    background-color:white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

 .navbar-text{
    color: black;
 }

 .navbar-text.active {
     
     text-decoration: underline 4px #B00000;
     text-underline-offset: 4px;
 }
 .navbar-text:hover {
     text-decoration: underline 4px #B00000;
 
 }

 .desktop-menu{
     margin-left: 270px;
 }
 .nav-link {
     color: black;
     font-weight: bold;
   
 }

 .lang-btn{
    border: none;
    outline: none;
    color :#B00000;
    background-color: white;
 }
 .lang-btn:hover, .lang-btn:focus {

     color:white ;
     background-color: #B00000;
 }

 .nav-link:hover {
    text-decoration: underline 4px #B00000;
        color: black;
 }
/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 200px;
    height: 100%;
    background: #fff;
    border-radius: 0 0 0 20px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    padding: 50px 25px;
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    transform: translateX(0);
}


.mobile-drawer.show {
    right: 0;
}


.close-btn {
    background: none;
    border: none;
    font-size: 36px;
    align-self: flex-end;
    cursor: pointer;
    color: #B00000;
    transition: transform 0.3s, color 0.3s;
}

.close-btn:hover {
    transform: rotate(90deg) scale(1.2);
    color: #ff4d4d;
}


.mobile-drawer ul {
    list-style: none;
    padding: 0;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-drawer ul li a {
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

.mobile-drawer ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: #B00000;
    transition: width 0.3s;
    border-radius: 2px;
}

.mobile-drawer ul li a:hover {
    color: #B00000;
}

.mobile-drawer ul li a:hover::after {
    width: 100%;
}


.mobile-drawer .account-info {
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-drawer .account-info div,
.mobile-drawer .account-info p {
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}


.drawer-open-icon {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.3s;
    z-index: 10000;
}

.drawer-open-icon:hover {
    transform: rotate(90deg) scale(1.1);
    color: #B00000;
}
