.nav-links-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.nav-links-container .nav-link {
    color: #fff !important;
    font-weight: 600; /* Increased weight for better visibility */
    font-size: 1rem;
    padding: 8px 16px;
    transition: all 0.3s ease;
    border-radius: 8px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-links-container .nav-link i {
    font-weight: 700 !important;
    -webkit-text-stroke: 0.5px; /* Makes icons look bolder */
}

.nav-links-container .nav-link:hover {
    transform: scale(1.05);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.1); /* Subtle white overlay on hover */
}

.menu-btn {
    margin-left: auto; /* Push to the right on mobile */
    color: #fff;
    cursor: pointer;
    font-size: 1.8rem; /* Slightly larger */
    padding: 5px;
    transition: color 0.3s;
    font-weight: bold !important;
}

.menu-btn:hover {
    color: #16a34a;
}

.menu-btn i {
    -webkit-text-stroke: 1px;
}
