/* =============================
   Testimonials Section Styling
============================= */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #fff;
  color: #101828;
}

.testimonials-section {
  background-color: #fff;
  color: #fff;
  padding: 120px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  margin-top: -1px;
}

.testimonials-section .section-subtitle {
  font-size: 1rem;
  letter-spacing: 2px;
  color: #ffb84d;
  /* text-transform: uppercase; */
  margin-bottom: 10px;
  
}

.testimonials-section .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 13px;
  background:linear-gradient(90deg, #b36a2e, #e0a75f, #e0a75f, #e0a75f, #e0a75f, #c47b3c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonials-section .section-desc {
  font-size: 1rem;
  color: #555;
  margin-bottom: 50px;
}

/* =============================
   Grid Layout
============================= */
.testimonial-slider {
  width: 100%;
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  justify-content: center;
}

/* =============================
   Testimonial Card
============================= */
.testimonial-card {
  background-color: rgb(30,43,60);
  border-radius: 15px;
  padding: 25px;
  text-align: left;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(255, 184, 77, 0.3);
}

.testimonial-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffb84d;
}

.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 15px;
}

/* =============================
   Star Rating
============================= */
.stars {
  color: #ffb84d;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* =============================
   Author Info
============================= */
.author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.author img {
  border-radius: 50%;
  width: 45px;
  height: 45px;
  object-fit: cover;
  border: 2px solid #ffb84d;
}

.author-info {
  flex: 1;
  margin-left: 10px;
}

.author-info .name {
  font-weight: 600;
  color: #f7d7a3;
  font-size: 0.95rem;
}

.author .date {
  font-size: 0.8rem;
  color: #aaa;
}

/* =============================
   Responsive Design
============================= */
@media (max-width: 1024px) {
  .testimonial-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 15px;
  }

  .testimonial-track {
    grid-template-columns: 1fr;
  }

  .testimonials-section .section-title {
    font-size: 2rem;
  }

  .testimonials-section .section-desc {
    font-size: 0.9rem;
  }

  .testimonial-card {
    padding: 20px;
  }

  .author-info .name {
    font-size: 0.85rem;
 }
 .testimonials-section .section-subtitle {
    margin-top: 20%;
  }
}
