html {
    scroll-behavior: smooth;
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #6A8D56;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

@keyframes pulse-in {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-pulse-in {
    animation: pulse-in 0.3s ease-out;
}
