/* Testimonial Slider Styles */
.testimonials-slider {
  margin: 2rem 0;
  max-width: 100%;
  overflow: hidden;
}

.testimonials-slider .swiper-container {
  width: 100%;
  padding: 30px 0;
  overflow: visible;
}

.swiper-slide {
  height: auto;
  transition: transform 0.3s;
}

.testimonial-card {
  height: 100%;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  transition: all 0.3s ease;
}

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

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  font-style: italic;
  color: #2c3e50;
  font-size: 1rem;
  line-height: 1.6;
}

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

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid #2c5a93;
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
  color: #1a3a63;
}

.author-info p {
  font-size: 0.85rem;
  color: #7f8c8d;
  margin-bottom: 0;
}

.swiper-pagination {
  position: relative;
  margin-top: 25px;
  text-align: center;
  bottom: 0;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullet {
  background-color: #1a3a63;
  opacity: 0.5;
}

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

.swiper-button-next,
.swiper-button-prev {
  color: #1a3a63;
  background-color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.2rem;
}

/* Media queries for testimonial slider responsiveness */
@media (max-width: 767px) {
  .testimonial-card {
    padding: 20px;
  }
  
  .testimonial-content p {
    font-size: 0.95rem;
  }
}
