/* ===== ACTIVE NAVIGATION STYLES ===== */

.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

/* Mobile menu active state */
@media (max-width: 768px) {
    .nav-link.active {
        background: rgba(56, 239, 125, 0.1);
        border-left: 3px solid var(--primary-color);
    }

    .nav-link.active::after {
        display: none;
    }
}