.testimonial-carousel-container {
  max-width: 1200px;
  margin: 0 auto;
}

.swiper {
  padding: 20px 0;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 340px;
  /* fixed height */
  width: 100%;
  /* full width inside container */
  box-sizing: border-box;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.testimonial-avatar img {
  /* width: 100%; */
  height: 60px;
  border-radius: 50%;
  /* margin-right: 15px; */
}

.author-name {
  margin: 0;
  font-size: 1.2em;
  font-weight: bold;
}

.author-title {
  margin: 2px 0 0;
  font-size: 0.9em;
  color: #666;
}

.testimonial-content {
  flex-grow: 1;
  font-size: 1em;
  color: #333;
}

.testimonial-content p {
  font-size: 1em;
  /* line-height: 1.5;
  color: #333; */
}

.testimonial-rating {
  margin-top: 15px;
  color: #fbc02d;
  font-size: 1.2em;
}

.swiper-button-next,
.swiper-button-prev {
  color: #333;
}

.swiper-pagination-bullet-active {
  background: #333;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination {
  margin-top: 20px;
  /* pushes it away from the slides */
  position: relative;
}

@media (max-width: 767px) {
  .testimonial-card {
      height: auto;
      /* Let it expand if needed */
      padding: 20px;
  }



  .testimonial-header {
      flex-direction: row;
      align-items: center;
  }

  .testimonial-content p {
      font-size: 0.95em;
  }

  .swiper {
      padding: 10px 0;
  }

  .swiper-pagination {
      margin-top: 15px;
  }
  .newsletter-form button {
      padding: 14px 5px;
  }
}

.newsletter-section {
  background-color: #002233;
  /* deep navy */
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.newsletter-container {
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.newsletter-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  /* margin-bottom: 30px; */
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
  /* background: white; */
  border-radius: 50px;
  /* overflow: hidden; */
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 50px 0 0 50px;
  font-size: 1rem;
  outline: none;
}

.newsletter-form button {
  background-color: #1cd2c4;
  color: white;
  border: none;
  padding: 14px 30px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 0 50px 50px 0;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #10b1a5;
}

@media only screen and (max-width: 1199px) and (min-width: 769px) {
  .testimonial-card{
      height: 380px;
  }
}