  .reveal-text {
    animation: fadeUp 0.6s ease both 0.05s;
  }

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

  .ring-glow {
    animation: ringPulse 3s ease-in-out infinite;
  }
  .blob-glow {
    animation: blobPulse 3s ease-in-out infinite;
  }

  @keyframes ringPulse {
    0%,
    100% {
      box-shadow:
        0 0 15px 4px rgba(224, 109, 75, 0.4),
        0 0 40px 8px rgba(224, 109, 75, 0.15);
    }
    50% {
      box-shadow:
        0 0 30px 8px rgba(224, 109, 75, 0.7),
        0 0 80px 20px rgba(224, 109, 75, 0.3);
    }
  }

  @keyframes blobPulse {
    0%,
    100% {
      opacity: 0.7;
    }
    50% {
      opacity: 1;
    }
  }

.marquee-track {
    animation: marquee 40s linear infinite;
  }
.marquee-track:hover {
    animation-play-state: paused;
  }
@keyframes marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }


  @keyframes grow {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.underline-animate {
  position: absolute;
  left: 50%;
  bottom: -8px;
  height: 4px;
  width: 0;
  background: #f86e5b;
  transform: translateX(-50%);
  transition: width 0.6s ease-out;
}

.underline-animate.active {
  width: 100%;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.7s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.7s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}