/* ===============================
   CLIENTS – SOCIAL PROOF (PREMIUM)
================================ */

.clients-section {
  position: relative;
  background: #ffffff;
  padding: 8rem 2rem;
  overflow: hidden;
}

/* ===============================
   BACKGROUND – FLOATING PARTICLES
================================ */

.clients-section::before,
.clients-section::after {
  content: "";
  position: absolute;
  inset: -40%;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(247,148,29,0.18), transparent 30%),
    radial-gradient(circle at 70% 60%, rgba(247,148,29,0.12), transparent 28%),
    radial-gradient(circle at 50% 90%, rgba(0,0,0,0.04), transparent 25%);
  animation: floatBg 22s linear infinite;
  z-index: 0;
}

.clients-section::after {
  animation-duration: 30s;
  opacity: 0.7;
}

@keyframes floatBg {
  0% { transform: translate(0,0); }
  50% { transform: translate(80px,-60px); }
  100% { transform: translate(0,0); }
}

/* ===============================
   HEADER
================================ */

.clients-header {
  position: relative;
  max-width: 800px;
  margin: 0 auto 4.5rem;
  text-align: center;
  z-index: 2;
}

.clients-header h2 {
  font-size: 2.7rem;
  font-weight: 800;
  color: #111827;
}

.clients-header span {
  color: var(--accent-main);
}

.clients-header p {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: #6b7280;
  line-height: 1.6;
}

/* ===============================
   MARQUEE
================================ */

.clients-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 2;
}

/* SOFT EDGE MASK */
.clients-marquee::before,
.clients-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 160px;
  height: 100%;
  z-index: 3;
}

.clients-marquee::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

.clients-marquee::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

/* ===============================
   TRACK
================================ */

.marquee-track {
  display: flex;
  align-items: center;
  gap: 6rem;                 /* MORE BREATHING SPACE */
  width: max-content;
  animation: marqueeMove 45s linear infinite;
}

/* LOGOS – ALWAYS COLORED */
.marquee-track img {
  height: 72px;              /* 🔥 BIGGER LOGOS */
  width: auto;
  opacity: 0.9;
  transition: transform 0.4s ease;
}

/* OPTIONAL MICRO HOVER (NO COLOR CHANGE) */
.marquee-track img:hover {
  transform: scale(1.08);
}

/* ANIMATION */
@keyframes marqueeMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
