/* Testimonials Section */
.testimonials {
  padding: 80px 20px;

  text-align: center;
}

.testimonials h2 {
  font-size: 1rem;
  margin-bottom: 40px;
  color: #333;
}

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

.testimonial {
  display: none;
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: opacity 0.5s ease;
}

.testimonial.active {
  display: block;
}

.testimonial p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 20px;
}

.testimonial h3 {
  color: #0078d4;
  font-weight: 600;
}

.testimonial-controls {
  margin-top: 20px;
}

.testimonial-controls button {
  background-color: #0078d4;
  color: white;
  border: none;
  padding: 8px 16px;
  margin: 0 5px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s;
}

.testimonial-controls button:hover {
  background-color: #005a9e;
}

/* Responsive */
@media (max-width: 600px) {
  .testimonial p {
    font-size: 1rem;
  }
}
