.client-testimonials {
  background-color: #fffef3;
  width: 100%;
  padding: 30px 5%;
  box-sizing: border-box;
  position: relative;
}

.client-testimonials-heading {
  text-align: center;
  margin-bottom: 20px;
  font-size: 18px;
  color: #716f60;
  letter-spacing: 2.6px;
  font-weight: 700;
}

.testimonial-wrapper {
  position: relative;
  overflow: hidden;
  width: 90%;
  margin: 40px auto;
}

.testimonial-carousel {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.testimonial-item {
  background-color: #fcfaeb;
  border: 1px solid #d7d6cc;
  border-radius: 16px;
  padding: 20px;
  text-align: left;
  position: relative;
  height: 250px;
  flex: 0 0 100%;
  margin: 0 10px;
}

.testimonial-quote {
  font-size: 36px;
  color: #e0dfd6;
}

.testimonial-author {
  font-weight: 500;
}

.testimonial-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #242929;
}

.testimonial-item p {
  font-size: 14px;
  line-height: 1.5;
  color: #716f60;
}

.testimonial-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 1;
  transition: 0.3s ease;
}

.testimonial-scroll-btn.left { left: 85px; }
.testimonial-scroll-btn.right { right: 85px; }

.testimonial-dots {
  text-align: center;
  margin-top: 15px;
}

.testimonial-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #d7d6cc;
  border-radius: 50%;
  margin: 0 5px;
}

.testimonial-dot.active {
  background-color: #716f60;
}

/* Responsive */
@media (max-width: 480px) { .testimonial-item { flex: 0 0 calc(100% - 20px); } }
@media (min-width: 481px) and (max-width: 640px) { .testimonial-item { flex: 0 0 calc(66.66% - 20px); } }
@media (min-width: 641px) and (max-width: 768px) { .testimonial-item { flex: 0 0 calc(50% - 20px); } }
@media (min-width: 769px) { .testimonial-item { flex: 0 0 calc(33.33% - 20px); } }
