
/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease 0.3s forwards;
    opacity: 0;
}

.animate-slide-up {
    animation: slideUp 1s ease forwards;
    opacity: 0;
}

.animate-slide-down {
    animation: slideDown 1s ease forwards;
    opacity: 0;
}

.animate-slide-left {
    animation: slideLeft 1s ease forwards;
    opacity: 0;
}

.animate-slide-right {
    animation: slideRight 1s ease forwards;
    opacity: 0;
}

.animate-card {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.animate-card:nth-child(1) {
    animation-delay: 0.1s;
}

.animate-card:nth-child(2) {
    animation-delay: 0.2s;
}

.animate-card:nth-child(3) {
    animation-delay: 0.3s;
}

.animate-card:nth-child(4) {
    animation-delay: 0.4s;
}

.animate-card:nth-child(5) {
    animation-delay: 0.5s;
}

.animate-card:nth-child(6) {
    animation-delay: 0.6s;
}

.animate-counter {
    animation: fadeIn 1s ease forwards;
    opacity: 0;
}

/* Keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}