.section-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel .carousel-item {
  transition: opacity 1s ease-in-out;
}

/* Import Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

.headline {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 2.5rem; /* smaller size */
  line-height: 1.2;
  margin-bottom: 1rem;
  cursor: default;
}

/* Gradient animated text */
.gradient-text {
  background: linear-gradient(270deg, #00c6ff, #0072ff, #00c6ff);
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Bounce animation for headline */
@keyframes bounceAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.animate-bounce {
  animation: bounceAnim 3s ease-in-out infinite;
}

/* Pulse animation for play icon */
@keyframes pulseAnim {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5); }
  50% { box-shadow: 0 0 10px 6px rgba(255, 255, 255, 0.8); }
}

.animate-pulse {
  animation: pulseAnim 2.5s infinite;
  border-radius: 50%;
}

/* Play button styles */
.btn .play-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  transition: background-color 0.3s ease;
}

.btn:hover .play-icon {
  background: white;
}

.btn:hover .play-icon polygon {
  fill: #0072ff;
}

/* Tagline fadeInUp animation fallback */
.wow.fadeInUp {
  opacity: 0;
  transform: translateY(20px);
  animation-fill-mode: forwards;
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}

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