/* Testimonial Slider Custom Styles */
/* Glassmorphism card background */
.testi-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.testi-card:hover {
    transform: translateY(-5px);
}
/* Swiper pagination styling */
.swiper-pagination-bullet {
    background: #de792e69;
    opacity: 0.7;
    width: 12px;
    height: 12px;
    margin: 0 4px !important;
    transition: opacity 0.3s;
}
/* Swiper slide defaults are handled by the library */
/* Ensure slider container respects layout */
.testimonial-swiper {
    padding: 2rem 0;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-swiper .swiper-slide {
        width: 100%;
    }
}
