.testimonial-section {
  padding: 40px 250px;
  background: #f8f9f4;
  position: relative;
  text-align: left;
}

/* Align heading + buttons */
.title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

/* Navigation buttons */
.nav-buttons {
  display: flex;
  gap: 10px;
}

.nav-btn {
  width: 35px;
  height: 35px;
  border-radius: 20%;
  border: 1px solid #000000;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: #f0c509;
  border-color: #ccc;
}

.section-badge {
  display: inline-block;
  font-size: 12px;
  background: #fcfcfc;
  color: #007bff; 
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 5px;
  font-weight: 600;
}

.section-badge .img {
  width: 16px;
  height: 16px;
  position: relative;
  top: -5px;   /* negative = move upward */
  right: 12px;
}

.testimonial-slider {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
}

.testimonial-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  flex: 1;
  max-width: 300px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 0px;
  right: 0px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stars {
  color: #f5c518;
  font-size: 14px;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-size: 14px;
  color: #444;
  margin-bottom: 15px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-author img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.testimonial-author h4 {
  font-size: 14px;
  margin: 0;
}

.testimonial-author small {
  color: #777;
  font-size: 12px;
}