/* ===============================
   TESTIMONIAL SECTION
================================= */

.testimonial-section {
  background: #f8fafc;
  padding: 120px 0;
}

.testimonial-title {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
}

.testimonial-subtitle {
  color: #64748b;
  margin-top: 10px;
  font-size: 17px;
}

.testimonial-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.stars {
  color: #fbbf24;
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial-text {
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #6c63ff, #1ba7a7);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.testimonial-user h6 {
  margin: 0;
  font-weight: 600;
}

.testimonial-user span {
  font-size: 13px;
  color: #64748b;
}

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