/* ===== Clients Carousel ===== */
.carousel-section {
  background: var(--color-white);
  padding: 20px 0;
}

.carousel-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.carousel-heading {
  text-align: center;
  font-size: 22.5px;
  font-weight: 600;
  color: #474747;
  margin-bottom: 10px;
}

.carousel-divider {
  text-align: center;
  margin-bottom: 20px;
}

.carousel-divider hr {
  width: 39%;
  margin: 0 auto;
  border: none;
  border-top: 1px solid #c11815;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  direction: ltr;
  padding: 0 40px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  flex: 0 0 calc(100% / 7);
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide img {
  max-height: 70px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.6);
}

.carousel-btn-prev {
  left: 0;
}

.carousel-btn-next {
  right: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .carousel-slide {
    flex: 0 0 calc(100% / 5);
  }
}

@media (max-width: 768px) {
  .carousel-slide {
    flex: 0 0 calc(100% / 3);
  }
}

@media (max-width: 480px) {
  .carousel-slide {
    flex: 0 0 50%;
  }
}
