/* Page Load Staggered Animations */
.animate-fade-up {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeInUp 0.7s ease both;
}

.delay-1 { animation-delay: 0s; }
.delay-2 { animation-delay: 0.1s; }
.delay-3 { animation-delay: 0.2s; }
.delay-4 { animation-delay: 0.3s; }
.delay-5 { animation-delay: 0.4s; }
.delay-6 { animation-delay: 0.5s; }
.delay-7 { animation-delay: 0.6s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
