/* ----------header start -------- */
.website-header-bg {
        background: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.home .website-header-bg {
        background: transparent !important;
    box-shadow: none;
}

.nav-container {
    padding: 0 73px;
}

.website-logo {
    width: auto !important;
    display: flex;
    align-items: center;
}

.website-logo img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.website-nav-menu li a {
    font-size: 16px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    transition: all .3s ease-in-out;

}

.home .website-nav-menu li a i {
    color: rgb(255 255 255);
}

.website-nav-menu li a i {

    color: rgb(0, 0, 0);


}


.home .website-nav-menu li a {
    font-size: 16px;
    font-weight: 600;
    color: white;
    transition: all .3s ease-in-out;

}

.home .website-nav-menu .dropdown-item {
    
    color: #000000 !important;
}



.website-nav-menu li {
    color: white;
    padding-right: 10px;
}

.website-nav-menu li:hover {
    background-color: #084a7b;
    color: white;
    border-radius: 8px;
}

.website-nav-menu li a:hover {
    color: white;
}
.website-nav-menu li a:hover i{
    color: white;
}

.website-nav-head {
    align-items: center;
}

.nav-dropdown li {
    padding-right: 0;

}

.nav-dropdown li a {
    color: black;
}




.nav-dropdown li a:hover {
    background: #003764;
    color: white !important;
}

.nav-btn button {
    padding: 5px 36px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 600;
    transition: all .4s ease-in-out;
    /* border: 2px solid white; */
    background-color: #002350;
    color: white;

}

.nav-btn button:hover {
    background: #d67b03;
    color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}


/* ***** navbar scroll animation***** */
/* default transparent */
.scroll-active-holder {
    background: transparent;
    transition: 0.3s ease;
}

/* default text white */
.scroll-active-holder * {
    color: white;
    transition: 0.3s;
}

/* on scroll */
.scroll-active-holder.scrolled {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* on scroll text black */
.scroll-active-holder.scrolled * {
    color: #000000 !important;
}

.scroll-active-holder.scrolled li:hover a,
.scroll-active-holder.scrolled li:hover a i {
    color: #ffffff !important;
    /* scroll hover color */
}

.scroll-active-holder.scrolled .nav-dropdown .dropdown-item {
    color: #000 !important;
}

.scroll-active-holder.scrolled .nav-dropdown .dropdown-item:hover {
    background-color: #084a7b;
    color: #ffffff !important;
}



/* ✅ SCROLLED Login Button style */
.scroll-active-holder.scrolled .nav-btn button {
    background: #002350;
    /* background-color: linear-gradient(45deg, #035068, #0256a5); */
    /* border-color: black; */
    color: white;
}

.scroll-active-holder.scrolled .nav-btn button:hover {
    background: #ff6b00;
    /* border-color: black; */
    color: white;
}


/* header responsive start  */

@media (min-width: 1026px) and (max-width: 1440px) {
    .website-nav-menu li a {
        font-size: 12px;
    }
}

@media (max-width: 1024px) {
    .website-nav-menu li a {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .website-nav-menu li a {
        font-size: 14px;
    }
}



/* ----------header start -------- */