.testimonial-carousel {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0px;
  position: relative;
}

.testimonial-swiper {
  position: relative;
  padding: 0 50px;
}

.swiper-slide {
  height: auto;
}

.testimonial-slide {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  font-family: "Arial", sans-serif;
  background: transparent;
  height: 100%;
}

.testimonial-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.testimonial-image img {
  width: 70%; 
  height: auto;
  object-fit: contain;
}

.circle.turquoise { 
  background-color: #4EBFD9; 
}

.circle.purple { 
  background-color: #D4B5F7; 
}

.circle.yellow { 
  background-color: #FFD93D; 
}

.testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding-top: 10px;
}

.testimonial-stars {
  color: #FFA500;
  font-size: 16px;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.testimonial-content h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #2C2C2C;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonial-content p {
  font-size: 12px;
  margin: 0 0 10px 0;
  line-height: 1.5;
  color: #555;
  flex-grow: 1;
}

.testimonial-author {
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  color: #333;
  letter-spacing: 0.5px;
  margin-top: auto;
}

.testimonial-prev,
.testimonial-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #5A3424 !important;
}

.testimonial-prev:after,
.testimonial-next:after {
  font-size: 22px !important;
  font-weight: bold;
}

.testimonial-prev {
  left: 0 !important;
  margin-left: -10px !important;
}

.testimonial-next {
  right: 0 !important;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  /*color: #FFF !important;*/
}

@media (max-width: 1024px) {
  .testimonial-swiper {
    padding: 0 40px;
  }
  
  .testimonial-prev,
  .testimonial-next {
    width: 35px;
    height: 35px;
  }
  
  .testimonial-image {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .testimonial-carousel {
    padding: 30px 15px;
  }
  
  .testimonial-slide {
    gap: 12px;
    padding: 15px;
  }
  
  .testimonial-image {
    width: 90px;
    height: 90px;
  }
  
  .testimonial-content h3 {
    font-size: 13px;
  }
  
  .testimonial-content p {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .testimonial-swiper {
    padding: 0 35px;
  }
  
  .testimonial-prev,
  .testimonial-next {
    width: 30px;
    height: 30px;
  }
  
  .testimonial-prev:after,
  .testimonial-next:after {
    font-size: 14px;
  }
  
  .testimonial-slide {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .testimonial-content {
    text-align: center;
  }
  
  .testimonial-image {
    margin-bottom: 10px;
  }
}