.container-main {
    width: 100%;
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}

.testimonial-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.testimonial-item {
    width: 350px;
    border: 1px solid #e0e0e0;
    border-radius: 1.25rem;
    background-color: #ffffff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 1.5rem;
    height: 100%;
    min-height: 370px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    /* soft shadow */
}

.testimonial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
    /* lifted effect */
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #80d0c7;
    object-fit: cover;
}

.slick-slide {
    margin: 10px;
}

.testimonial-bottom {
    /* position: absolute;
        bottom: 20px; */
    margin-top: auto;
    padding-top: 1rem;
}

.cs-reviewer-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #80d0c7;
    object-fit: cover;
}

.review-desc {
    font-style: italic;
    color: #444;
    font-size: 1rem;
    /* min-height: 90px; */
    /* max-height: 150px; */
    height: 150px;
    overflow: hidden;
    font-weight: 400;
}

.cs-readmore-btn {
    color: #00a896;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    background: none;
    text-transform: uppercase;
}

.cs-readmore-btn:hover {
    color: #02c39a;
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #028090;
}

.source-review {
    font-size: 0.9rem;
}

.modal-profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #80d0c7;
    object-fit: cover;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
}

.modal-content {
    border-radius: 0.8rem;
    padding-top: 40px;
    overflow: visible;
}

.modal-review-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

.modal-reviewer-name {
    font-weight: 600;
}

.modal-body {
    padding-top: 1.5rem;
}

.custom-slick-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #05668d;
    background-color: transparent;
    color: #05668d;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.custom-slick-arrow i {
    color: #05668d;
}

.slick-prev {
    left: -50px;
    /* Adjust based on your layout */
}

.slick-next {
    right: -50px;
    /* Adjust based on your layout */
}

/* Remove default Slick arrow icons */
.slick-prev::before,
.slick-next::before {
    display: none !important;
    content: none !important;
}

/* Responsive positioning for Slick arrows */
/* @media (max-width: 991.98px) {

        .slick-prev,
        .slick-next {
            top: 70%;
        }

        .slick-prev {
            left: 10px;
        }

        .slick-next {
            right: 10px;
        }
    } */

@media (max-width: 1261px) {
    .custom-slick-arrow {
        display: none !important;
    }
}
