/* Animations */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-in-out forwards;
}

.animate-from-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: fromLeft 0.8s ease-in-out forwards;
}

.animate-from-right {
    opacity: 0;
    transform: translateX(50px);
    animation: fromRight 0.8s ease-in-out forwards;
}

.animate-from-bottom {
    opacity: 0;
    transform: translateY(30px);
    animation: fromBottom 0.8s ease-in-out forwards;
}

.animate-scale-in {
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 0.8s ease-in-out forwards;
}

/* Delay classes */
.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.delay-5 {
    animation-delay: 1s;
}

.delay-6 {
    animation-delay: 1.2s;
}

.delay-7 {
    animation-delay: 1.4s;
}

.delay-8 {
    animation-delay: 1.6s;
}

.delay-9 {
    animation-delay: 1.8s;
}

.delay-10 {
    animation-delay: 2s;
}

.delay-11 {
    animation-delay: 2.2s;
}

/* Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fromBottom {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
