.testimonials {
  padding: 80px 20px;
  background: #f7f7f7;
  text-align: center;
}

.testimonials h2 {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: left;
  position: relative;
}

.testimonial-card .quote {
  position: absolute;
  top: -15px;
  left: 20px;
  background: #d32f2f;
  color: #fff;
  font-size: 34px;
  padding: 0px 14px;
  border-radius: 50%;
}

.stars {
  color: #fbc02d;
  font-size: 18px;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.testimonial-card h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.testimonial-card span {
  font-size: 13px;
  color: #888;
}
 