/* Our Client Section — Isolated Styles */
.client-section {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}

.client-section .section-title {
  color: var(--blue);
  font-size: 2rem;
  margin-bottom: 80px;
  font-weight: 600;
}

.client-section .vertical-line-container {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.client-section .vertical-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(-50%);
  z-index: -2;
}

.client-section .moving-dot {
  position: absolute;
  top: 0;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--blue-light);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: moveUpDown 5s ease-in-out infinite;
  z-index: -1;
}

@keyframes moveUpDown {
  0% { top: 0%; }
  50% { top: 100%; }
  100% { top: 0%; }
}

.client-section .client-item {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 15px;
  transform: translateY(-50%);
}

.client-section .client-item.left {
  left: 50%;
  transform: translateX(-92.5%) translateY(-50%);
  justify-content: flex-end;
}

.client-section .client-item.right {
  left: 50%;
  transform: translateX(-20px) translateY(-50%);
  justify-content: flex-start;
}

.client-section .client-icon-wrapper {
  width: 40px;
  height: 40px;
  border: 2px solid var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: #111827;
  z-index: 100;
  flex-shrink: 0;
}

.client-section .client-text {
  font-size: 1rem;
  white-space: nowrap;
}

/* Positioning */
.client-section .item-1 { top: 0%; }
.client-section .item-2 { top: 33.3%; }
.client-section .item-3 { top: 66.7%; }
.client-section .item-4 { top: 100%; }

@media (max-width: 480px) {
.client-section {
  max-width: 450px;
  padding: 100px 20px;
}

.client-section .section-title {
  color: #00eaff;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 600;
}

.client-section .vertical-line-container {
  height: 300px;
    margin-top: 50px;
}

.client-section .client-item.left {
  transform: translateX(-92.5%) translateY(-50%);
}

.client-section .client-item.right {
  transform: translateX(-12.5px) translateY(-50%);
}

.client-section .client-icon-wrapper {
  width: 25px;
  height: 25px;
  border: 1px solid var(--blue-light);
  font-size: 0.9rem;
}

.client-section .client-text {
  font-size: 0.7rem;
  white-space: nowrap;
  }
}