/* ===== Testimonials Section ===== */

.testimonials-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}

/* ===== Swiper Wrapper & Slides ===== */

.swiper {
  width: 90%;
  padding: 2em 0;
  padding-left: 1rem;
  padding-right: 1rem;
  /*margin-bottom: 100px;*/
  min-height: 280px!important;
  overflow: hidden;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
  box-sizing: border-box;
  /*maring: 0;*/
  margin: 0px;
  padding: 0px;
  width: auto;
}

.swiper-wrapper {
  align-items: stretch;
}

.swiper-pagination {
  margin-top: 40px;
}

.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: #888;
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background-color: #e6bb1b;
  opacity: 1;
}

/* ===== Testimonial Card Styling ===== */

.testimonial-card {
  background: rgb(230,210,190);
  border-radius: 12px;
  padding: 20px;
  /*max-width: 350px;*/
  width: 95%;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 2.0);
  /*text-align: center;*/
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  max-height: 220px;
  /*font-family: 'Roboto';*/
  /*font-size: 16px;*/
  min-height: 160px;
  /*z-index: 995;*/
  /*margin: 0;*/
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Testimonial text */

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 15px;
  color: #555;
  font-family: 'Roboto';
}

/* Author name */

.testimonial-author {
  font-weight: bold;
  font-size: 1.1rem;
  color: #333;
}

/* Author title or role */

.testimonial-role {
  font-size: 0.9rem;
  color: #888;
}

/* ===== Responsive Adjustments ===== */

@media (max-width: 768px) {
  .testimonial-card {
    max-width: 90%;
  }
}

@media (max-width: 576px) {
  .testimonial-card {
    /*padding: 15px;*/
  }
}

@media (max-width: 576px) {
  .testimonial-text {
    font-size: 0.95rem;
  }
}

#container-full-width {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  background-color: #172533;
  min-height: 200px;
}

#swiper-carousel {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

