/* 
   SNT Medicare - Testimonials Stylesheet
   Author: Tycoon Hamlet
   Version: 2.0
*/

/* Testimonials Section */
.testimonials-section {
  position: relative;
  background-color: #f8f9fa;
  overflow: hidden;
}

.testimonial-wrapper {
  position: relative;
  padding: 30px 0 60px;
}

.testimonial-slider {
  overflow: visible;
}

.testimonial-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-rating {
  color: #ffc107;
  margin-bottom: 15px;
  font-size: 16px;
}

.testimonial-content {
  flex: 1;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-content p {
  font-style: italic;
  color: #212529;
  line-height: 1.7;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.testimonial-content p::before {
  content: """;
  font-size: 80px;
  font-family: Georgia, serif;
  color: rgba(0, 105, 217, 0.1);
  position: absolute;
  top: -30px;
  left: -10px;
  z-index: -1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  border-top: 1px solid #dee2e6;
  padding-top: 20px;
}

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid #0069d9;
}

.author-info h4 {
  font-size: 16px;
  margin-bottom: 2px;
  color: #212529;
}

.author-info p {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 0;
}

/* Testimonial Navigation */
.testimonial-nav-container {
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 10;
  transform: translateY(-50%);
  pointer-events: none;
  padding: 0 20px;
}

.testimonial-button-prev,
.testimonial-button-next {
  width: 44px;
  height: 44px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0069d9;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  position: absolute;
}

.testimonial-button-prev {
  left: 0;
}

.testimonial-button-next {
  right: 0;
}

.testimonial-button-prev:hover,
.testimonial-button-next:hover {
  background-color: #0069d9;
  color: white;
}

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #dee2e6;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #0069d9;
  width: 30px;
  border-radius: 5px;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .testimonial-nav-container {
    top: auto;
    bottom: 10px;
    transform: none;
  }
  
  .testimonial-button-prev {
    left: 20%;
  }
  
  .testimonial-button-next {
    right: 20%;
  }
}

@media (max-width: 767.98px) {
  .testimonial-button-prev {
    left: 10%;
  }
  
  .testimonial-button-next {
    right: 10%;
  }
  
  .testimonial-wrapper {
    padding-bottom: 80px;
  }
}

@media (max-width: 575.98px) {
  .testimonial-card {
    padding: 20px;
  }
  
  .testimonial-content p {
    font-size: 14px;
  }
  
  .testimonial-button-prev,
  .testimonial-button-next {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }
} 