/* Testimonial Carousel Navigation Buttons */
.testimonial-nav-buttons {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    z-index: 10;
}

.testimonial-nav-btn {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: rgba(175, 24, 88, 0.9);
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.testimonial-nav-btn:hover {
    background: rgba(175, 24, 88, 1);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.testimonial-nav-btn:active {
    transform: scale(0.95);
}

.testimonial-nav-btn i {
    font-weight: bold;
}

/* Position adjustments for different screen sizes */
@media (max-width: 1199px) {
    .testimonial-nav-buttons {
        /* Spanning left to right, no right adjustment needed */
    }

    .testimonial-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .testimonial-nav-buttons {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        justify-content: center;
        margin-top: 20px;
        flex-direction: row;
    }
    
    .testimonial-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .testimonial-nav-buttons {
        gap: 15px;
    }
    
    .testimonial-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* Hide navigation buttons on very small screens if needed */
@media (max-width: 480px) {
    .testimonial-nav-buttons {
        gap: 10px;
    }
    
    .testimonial-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}