.navbar {
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.195);
    background: #fff;
    height: 90px;
    position: fixed !important;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: height 0.3s ease;
    /* Add transition for smooth height change */
}

.navbar-brand img {
    width: 180px;
}


.navbar .navbar-nav .nav-link {
    color: #000;
    transition: all .3s ease-in;
}

.navbar .navbar-nav .nav-link:hover {
    color: #42aa949f;
}

.nav-item {
    margin-left: 20px;
}

.navbar .navbar-nav .nav-link.active {
    color: #42aa94;
    padding-bottom: 5px;
    border-bottom: 2px solid #42aa94;
}

.hamburger-icon i {
    color: #42aa93f0;
}

/* Style for the close icon */
.close-icon i {
    color: #42aa93f0;
    /* Set the desired color for the close icon (e.g., red) */
}

.navbar-toggler {
    border: none;
    outline: 0;
}

.hamburger-icon,
.close-icon {
    border: none;
    outline: 0;
}

.custom-toggler:focus,
.custom-toggler:active {
    outline: none;
    border: 0;
    box-shadow: none;
}

/* desktop */
@media screen and (min-width: 1024px) {
    .navbar .collapse .navbar-nav {
        position: absolute;
        right: 110px;
    }
}

/* tablet */
@media screen and (min-width: 561px)and (max-width: 768px) {
    .navbar-collapse {
        background-color: #fff;
        text-align: center;
        transition: transform 0.3s ease;
        margin-top: 10px;
        width: 100% !important;
    }

    .navbar .navbar-nav .nav-link.active {
        display: inline-block;
    }

    .navbar-brand img {
        width: 160px !important;
    }
}



/* Mobile menu styles */
@media (max-width: 560px) {
    .navbar {
        height: 65px;
    }

    .navbar-collapse {
        background-color: #fff;
        text-align: center;
        transition: transform 0.3s ease;
        margin-top: 10px;
    }

    .navbar-brand img {
        width: 100px !important;
    }

    .navbar .navbar-nav .nav-link.active {
        display: inline-block;
    }
}