/* =========================================
   GOOGLE REVIEWS SECTION
========================================= */

.reviews-section{
    padding:120px 0;
    background:#002147;
    position:relative;
    overflow:hidden;
}

/* =========================================
   HEADING
========================================= */

.reviews-heading{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.reviews-heading span{
    display:inline-block;
    background:rgba(255,180,0,.15);
    color:#ffb400;
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.reviews-heading h2{
    font-family:'Manrope',sans-serif;
    font-size:48px;
    font-weight:900;
    line-height:1.15;
    color:#ffffff;
    margin-bottom:20px;
}

.reviews-heading p{
    font-size:18px;
    line-height:1.8;
    color:rgba(255,255,255,.75);
}

/* =========================================
   REVIEWS META
========================================= */

.reviews-meta{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    margin-top:20px;
    margin-bottom:25px;
    font-size:16px;
    font-weight:500;
    color:#ffffff;
}

.reviews-btn{
    display:inline-block;
    background:#ffb400;
    color:#002147;
    padding:14px 28px;
    border-radius:10px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.reviews-btn:hover{
    transform:translateY(-3px);
}

/* =========================================
   REVIEW SLIDER
========================================= */

.reviews-slider{
    width:100%;
    overflow:hidden;
    padding:20px 0;
    position:relative;
}

.reviews-track{
    display:flex;
    gap:30px;
    width:max-content;
    animation:reviewSlider 20s linear infinite;
}

.reviews-track:hover{
    animation-play-state:paused;
}

@keyframes reviewSlider{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

/* =========================================
   REVIEW CARD
========================================= */

.review-card{
    width:360px;
    min-height:440px;
    background:linear-gradient(180deg,#ffffff 0%,#f5f7fb 100%);
    padding:35px;
    border-radius:24px;
    border:1px solid rgba(0,33,71,.08);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
    transition:.35s ease;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.review-card:hover{
    transform:translateY(-10px);
    border-color:#ffb400;
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}

/* =========================================
   TOP AREA
========================================= */

.review-top{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:25px;
}

.review-top img{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #ffb400;
}

.review-top h4{
    font-size:20px;
    font-weight:700;
    color:#002147;
    margin-bottom:5px;
}

.review-top span{
    font-size:14px;
    color:#777;
}

/* =========================================
   STARS
========================================= */

.review-stars{
    font-size:22px;
    color:#ffb400;
    margin-bottom:20px;
}

/* =========================================
   REVIEW TEXT
========================================= */

.review-card p{
    font-size:15px;
    line-height:1.9;
    color:#555;
    margin-bottom:25px;
}

/* =========================================
   GOOGLE BADGE
========================================= */

.google-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#f3f6fb;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    color:#002147;
}

.google-badge img{
    width:20px;
    height:20px;
    object-fit:contain;
}

.google-badge i{
    font-size:18px;
    color:#4285F4;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .reviews-heading h2{
        font-size:38px;
    }

    .review-card{
        width:320px;
    }

}

@media(max-width:768px){

    .reviews-section{
        padding:80px 0;
    }

    .reviews-heading h2{
        font-size:30px;
    }

    .reviews-heading p{
        font-size:16px;
    }

    .review-card{
        width:280px;
        min-height:auto;
        padding:25px;
    }

    .review-top img{
        width:70px;
        height:70px;
    }

}