.header-top{
    background: var(--theme);
    padding: 6px 0px;}
.header-top a {
    color: var(--black);
}
.header-top a:hover{
    color: var(--white);
}
.navbar {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 999;
    margin-bottom: -5px;
}
.nav-item .nav-link{
 font-size: 18px;
 font-weight: 600;
}
.navbar .nav-item .nav-link{
    color: var(--black);
}
.navigations{
    width: 100%;
}
button.navbar-toggler {
    background: var(--white);
}
.offcanvas{
    background: var(--black);
}
.offcanvas .offcanvas-header{
    border-bottom: 1px solid var(--theme);
}
.offcanvas .offcanvas-header .btn-close{
    background: none;
}
.offcanvas .offcanvas-header .btn-close span{
    color: var(--white);
    font-size: 32px;
}
.offcanvas .offcanvas-header .btn-close{
      border: 2px solid var(--white);
    opacity: 1 !important;
    padding: 0 15px 32px 15px;
}
.offcanvas .offcanvas-logo{
    width: 140px;
}
.offcanvas .offcanvas-body{
    padding: 0;
}

.offcanvas .offcanvas-body ul li>a{
    color: var(--white);
   padding: 5px 10px;
    width: 100%;
    display: block;
}

@media screen and (max-width:992px) {
    .nav-handler{
        justify-content: space-between;
    }
    .navigations{
        width: 50px;
    }
    
}


.navbar-nav .nav-link {
    position: relative;
    color: #000; /* Normal text color */
    transition: all 0.3s ease;
}

.navbar-nav .nav-link.active {
    color: #d4af37; /* Gold text (optional) */
}

.navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #d4af37; /* Gold underline */
    border-radius: 2px;
}


.offcanvas-body a.active {
    color: #d4af37;
    position: relative;
}

.offcanvas-body a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #d4af37;
}
