.testimonial-carousel-container {
  display: flex;
  justify-content: center;
  padding: 3rem 1rem;
}

.testimonial-carousel {
  position: relative;
  background-color: #1a1a1a;
  color: white;
  padding: 3rem 4rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 900px;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-slide {
  position: absolute;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  text-align: center;
  max-width: 700px;
  padding: 0 2rem;
}

.testimonial-slide.active {
  opacity: 1;
  position: relative;
}

.testimonial-slide p {
  font-style: italic;
  line-height: 1.6;
  font-size: 1.1rem;
}

.testimonial-slide h4 {
  margin-top: 1.5rem;
  color: #d6b36a;
  font-weight: 600;
}

.testimonial-slide h4 span {
  font-weight: 600;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid #d6b36a;
  color: #d6b36a;
  font-size: 1.2rem;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s;
  z-index: 10;
}

.carousel-btn:hover {
  background: #d6b36a;
  color: #1a1a1a;
}

.carousel-btn.prev {
  left: 1.5rem;
}

.carousel-btn.next {
  right: 1.5rem;
}
