/* Testimonials section */
.testimonials-section {
  background: linear-gradient(to bottom, #99dfef, #a6ce39) !important;
  padding: 60px 20px;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #007bbe;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #333;
}

.testimonial-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 200px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.testimonial-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.testimonial-card .author {
  display: block;
  font-weight: bold;
  color: #a6ce39;
  text-align: right;
}
