.active {
  color: #2563eb; /* Tailwind blue-600 */
  font-weight: 600;
   
}
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.animate-scroll-left {
  display: flex;
  width: max-content;
  animation: scroll-left 20s linear infinite;
}

 