.intro-text {
  background: linear-gradient(
    115deg,
    #00bcd4,
    #03a9f4 20%,
    #2196f3 40%,
    #0288d1 60%,
    #0277bd 80%,
    #00bcd4
  );
  
}

.font-inter {
    font-family: 'Inter' !important
}

.text-anim {
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradientMove 6s ease-in-out infinite;
}

/* ✨ Smooth left↔right gradient animation */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 200% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}