/* Testimonials section styles */
.testimonials {
  padding: 80px 20px;
  background-color: #fafafa;
  text-align: center;
  padding-bottom: 20vh;
  height:auto;
}

.testimonials h2 {
  font-size: 3rem;
  color: #0172eb;
  margin-bottom: 50px;
}

.testimonial-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial {
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  max-width: 300px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial h4 {
  color: #007bff;
  font-size: 1rem;
  margin: 0;
  font-weight: bold;
}

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