body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  padding: 0;
}

.testimonial-section {
  position: relative;
  width: 80%;
  max-width: 900px;
  height:100%;
  overflow: hidden;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  padding: 30px;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial {
  min-width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 20px;
}

.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

h3 {
  margin: 10px 0 5px;
}

.rating {
  color: #f39c12;
  margin-bottom: 15px;
}

p {
  font-style: italic;
  color: #555;
}

/* Navigation Buttons */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #25f312;
  border: none;
  color: #fff;
  font-size: 24px;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.prev:hover, .next:hover {
  opacity: 1;
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-section {
    width: 95%;
  }
}