/* Hero Section */


.hero-text {
  animation: heroFadeInUp 1s ease-out 0.2s both;
  /* Optional: prevents content flash before animating */
  opacity: 0;
  transform: translateY(20px);
}

@keyframes heroFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}