/* tabbed navigation css start */
.nav {
    display: flex;
    justify-content: center; /* Ensures tabs are evenly spaced */
    width: 100%; /* Full width to ensure proper space distribution */
    position: relative;
}
.nav-link {
    position: relative;
    color: black; /* Set tab text color */
    font-size: var(--font-text); /* Set tab text size */
    font-weight: 700;
    transition: color 0.3s ease; /* Smooth transition for text color */
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 4px; 
    background-color: transparent;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.nav-link.active 
{
    color:black;
}
.nav-link.active::after {
    background-color: #754F25; /* Underline active tab */
    transform: scaleX(1);
}
.nav-link:not(.active)::after {
    transform: scaleX(0);
}

.nav-item {
    width: 50%; /* Set tab width */
    text-align: center; /* Center tab text */
}
.nav-link:hover {
    color: black; /* Set tab text color on hover */
}

.bottom-border
{
    border-bottom: 1px solid rgba(194, 164, 130, 0.40); /* Light border for separation */
}

/* tabbed  navigation css end */
