/* styles.css */
:root {
    --primary-color: #4f46e5;
    --secondary-color: #10b981;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --gray-color: #94a3b8;
    --border-radius: 12px;
    --box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto 3rem;
}
.testimonial-slider {
    padding: 2rem 0;
    overflow: hidden;
    position: relative;
}
.testimonial-card {
    background: #fff;
    border-radius: 5px;
    padding: 2rem;
    margin: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 350px;
    display: flex;
    flex-direction: column;
}
.swiper-slide-active .testimonial-card {
    transform: scale(1.03);
}
.testimonial-content {
    margin-bottom: 2rem;
    position: relative;
}
.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -1.5rem;
    left: -1rem;
}
.testimonial-text {
    font-size: 15px;
    color: var(--dark-color);
    text-align: left;
    position: relative;
    z-index: 1;
    margin-bottom: 0 !important;
}
.rating {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    text-align: left;
    /* padding-bottom: 20px;
    border-bottom: 1px solid #efefef; */
    margin-bottom: 20px;
}
.author-avatar {
    width: 70px;
    height: 70px;
    object-fit: cover;
    margin-right: 1rem;
    border-radius: 50% !important;
}
.author-info {
    flex: 1;
}
.author-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: crimson;
    margin-bottom: 0;
}
.author-title {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: deepskyblue;
}
/* .swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color) !important;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.5rem !important;
    font-weight: bold;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: scale(1.1);
    background: var(--primary-color);
    color: white !important;
} */
.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: var(--gray-color) !important;
    opacity: 0.5 !important;
}
.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
    opacity: 1 !important;
}
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }
    .testimonial-card {
        padding: 1.5rem;
    }
    .testimonial-text {
        font-size: 1rem;
    }
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}