/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 18 2026 | 02:41:57 */
/* ======================================
   GLOBAL SCROLL ANIMATION SYSTEM
====================================== */

/* Scroll reveal */
.reveal,
.reveal-slow {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-slow {
  transform: translateY(40px);
  transition: opacity 1.1s ease, transform 1.1s ease;
}

.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Hero load animation */
.reveal-on-load {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-on-load.loaded {
  opacity: 1;
  transform: translateY(0);
}

