/* ========================
   Testimonials Section
========================= */
.testimonials-section {
  padding: 10% 15%;
  background-color: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #0f172a;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #f1f5f9; /* Subtle grey border from screenshot */
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.quote-icon {
  margin-bottom: 24px;
}

.quote-icon svg {
  width: 40px;
  height: 40px;
  stroke: #2563eb; /* Primary Blue */
  opacity: 0.8;
}

.testimonial-text {
  font-size: 18px;
  font-style: italic;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 32px;
  flex-grow: 1; /* Pushes client info to the bottom */
}

.client-info {
  border-top: 1px solid #f1f5f9;
  padding-top: 24px;
}

.client-name {
  font-weight: 700;
  font-size: 18px;
  color: #0f172a;
  margin-bottom: 4px;
}

.client-title {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

.client-company {
  font-size: 14px;
  color: #94a3b8;
}

/* Responsive adjust */
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
  .testimonial-card {
    padding: 30px;
  }
}