/* Scroll Animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out; /* Increased duration */
}

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

