/* Testimonials Carousel Animation */
@keyframes slide-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.animate-slide-left {
    animation: slide-left 20s linear infinite;
}

.animate-slide-left:hover {
    animation-play-state: paused;
}

/* Button Animations */
@keyframes bounce-slow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse-slow {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.animate-bounce-slow {
    animation: bounce-slow 3s infinite;
}

.animate-pulse-slow {
    animation: pulse-slow 2s infinite;
}

/* Navbar Link Animations */
.nav-link {
    position: relative;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #10b981, #34d399);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link:hover {
    transform: translateY(-2px);
    color: #10b981;
}

/* Hover effects */
.fixed.bottom-5:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.fixed.bottom-5:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}
