/* =========================
           TESTIMONIALS SECTION
           ========================= */
.testimonials-section {
  margin: 80px 0;
  padding: 60px 20px;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.testimonials-section h2 {
  margin-bottom: 50px;
}

.testimonial {
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
}

/* FIXED: Staggered layout - alternating left/right */
.testimonial:nth-child(odd) {
  margin-left: 10%; /* Odd testimonials (1st, 3rd, etc.) align left */
  margin-right: auto;
}

.testimonial:nth-child(even) {
  margin-left: auto;
  margin-right: 10%; /* Even testimonials (2nd, 4th, etc.) align right */
}

.testimonial-quote {
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #4a5568;
}

.testimonial-author {
  font-weight: 600;
  color: #2d3748;
  text-align: right;
}

/* Quote marks decoration */
.testimonial::before {
  content: "";
  font-size: 60px;
  color: #667eea;
  position: absolute;
  top: -10px;
  left: 20px;
  opacity: 0.3;
}
