html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; }

/* horizontal marquee */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: marquee-horizontal linear infinite;
}
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-track img {
  flex-shrink: 0;
}
@keyframes marquee-horizontal {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* keep horizontal strips scrollable without visible scrollbar */
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
