/* ================================================
   Clients Slider  –  Professional Version
   ================================================ */

/* ── Section wrapper ── */
.pro-clients-all {
  margin: 70px auto;
  max-width: 1200px;
  padding: 0 16px;
}

/* ── Title ── */
.pro-clients-title {
  text-align: center;
  margin-bottom: 48px;
}
.pro-clients-title h2 {
  font-size: 38px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 8px;
}
.pro-clients-title h2 span { color: #27aeef; }
.pro-clients-title h3 {
  font-size: 16px;
  color: #666;
  font-weight: 400;
}

/* ── Slider shell ── */
.pro-clients-slider {
  position: relative;
  padding: 0;
}

/* ── Viewport ── */
.pro-clients-viewport {
  overflow: hidden;
  width: 100%;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}
.pro-clients-viewport.pcs-grabbing { cursor: grabbing; }

/* ── Track ── */
.pro-clients-track {
  display: flex;
  will-change: transform;
  transition: transform .42s cubic-bezier(.25,.46,.45,.94);
}
.pro-clients-track.pcs-no-anim { transition: none; }

/* ── Individual card ── */
.pro-client {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 22px;
  box-sizing: border-box;
}
.pro-client img {
  width: 140px;
  height: 100px;
  object-fit: contain;
  transition: transform .3s;
  pointer-events: none;
  draggable: false;
}
.pro-client img:hover {
  transform: scale(1.08);
}



/* ── Dots ── */
.pro-clients-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}
.pro-clients-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c9e9f9;
  cursor: pointer;
  transition: background .25s, transform .25s;
  display: inline-block;
}
.pro-clients-dots span.active {
  background: #27aeef;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: scale(1);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .pro-clients-title h2 { font-size: 26px; }
  .pro-client img { width: 110px; height: 80px; }
}
@media (max-width: 420px) {
  .pro-client img { width: 90px; height: 65px; }
}