*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', sans-serif;
}

body{
    background:linear-gradient(120deg,#fdfbfb,#ebedee);
}

/* Section */
.review-section{
    padding:80px 20px;
    text-align:center;
}

.review-title{
    font-size:38px;
    margin-bottom:40px;
    font-weight:700;
    color:#222;
}

/* Slider Wrapper */
.review-wrapper{
    max-width:1100px;
    margin:auto;
    overflow:hidden;
    position:relative;
}

/* Track */
.review-track{
    display:flex;
    transition:0.7s cubic-bezier(.4,0,.2,1);
}

/* Card */
.review-card{
    min-width:33.333%;
    padding:20px;
}

.review-box{
    background:rgba(255,255,255,0.8);
    backdrop-filter:blur(12px);
    border-radius:20px;
    padding:35px;
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
    transition:0.5s;
}

.review-box:hover{
    transform:translateY(-10px) scale(1.02);
}

.review-box img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:15px;
}

.review-box h3{
    font-size:20px;
}

.review-stars{
    color:#f4b400;
    margin:10px 0;
}

.review-box p{
    color:#555;
    line-height:1.6;
    font-size:15px;
}

/* Buttons */
.slider-btn{
    position:absolute;
    top:45%;
    transform:translateY(-50%);
    background:#ff4b2b;
    color:white;
    border:none;
    width:45px;
    height:45px;
    border-radius:50%;
    cursor:pointer;
    font-size:18px;
    box-shadow:0 8px 20px rgba(0,0,0,0.2);
}

.prev{ left:-10px;}
.next{ right:-10px;}

/* Dots */
.dots{
    margin-top:25px;
}

.dot{
    display:inline-block;
    width:12px;
    height:12px;
    background:#ccc;
    border-radius:50%;
    margin:0 6px;
    cursor:pointer;
}

.dot.active{
    background:#ff4b2b;
}

/* Responsive */
@media(max-width:900px){
    .review-card{ min-width:50%; }
}

@media(max-width:600px){
    .review-card{ min-width:100%; }
    .review-title{ font-size:28px; }
}