/* Container for the slider */
.cts-slider {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}

/* Each testimonial slide */
.cts-slide {
  background: #f9f9f9;
  text-align: center;
  color: #333;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  font-style: italic;
}

/* The quote mark */
.cts-quote {
  font-size: 60px;
  color: #ddd;
  line-height: 1;
  margin-bottom: 15px;
  font-family: serif;
}

/* Testimonial text */
.cts-text {
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 25px;
}

/* Profile section (avatar, name, designation) */
.cts-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Avatar image */
.cts-avatar {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-bottom: 12px;
  border: 3px solid #198754;
}

/* Client name */
.cts-name {
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 6px 0;
}

/* Client designation */
.cts-designation {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Slick dots container */
.slick-dots {
  display: flex !important;
  justify-content: center;
  gap: 8px; /* spacing between dots */
  padding: 0;
  margin: 15px 0 0 0;
  list-style: none;
}

/* Each dot item */
.slick-dots li {
  display: inline-block;
  margin: 0;
  padding: 0;
}

/* Dot buttons */
.slick-dots li button {
  background: #bbb;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  outline: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

/* Remove default button text */
.slick-dots li button:before {
  content: '';
}

/* Active dot style */
.slick-dots li.slick-active button {
  background: #198754;
}

/* Responsive */
@media (max-width: 480px) {
  .cts-slider {
    padding: 15px;
  }
  .cts-slide {
    padding: 20px 15px;
    min-height: 200px;
  }
  .cts-text {
    font-size: 16px;
  }
  .cts-avatar {
    width: 60px;
    height: 60px;
  }
  .cts-name {
    font-size: 18px;
  }
}