
/* ========================================================== */
/* Scroll Animation Base */
/* ========================================================== */

.scroll-animate {
  opacity: 0;
  transition: all 0.8s ease-out;
}

/* When element is visible */
.scroll-animate.show {
  opacity: 1;
  transform: translate(0, 0);
}

/* Direction-based entry */
.from-left {
  transform: translateX(-100px);
}

.from-right {
  transform: translateX(100px);
}

.from-top {
  transform: translateY(-100px);
}

.from-bottom {
  transform: translateY(100px);
}

