.testimonial-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  position: relative;
}

.arrow {
  font-size: 30px;
  color: #0095a6;
  cursor: pointer;
  user-select: none;
  padding: 0 15px;
  transition: transform 0.2s ease;
}

.arrow:hover {
  transform: scale(1.2);
}

.testimonial-slider {
  overflow: hidden;
  width: 100%;
  /*max-width: 850px;*/
  min-height: 300px;
  position: relative;
  padding-top: 28px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
}

.testimonial-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 30px;
  position: relative;
  background-color: #20a9a9;
  border-radius: 40px;
  color: #fff;
  clip-path: path("M10,60 C10,10 10,10 300,10 C500,10 800,40 1000,20 C1200,0 1250,40 1240,80 C1230,120 1240,180 1240,220 C1240,260 1220,300 1190,310 C1160,320 1100,320 1000,310 C900,300 600,280 400,290 C200,300 100,310 30,320 C10,320 0,300 0,290 C10,260 10,180 10,140 C10,100 10,80 10,60 Z");
  transition: all 0.5s ease-in-out;
}
.flower{
  max-width: 400px;
  position: absolute;
  right: 100px;
  top: 0px;
}

.rating {
  font-size: 20px;
  margin-bottom: 15px;
}

.star {
  color: gold;
}

.star.half {
  position: relative;
}
.star.half::after {
  content: '★';
  position: absolute;
  color: #ccc;
  left: 0;
  width: 50%;
  overflow: hidden;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  padding-right: 20px;
}

.profile {
  display: flex;
  align-items: center;
  margin-top: 25px;
  gap: 15px;
}

.profile img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 5px solid orange;
  object-fit: cover;
}

.profile-text .name {
  font-size: 20px;
  font-weight: bold;
}

.profile-text .role {
  font-size: 14px;
  color: #e2f4f4;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonial-slide {
    padding: 20px;
    clip-path: none;
    border-radius: 20px;
  }
  .profile img {
    width: 65px;
    height: 65px;
  }
}

@media (max-width: 480px) {
  .testimonial-text {
    font-size: 14px;
  }
}