/* ==============================
   css/animations.css
   ============================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

.service-card,
.why-card,
.gallery-item,
.about-card {
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}