:root {
  --brand-blue: #2B54AC;
  --brand-green: #4BD964;
}

* {
  box-sizing: border-box;
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.bg-dots-pattern {
  background-size: 12px 12px;
}

.marquee {
  position: relative;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 0.75rem;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  color: var(--brand-blue);
  letter-spacing: 0.06em;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 0.95rem;
}

.marquee-dot {
  color: var(--brand-green);
  font-size: 1.2rem;
  line-height: 1;
  padding: 0 0.35rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonial-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: testimonial-marquee 36s linear infinite;
}

.testimonial-card {
  min-width: 320px;
  max-width: 360px;
}

@keyframes testimonial-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
