.testimonial-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #ffffff, #f2f2f2);
  text-align: center;
}

.testimonial-section h2 {
  font-size: 36px;
  font-weight: 700;
}

.subtitle {
  max-width: 650px;
  margin: 10px auto 50px;
  color: #666;
}


.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}


.testi-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  text-align: left;
  position: relative;
  transition: 0.3s;
}

.testi-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.quote {
  position: absolute;
  top: 15px;
  left: 15px;
  color: #2ecc71;
  font-size: 25px;
  opacity: 0.3;
}
.quote i {
  color: #2ecc71;
  font-size: 28px;
  opacity: 0.2;
}

.top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.top h4 {
  margin: 0;
}

.location {
  font-size: 12px;
  color: #777;
}

.time {
  font-size: 12px;
  color: #999;
}

.stars {
  color: #f1c40f;
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 3px;
}

.stars span {
  color: #333;
  margin-left: 5px;
  font-size: 13px;
}

.testi-card p {
  font-size: 14px;
  color: #555;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.stat-box {
  background: white;
  padding: 20px;
  border-radius: 12px;
}

.stat-box h3 {
  color: #2ecc71;
  font-size: 28px;
}

.stat-box p {
  font-size: 14px;
  color: #666;
}
.stat-box p i {
  margin-right: 5px;
  color: #2ecc71;
}

.small {
  font-size: 12px;
}
.small i {
  font-size: 12px;
}

@media (max-width: 992px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }
}
