.testimonial-section {
  text-align: center;
  padding: 60px 20px;
  background: #f4f4f4;
}

.testimonial-container {
  position: relative;
  max-width: 900px;
  margin: auto;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.testimonial-slide.active {
  display: block;
}

.testimonial-slide p {
  font-size: 14px;
  margin-bottom: 15px;
}

.testimonial-slide h4 {
  color: #555;
}

.controls {
  margin-top: 20px;
}

.controls span {
  cursor: pointer;
  font-size: 24px;
  margin: 0 10px;
  color: #333;
  transition: 0.3s;
}

.controls span:hover {
  color: #9455C5;
}

.testimonial-slide {
  position: relative;
  padding: 40px 30px;
}

.testimonial-slide {
  position: relative;   /* Important */
  padding: 50px 40px;   /* Give space for quotes */
}

.testimonial-slide::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 80px;
  color: #9455C5;
  font-family: serif;
  line-height: 1;
}

.testimonial-slide::after {
  content: "”";
  position: absolute;
  bottom: 50px;     /* Move to bottom */
  right: 20px;      /* Move to right */
  font-size: 80px;
  color: #9455C5;
  font-family: serif;
  line-height: 1;
}