/****** Nav-bar ****** */
.nav-bar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    padding-left: 30px;
    padding-right: 40px;
    display: flex;
    align-items: center;
    gap:200px;
    transition: top 0.3s ease-in-out;
    z-index: 99
}
.nav-bar-hidden{
    top: -100px;
}
.logo-area img{
    width: 50px!important;
    height: 50px;
    border-radius: 5px;
}
.logo{
   /* position: absolute;*/
    
}
.logo-area a{
    font-size: 20px;
    font-weight: bold;
    color: #F68B1D;
    text-decoration: none;
}
.right-content{
    display: flex;
    flex-direction: row;
    gap: 33px;
}
.right-content a{
    position: relative;
    display: flex;
    gap: 6px;
    align-items: center;
    color: #1B263B;
    font-size: 13px;
    font-family: arial;
    font-weight: bolder;
    text-transform: uppercase; 
}
.right-content a .active{

}
.right-content a::after{
    position: absolute!important;
    content: '';
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #EB7A1A, #000);
    bottom: -4px;

    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}
.right-content a:hover{
    color: #EB7A1A;
}
.right-content a:hover::after{
    transform: scaleX(1);
    transform-origin: left;
}

/* ✅ active link */
.right-content a.active{
    color: #EB7A1A;
}

.right-content a.active::after{
    transform: scaleX(1);
    transform-origin: left;
}


.login100-signup{
    padding: 10px;
    /*background: #1B263B;*/
    border-radius: 5px;
    color: #fff;
    display: flex;
    gap: 15px;
}
.login100-signup a{
    color: #fff;
    /*font-family: serif;*/
}


.navbar{
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 65px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    padding-left: 15px;
    padding-right: 15px;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    transition: top 0.3s ease-in-out;
}
.navbar-hidden{
    top: -100px;
}
.navbar .icon-area button{
    background: transparent;
    outline: none;
    border:none;
    font-size: 30px;
    color: #1B263B;
}
.mobile-logo img{
    width: 45px;
    height: 45px;
}
.action-area a{
    font-size: 16px;
    /*color: #1E5F67;*/
    color: #C04D3E;
    font-family: sans-serif;
    display: flex;
    gap:5px;
    align-items: center;
    font-weight: bold;
}
.action-area a:hover{
    color: #E85C47;
}
#mobile{
    display: none;
}

@media(max-width: 992px){
    #desktop{
        display: none;
    }
    #mobile{
        display: flex;
    }
}