/* ==============================
   Custom Testimonials Slider
   ============================== */

.cts-slider-section {
  background: transparent;
  text-align: center;
  padding: 50px 0;
  overflow: hidden;
}

/* ===== Static Card ===== */
.cts-card {
  background: #2d2d2d;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  padding: 50px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}

/* ===== Swiper Slides ===== */
.swiper-slide {
  display: flex;
  justify-content: center;
}

.cts-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50% !important;
  border: 4px solid #FFB200 !important;
  object-fit: cover;
  margin-bottom: 10px;
}

.cts-role {
  font-family: 'Poppins', sans-serif !important;
  color: #fff;
  font-weight: 400;
  font-size: 13px;
  line-height: 24px;
}

.cts-stars {
  margin: 10px 0;
  color: #FFB200;
}

blockquote {
  font-family: 'Poppins', sans-serif !important;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin: 10px auto;
  max-width: 600px;
}

.cts-card h3 {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
}

/* ===== Swiper Fade Transition ===== */
.cts-slider .swiper-slide {
  transition: opacity 0.6s ease;
  opacity: 0;
}

.cts-slider .swiper-slide-active {
  opacity: 1;
}

/* ===== Navigation (Arrows) ===== */
.cts-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 50px;
}

.cts-card .swiper-button-next,
.cts-card .swiper-button-prev {
  position: static;
  width: 35px;
  height: 35px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.cts-card .swiper-button-next::after,
.cts-card .swiper-button-prev::after {
  font-size: 13px;
  font-weight: 600;
}

.cts-card .swiper-button-next:hover,
.cts-card .swiper-button-prev:hover {
  background: #f4b400;
  color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .cts-slider-section {
    padding: 0 !important;
  }
  .cts-nav {
    gap: 18px;
    margin-top: 45px;
  }
}
