/* ==========================================================================
   BHARAT FINSERV — MICRO-ANIMATIONS & GPU KEYFRAMES
   ========================================================================== */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(158, 27, 50, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(158, 27, 50, 0); }
  100% { box-shadow: 0 0 0 0 rgba(158, 27, 50, 0); }
}

.anim-fade-up {
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.anim-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
