/*************** Testimonials Section ***************/
.testimonials-section {
  padding: 60px 20px;
  text-align: center;
}

.testimonials-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #ff9500;
  position: relative;
}

.testimonials-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #ff9500;
  margin: 12px auto 0;
  border-radius: 2px;
}

.testimonials-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.testimonial-card {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  padding: 30px 20px;
  max-width: 350px;
  width: 100%;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  border: 3px solid #ff9500;
}

.testimonial-card h4 {
  font-size: 1.1rem;
  color: #ff9500;
  margin-bottom: 4px;
}

.testimonial-card h6 {
  font-size: 0.9rem;
  color: #d0cfcf;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #d0cfcf;
  line-height: 1.6;
}

.testimonial-card span {
  display: inline-block;
  margin-top: 15px;
  font-weight: bold;
  color: #444;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    max-width: 90%;
  }

  .testimonials-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 40px 15px;
  }

  .testimonial-card {
    padding: 25px 15px;
  }

  .testimonials-title {
    font-size: 1.8rem;
  }
}
