/*--------------------------------------------------------------
# client section - happy client count incremental
--------------------------------------------------------------*/
.stats-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1% 1%;
  background: #fff;
  /* dark blue */
}

.stat-box {
  text-align: center;
  color: #ffffff;
}

.stat-box h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #38bdf8;
  /* accent */
}

.stat-box p {
  font-size: 1rem;
  opacity: 0.9;
}

/*--------------------------------------------------------------
# client section marquee
--------------------------------------------------------------*/
.marquee {
  overflow: hidden;
  background: #fff;
  padding: 30px 0;
}

.marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee-scroll 100s linear infinite;
  will-change: transform;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-right: 60px;
}

.marquee-track img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: 0.3s ease;
}

.marquee-track img:hover {
  filter: grayscale(0);
  transform: scale(1.05);
}

/* KEY DIFFERENCE */
@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee:hover .marquee-inner {
  animation-play-state: paused;
}

/* .marquee-inner {
    will-change: transform;
} */
