/* Header nav starts here */
.header {
    background-color: rgba(0, 72, 64, 1);
}

.nav-link {
    color: white;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--green-400);
}

.navbar-brand img {
    width: 40px;
    height: auto;
}

.navbar-toggler-icon {
    background-image: url(../images/home/hamburger-menu-svgrepo-com.svg);
    /* Custom hamburger icon */
}

.navbar-nav {
    flex-wrap: nowrap;
    gap: 2rem;
    /* Adjust the gap between nav items as needed */
    width: 70%;
    margin-left: 30%;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #007bff;
    /* Adjust hover color as needed */
}


@media (max-width: 991.98px) {
    .navbar-nav {
        justify-content: space-between;
        gap: 0;
        width: 100%;
        margin-left: 0%;
    }
}