/* assets/css/animations.css */
@keyframes fadeInUp {
  from { opacity: 0; transform: translate3d(0, 24px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
@keyframes gentleLift {
  from { transform: translateY(0); }
  to { transform: translateY(-4px); }
}
.fade-in-up { animation: fadeInUp 0.8s ease both; }
.marquee-text { display: inline-block; white-space: nowrap; animation: marquee 16s linear infinite; }
.card-hover-lift:hover { animation: gentleLift 0.3s ease forwards; }
.counter-animate { will-change: contents; }
.gallery-item img,
.course-card,
.testimonial-card,
.whatsapp-fab { will-change: transform; }

