.testimonial_t4 {
    display: flex;
    width: 100%;
    height: 600px;
    background-color: #f5f1ed;
    font-family: Arial, sans-serif;
}

.testimonial_t4 .swiper {
    width: 100%;
    height: 100%;
}

.testimonial_t4 .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial_t4 .testimonial-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial_t4 .testimonial-content .stars {
    margin-bottom: 20px;
}

.testimonial_t4 .testimonial-content p {
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 10.5em;
    line-clamp: 7;
}

.testimonial_t4 .testimonial-content .author {
    font-style: italic;
}

.testimonial_t4 .testimonial-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.testimonial_t4 .swiper-button-next_t4,
.testimonial_t4 .swiper-button-prev_t4 {
    left: 0;
    right: 0;
    top: 0;
    margin: 0;
    position: relative;
    width: 35px !important;
    height: 35px !important;
    background-color: var(--primary);
    border-radius: 50%;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial_t4 .swiper-button-next_t4 svg,
.testimonial_t4 .swiper-button-prev_t4 svg {
    stroke: white;
}

.testimonial_t4 .swiper-button-next_t4:hover,
.testimonial_t4 .swiper-button-prev_t4:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

@media (max-width: 575px) {
    .testimonial_t4 .swiper-button-next_t4,
    .testimonial_t4 .swiper-button-prev_t4 {
        width: 32px !important;
        height: 32px !important;
    }
}

.testimonial_t4 .swiper-button-disabled {
    opacity: 0.7 !important;
    pointer-events: auto !important;
    cursor: not-allowed !important;
}

.testimonial_t4 .navigation-arrows {
    position: absolute;
    display: flex;
    padding: 0px 40px;
    gap: 10px;
    bottom: 35px;
    z-index: 10;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .testimonial_t4 {
        flex-direction: column;
        height: auto;
        min-height: 700px;
    }

    .testimonial_t4 .testimonial-image-slider {
        order: -1;
        height: 300px;
    }

    .testimonial_t4 .testimonial-content {
        padding: 20px;
    }

    .testimonial_t4 .testimonial-content p {
        line-height: 1.4;
        margin-bottom: 15px;
        text-align: center;
    }

    .testimonial_t4 .navigation-arrows {
        position: relative;
        justify-content: center;
        padding: 15px 0;
        bottom: 0px;
    }

    .testimonial_t4 .testimonial-content .author {
        text-align: center;
    }

    .testimonial_t4 .testimonial-content .stars {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .testimonial_t4 {
        min-height: 600px;
    }

    .testimonial_t4 .testimonial-content {
        padding: 15px;
    }

    .testimonial_t4 .testimonial-content .stars {
        margin-bottom: 12px;
    }

    .testimonial_t4 .testimonial-content p {
        margin-bottom: 12px;
    }
}