@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

.premium-testimonial{

    width:100%;
    /*max-width:900px;*/

    margin:auto;

    /*font-family:'Inter',sans-serif;*/
    padding-top: 1.0rem;
    padding-bottom: 20px;

}

.testimonial-header{

    text-align:center;
    margin-bottom:40px;

}

.mini-title{

    display:inline-block;

    font-size:12px;

    letter-spacing:2px;

    color:#3aa9ff;

    font-weight:700;

}

.testimonial-header h2{

    margin:12px 0;

    font-size:40px;

    font-weight:800;

    color:#17324d;

}

.testimonial-header p{

    max-width:650px;

    margin:auto;

    color:#7b8ca4;

    line-height:1.8;

}

.testimonial-slider{

    position:relative;

}

.testimonial-card{

    position:absolute;

    inset:0;

    padding:40px;

    border-radius:22px;

    background:linear-gradient(
            180deg,
            #ffffff,
            #f7fbff
    );

    border:1px solid #edf2f8;

    box-shadow:
            0 30px 60px rgba(26,79,140,.08),
            0 10px 25px rgba(26,79,140,.05);

    opacity:0;

    transform:translateX(40px);

    pointer-events:none;

    transition:
            opacity .8s,
            transform .8s;

}

.testimonial-card.active{

    opacity:1;

    transform:translateX(0);

    position:relative;

    pointer-events:auto;

}

.quote-icon{

    width:54px;

    height:54px;

    border-radius:50%;

    background:#eef7ff;

    color:#3aa9ff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    margin-bottom:20px;

}

.stars{

    color:#ffb400;

    letter-spacing:3px;

    margin-bottom:18px;

}

.testimonial-text{

    font-size:18px;

    line-height:1.9;

    color:#44566f;

    margin-bottom:35px;

}

.testimonial-footer-right{
    margin-left:auto;

    opacity:.75;
}

.testimonial-footer{

    display:flex;

    align-items:center;

    gap:18px;

}

.avatar{

    width:56px;

    height:56px;

    border-radius:50%;

    background:linear-gradient(
            135deg,
            #55b9ff,
            #1976d2
    );

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:700;

}

.testimonial-footer h4{

    margin:0;

    color:#17324d;

}

.testimonial-footer span{

    color:#8393a8;

    font-size:14px;

}

.testimonial-footer img{

    margin-left:auto;

    opacity:.75;

}

.testimonial-dots{

    display:flex;

    justify-content:center;

    gap:12px;

    margin-top:26px;

}

.dot{

    width:10px;

    height:10px;

    border:none;

    border-radius:50%;

    background:#c8d5e4;

    transition:.4s;

    cursor:pointer;

}

.dot.active{

    width:34px;

    border-radius:30px;

    background:#1ea5ff;

}