nav {
    z-index: 1999;
}

.testimonials-wrapper {
  position: absolute;
  top: 375px;              
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 315px;
  overflow: hidden;
  text-align: center;
  z-index: 1;
  border-radius: 20px;
}

.testimonial-box {
  background: #FFF8EC;
  backdrop-filter: blur(10px);
  padding: 35px 30px;
  border-radius: 20px 20px 20px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 3px 10px rgba(0, 0, 0, 0.08);
  position: absolute;
  font-weight: bold;
  top: 0;
  left: 0;
  width: 500px;
  height: 315px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(100%);
  transition: 
    opacity 1s ease-in-out,
    transform 1s ease-in-out;
  font-family: 'Lato', sans-serif;
  pointer-events: none;
  /*border: 2px solid #F4C36A;*/
  box-sizing: border-box;
  overflow: hidden;
}

.testimonial-box.active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-box.exit {
  opacity: 0;
  transform: translateX(-100%); 
}

/* Large quotation marks */
.testimonial-box::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 90px;
  font-weight: bold;
  color: rgba(244, 195, 106, 0.25);
  line-height: 1;
  font-family: Georgia, serif;
  z-index: 1;
}

.testimonial-box::after {
  content: '"';
  position: absolute;
  bottom: 15px;
  right: 20px;
  font-size: 90px;
  font-weight: bold;
  color: rgba(244, 195, 106, 0.25);
  line-height: 1;
  font-family: Georgia, serif;
  z-index: 1;
}

.stars {
  font-size: 28px;
  margin-bottom: 20px;
  color: #ffd700;
  position: relative;
  z-index: 2;
  letter-spacing: 3px;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.7;
  color: #2F2620;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  padding: 0 20px;
  font-weight: bold;
  max-width: 420px;
}

.customer-name {
  font-size: 20px;
  font-weight: 700;
  color: #2F2620;
  margin-top: 10px;
  line-height: 1.4;
  position: relative;
  z-index: 2;
  letter-spacing: 0.5px;
}

.customer-title {
  font-size: 15px;
  color: #333333;
  margin-top: 4px;
  position: relative;
  z-index: 2;
  font-weight: bold;
}

@media (max-width: 768px) {
  .testimonials-wrapper {
      top: 200px;
      width: 450px;
      height: 305px;
  }
  
  .testimonial-box {
      width: 450px;
      height: 305px;
      padding: 30px 25px;
  }
  
  .testimonial-text {
      font-size: 16px;
      padding: 0 15px;
      max-width: 380px;
  }
}

@media (max-width: 468px) {
  .testimonials-wrapper {
      top: 250px;
      width: 90%;
      max-width: 400px;
      height: 285px;
  }
  
  .testimonial-box {
      width: 100%;
      height: 285px;
      padding: 25px 20px;
  }
  
  .testimonial-box::before,
  .testimonial-box::after {
    font-size: 70px;
  }
  
  .testimonial-text {
      font-size: 15px;
      padding: 0 15px;
      max-width: 100%;
  }
  
  .stars {
      font-size: 24px;
  }
  
  .customer-name {
      font-size: 18px;
  }
}

