.testimonial-slider-wrapper {
    position: relative;
    width: 100%;
    padding-top: 60px;
}

.testimonial-slider-wrapper .swiper {
    width: 100%;
    height: 100%;
    padding-bottom: 20px;
}

.testimonial-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-number {
    font-size: 48px;
    font-weight: 700;
    color: #999;
    line-height: 1;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    flex-grow: 1;
}

.testimonial-author {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}

.job-title {
    font-size: 14px;
    color: #666;
}

/* Navigation Arrows - Top Right */
.testimonial-slider-wrapper .swiper-button-next,
.testimonial-slider-wrapper .swiper-button-prev {
    position: absolute;
    top: 0;
    width: 40px;
    height: 40px;
    margin-top: 0;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.testimonial-slider-wrapper .swiper-button-next:after,
.testimonial-slider-wrapper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: 700;
}

.testimonial-slider-wrapper .swiper-button-next {
    right: 0;
}

.testimonial-slider-wrapper .swiper-button-prev {
    right: 50px;
    left: auto;
}

.testimonial-slider-wrapper .swiper-button-next:hover,
.testimonial-slider-wrapper .swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-item {
        padding: 20px;
    }
    
    .testimonial-number {
        font-size: 36px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .testimonial-slider-wrapper .swiper-button-next,
    .testimonial-slider-wrapper .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
    
    .testimonial-slider-wrapper .swiper-button-prev {
        right: 45px;
    }
}