/* Global Testimonials Styling (Premium Dark Theme) */
#testimonials {
    padding: 120px 0;
    background: #151515;
    color: #fff;
    overflow: hidden;
    width: 100%;
}

.testimonialsHead {
    text-align: center;
    margin-bottom: 80px;
}

.testimonialsHead h2 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #fff;
}

.testimonialsHead p {
    font-size: 18px;
    color: #ccc;
    opacity: 0.8;
}

.testimonialSlider {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonialSliderBox {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 50px;
    transition: all 0.3s ease;
}

.testimonialSliderCol:first-child {
    flex: 0 0 150px;
    text-align: center;
}

.testimonialSliderCol img.img-fluid {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #38a4a7;
    margin-bottom: 20px;
}

.testimonialSliderCol h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}

.testimonialSliderCol:last-child {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.testimonialSliderCol h4:last-child {
    font-size: 24px;
    line-height: 1.6;
    color: #eee;
    font-weight: 500;
    font-style: italic;
    margin: 0;
}

.testimonialSliderActions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.testimonialSliderActions button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonialSliderActions button:hover {
    background: #38a4a7;
    border-color: #38a4a7;
    transform: scale(1.1);
}

[dir="rtl"] .testimonialSliderBox {
    flex-direction: row-reverse;
    text-align: right;
}

@media (max-width: 991px) {
    .testimonialSliderBox {
        padding: 40px;
        gap: 30px;
    }

    .testimonialSliderCol h4:last-child {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    #testimonials {
        padding: 80px 0;
    }

    .testimonialsHead h2 {
        font-size: 36px;
    }

    .testimonialSliderBox {
        flex-direction: column;
        text-align: center;
        padding: 40px 25px;
        gap: 30px;
    }

    .testimonialSliderCol:first-child {
        flex: 0 0 auto;
    }

    .testimonialSliderCol h4:last-child {
        font-size: 19px;
    }
}