/* Initial state for scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Animate in when scrolled to */
.animate-on-scroll.animate__animated.animate__fadeInUp {
  opacity: 1;
  transform: translateY(0);
}
