.testimonial-slider {
    position: relative;
    padding: 40px 0;
}

.testimonial-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-content {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
    position: relative;
    padding-top: 40px;
}

.testimonial-content::before {
    content: '"';
    font-size: 60px;
    color: #e0e0e0;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: serif;
    line-height: 1;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-image {
    flex-shrink: 0;
}

.testimonial-image img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

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

.testimonial-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px;
    color: #333;
}

.testimonial-title {
    font-size: 14px;
    color: #666;
    display: block;
}

/* Navigation Styles */
.testimonial-slider .swiper-button-next,
.testimonial-slider .swiper-button-prev {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #333;
}

.testimonial-slider .swiper-button-next:after,
.testimonial-slider .swiper-button-prev:after {
    font-size: 16px;
}

.testimonial-slider .swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.testimonial-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
}

.testimonial-slider .swiper-pagination-bullet-active {
    background: #333;
}

/* Responsive Styles */
@media (max-width: 767px) {
    .testimonial-meta {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-info {
        text-align: center;
    }
    
    .testimonial-content {
        font-size: 14px;
    }
    
    .testimonial-name {
        font-size: 16px;
    }
}
