/* Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-10px, -10px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(10px, 10px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease 0.3s forwards;
    opacity: 0;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease 0.6s forwards;
    opacity: 0;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 1s ease 0.9s forwards;
    opacity: 0;
}

.animate-fade-up {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.animate-left {
    animation: fadeInLeft 1s ease forwards;
    opacity: 0;
}

.animate-right {
    animation: fadeInRight 1s ease forwards;
    opacity: 0;
}

.animate-card {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.animate-card:nth-child(1) {
    animation-delay: 0.2s;
}

.animate-card:nth-child(2) {
    animation-delay: 0.4s;
}

.animate-card:nth-child(3) {
    animation-delay: 0.6s;
}

.pulse {
    animation: pulse 2s infinite;
}