/* Testimonial Section */
.testimonial-section {
    background: linear-gradient(90deg, #496AB2 0%, #8061AA 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/><line x1="10" y1="10" x2="30" y2="10" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/><line x1="70" y1="20" x2="90" y2="20" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.testimonial-swiper-container {
    position: relative;
    padding: 60px 0;
}

.testimonial-swiper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-swiper-container {
        padding: 40px 0;
    }
    
    .testimonial-swiper {
        padding: 0 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
        min-height: 250px;
    }
    
    .quotation-marks {
        font-size: 60px;
        top: 15px;
        right: 20px;
    }
    
    .testimonial-text {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .author-name {
        font-size: 18px;
    }
    
    .author-title {
        font-size: 14px;
    }
    
    .testimonial-navigation {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .testimonial-swiper-container {
        padding: 30px 0;
    }
    
    .testimonial-swiper {
        padding: 0 15px;
    }
    
    .testimonial-card {
        padding: 25px 15px;
        min-height: 220px;
    }
    
    .quotation-marks {
        font-size: 50px;
        top: 10px;
        right: 15px;
    }
    
    .testimonial-text {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .author-name {
        font-size: 16px;
    }
    
    .author-title {
        font-size: 13px;
    }
    
    .author-image {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-rating {
        margin-top: 15px;
    }
    
    .star {
        font-size: 16px;
    }
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quotation-marks {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    color: #496AB2;
    font-weight: bold;
    line-height: 1;
    opacity: 0.3;
}

.testimonial-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 30px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #496AB2 0%, #8061AA 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.author-title {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
}

.star {
    font-size: 1.2rem;
    color: #ddd;
    transition: color 0.3s ease;
}

.star.filled {
    color: #ffc107;
}

/* Navigation Container */
.testimonial-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

/* Navigation Arrows */
.testimonial-next,
.testimonial-prev {
    width: 50px !important;
    height: 50px !important;
    background: white !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    color: #496AB2 !important;
    margin: 0 !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
}

.testimonial-next:after,
.testimonial-prev:after {
    font-size: 18px !important;
    font-weight: 600 !important;
}

.testimonial-next:hover,
.testimonial-prev:hover {
    background: #496AB2 !important;
    color: white !important;
    transform: scale(1.1) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-swiper {
        padding: 0 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
        min-height: 250px;
    }
    
    .quotation-marks {
        font-size: 60px;
        top: 15px;
        right: 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-navigation {
        margin-top: 20px;
        gap: 10px;
    }
    
    .testimonial-next,
    .testimonial-prev {
        width: 40px !important;
        height: 40px !important;
    }
    
    .testimonial-next:after,
    .testimonial-prev:after {
        font-size: 16px !important;
    }
}

@media (max-width: 576px) {
    .testimonial-swiper {
        padding: 0 10px;
    }
    
    .testimonial-card {
        padding: 25px 15px;
        min-height: 220px;
    }
    
    .quotation-marks {
        font-size: 50px;
        top: 10px;
        right: 15px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .author-image {
        width: 50px;
        height: 50px;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .author-title {
        font-size: 0.85rem;
    }
    
    .testimonial-navigation {
        margin-top: 15px;
        gap: 8px;
    }
    
    .testimonial-next,
    .testimonial-prev {
        width: 35px !important;
        height: 35px !important;
    }
    
    .testimonial-next:after,
    .testimonial-prev:after {
        font-size: 14px !important;
    }
}
