/* Animation Styles */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-delay-1 { 
    animation-delay: 0.1s; 
}

.animate-delay-2 { 
    animation-delay: 0.2s; 
}

.animate-delay-3 { 
    animation-delay: 0.3s; 
}

/* Performance optimization */
.animate-on-scroll {
    will-change: transform, opacity;
}

.animate-on-scroll.animated {
    will-change: auto;
}