@font-face {
  font-family: "loyal";
  src: url("../new-fonts/eighties/Eighties-Comeback/OTF/EightiesComeback - Semi Bold Semi Condensed.otf")
    format("opentype");
}

@font-face {
  font-family: "loyal-black";
  src: url("../new-fonts/eighties/Eighties-Comeback/OTF/EightiesComeback - Black.otf")
    format("opentype");
}

.testimonial-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  margin-top: -150px;
}

.testimonial-section h2 {
  font-size: 3.5rem;
  color: #ffeb78ff; /* warm golden-brown */
  margin-bottom: 40px;
  font-family: "loyal", sans-serif;
}

.testimonial-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding-bottom: 20px;
  min-height: 320px;

  /* Hide scrollbar */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
.testimonial-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.testimonial-card {
  flex: 0 0 300px;
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.12),
    0 1.5px 6px rgba(0, 0, 0, 0.08);
  position: relative;
  min-height: 340px;
}

/* Pastel backgrounds */
.testimonial-card:nth-child(1) {
  background: #ffe6cc;
} /* peach */
.testimonial-card:nth-child(2) {
  background: #ccefff;
} /* sky blue */
.testimonial-card:nth-child(3) {
  background: #f3d9f7;
} /* lavender */
.testimonial-card:nth-child(4) {
  background: #d9f7e5;
} /* mint */

/* Quote circle */
.quote-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-family: serif;
  font-weight: bold;
  margin-left: 15px;
  margin-top: 30px;
}

/* Make quotes match card background (cutout effect) */
.testimonial-card:nth-child(1) .quote-icon {
  color: #ffe6cc;
}
.testimonial-card:nth-child(2) .quote-icon {
  color: #ccefff;
}
.testimonial-card:nth-child(3) .quote-icon {
  color: #f3d9f7;
}
.testimonial-card:nth-child(4) .quote-icon {
  color: #d9f7e5;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
  margin-left: 20px;
  font-family: "loyal-black", sans-serif;
}

.author {
  font-weight: bold;
  margin-bottom: 5px;
  margin-left: 20px;
  font-family: "loyal", sans-serif;
}

.location {
  font-size: 0.9rem;
  color: #555;
  margin-left: 20px;
  font-family: "loyal-black", sans-serif;
}

/* Navigation buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: #f5e2b8;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nav-btn:hover {
  background: #f0d98a;
}

.nav-left {
  left: 10px;
}
.nav-right {
  right: 10px;
}

@media (max-width: 600px) {
  .testimonial-section {
    padding: 40px 10px;
    margin-top: -80px;
  }

  .testimonial-span {
    display: block;
  }

  .testimonial-section h2 {
    font-size: 2.2rem;
  }

  .testimonial-card {
    flex: 0 0 250px;
    min-height: auto;
  }
}
