/* Custom styles extracted from index.blade.php */
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{
   font-size: x-large !important;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
   font-size:x-large !important;
}
/* Make Swiper pagination bullets use the Bootstrap primary color */
.swiper-pagination-bullet {
   background: var(--bs-primary) !important;
   opacity: 0.3;
}
.swiper-pagination-bullet-active {
   background: var(--bs-primary) !important;
   opacity: 1;
}

/* Testimonial card styles */
.testimonial-card-pro {
   background: #fff;
   border-radius: 1.5rem;
   box-shadow: 0 4px 24px rgba(80, 120, 200, 0.08), 0 1.5px 6px rgba(80, 120, 200, 0.04);
   transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card-pro:hover {
   box-shadow: 0 8px 32px rgba(80, 120, 200, 0.16), 0 3px 12px rgba(80, 120, 200, 0.08);
   transform: translateY(-4px) scale(1.02);
}
.testimonial-author .author-img img {
   width: 56px;
   height: 56px;
   object-fit: cover;
}
.testimonial blockquote {
   font-size: 1.08rem;
   color: #495057;
   font-style: italic;
} 