.reviews-area{
    background:#fafafa;
    overflow:hidden;
}

.review-platforms{
    display:flex;
    flex-direction:column;
    gap:25px;
    height:100%;
    justify-content:center;
}

.review-card{
    background:#fff;
    border-radius:18px;
    padding:20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
    border:1px solid #f1f1f1;
}

.review-card:hover{
    transform:translateY(-5px);
}

.review-card img{
    width:100%;
    max-width:220px;
    margin:auto;
    display:block;
}

.testimonial-slider{
    position:relative;
    padding:0 80px;
}

.testimonial-item{
    background:#fff;
    border-radius:20px;
    padding:45px 35px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    min-height:470px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.testimonial-img{
    margin-bottom:20px;
}

.testimonial-img img{
    width:140px;
    height:140px;
    border-radius:50%;
    object-fit:cover;
    border:6px solid #f5f5f5;
    box-shadow:0 5px 20px rgba(0,0,0,.10);
}

.testimonial-item h3{
    font-size:28px;
    font-weight:700;
    margin-bottom:15px;
    color:#222;
}

.testimonial-item p{
    font-size:17px;
    line-height:1.9;
    color:#666;
    max-width:700px;
    margin:0 auto 20px;
}

.rating{
    margin-top:auto;
}

.rating i{
    color:#ffb400;
    font-size:22px;
    margin:0 2px;
}

.testimonial-slider .owl-nav{
    display:block !important;
}

.testimonial-slider .owl-prev,
.testimonial-slider .owl-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px !important;
    height:55px !important;
    border-radius:50% !important;
    background:#c1275a !important;
    color:#fff !important;
    font-size:24px !important;
    line-height:55px !important;
    transition:.3s;
}

.testimonial-slider .owl-prev{
    left:0;
}

.testimonial-slider .owl-next{
    right:0;
}

.testimonial-slider .owl-prev:hover,
.testimonial-slider .owl-next:hover{
    background:#111 !important;
}

.testimonial-slider .owl-dots{
    margin-top:25px;
}

.testimonial-slider .owl-dot span{
    width:12px;
    height:12px;
}

.testimonial-slider .owl-dot.active span{
    background:#c1275a !important;
}

@media (max-width:991px){

    .review-platforms{
        margin-bottom:30px;
        flex-direction:row;
        justify-content:center;
        gap:20px;
    }

    .review-card{
        flex:1;
    }

    .testimonial-slider{
        padding:0 50px;
    }

    .testimonial-item{
        min-height:auto;
        padding:35px 25px;
    }
}

@media (max-width:767px){

    .review-platforms{
        flex-direction:column;
    }

    .testimonial-slider{
        padding:0;
    }

    .testimonial-item{
        padding:25px 20px;
        border-radius:15px;
    }

    .testimonial-img img{
        width:100px;
        height:100px;
    }

    .testimonial-item h3{
        font-size:22px;
    }

    .testimonial-item p{
        font-size:15px;
        line-height:1.8;
    }

    .testimonial-slider .owl-prev,
    .testimonial-slider .owl-next{
        width:42px !important;
        height:42px !important;
        line-height:42px !important;
        font-size:18px !important;
        top:auto;
        bottom:-60px;
    }

    .testimonial-slider .owl-prev{
        left:35%;
    }

    .testimonial-slider .owl-next{
        right:35%;
    }

    .testimonial-slider .owl-dots{
        margin-top:60px;
    }
}