/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.animate-on-scroll.fade-in-down {
    opacity: 0;
    transform: translateY(-30px);
}

.animate-on-scroll.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 { 
    transition-delay: 0.15s; 
} 

.animate-on-scroll.delay-2 { 
    transition-delay: 0.3s; 
} 

.animate-on-scroll.delay-3 { 
    transition-delay: 0.45s; 
} 

.animate-on-scroll.delay-4 { 
    transition-delay: 0.6s; 
} 

.animate-on-scroll.delay-5 { 
    transition-delay: 0.75s; 
}

