.header_section {
    background-color: #fff;
    box-shadow: 0px 0px 10px 0px #848484;
    position: sticky;
    top: 0px;
    z-index: 999;
}

.header_section .navbar {
    padding: 0px 0px;
}

.header_section .navbar .logo-img {
    height: 60px;
    width: auto;
}

.header_section .navbar .nav-link {
    font-weight: 500;
    font-size: 15px;
    color: #202020;
    position: relative;
    margin: 0px 7px;
    /* for ::after positioning */
    padding-bottom: 4px;
    /* space for underline */
    line-height: 2.1;
    /* tighter line height for better alignment */
}

.header_section .navbar .nav-link.active {
    font-weight: 700 !important;
    position: relative;
}

.header_section .navbar .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 4px;
    background-color: #629052;
    border-radius: 2px;
}

.header_section .navbar .navbar-toggler {
    border: 0px;
}

.header_section .navbar .navbar-toggler:focus {
    box-shadow: none;
}

/* Responsive styles */
@media (min-width: 0px) and (max-width: 991px) {
    .header_section .navbar {
        padding: 7px 0px;
    }

    .header_section .navbar .nav-link {
        font-size: 14px;
    }

    .header_section .navbar .logo-img {
        height: 45px;
    }

    /* .header_section .navbar .nav-link.active::after {
        width:0px;
    } */

    /* Hide underline when mobile menu is open */
    /* .navbar-collapse.show .nav-link.active::after {
        content: none;
    } */
    .header_section .navbar .nav-link.active::after {
        left: 0%;
        transform: translateX(0%);
    }
}