/* Animation Utility Classes */
.animate {
  opacity: 0;
  will-change: opacity, transform;
}
.animate__animated {
  opacity: 1 !important;
}
.animate-delay-1 {
  --animate-delay: 0.1s;
}
.animate-delay-2 {
  --animate-delay: 0.2s;
}
.animate-delay-3 {
  --animate-delay: 0.3s;
}
.animate-fast {
  --animate-duration: 0.6s;
}
.animate-slow {
  --animate-duration: 2s;
}
.stagger-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.stagger-item {
  flex: 1 1 0;
}
/* End Animation Utility Classes */
