/*===================================
PAGE BANNER
===================================*/

.page-banner{
    padding:120px 0;
    background:
    linear-gradient(
    rgba(5,63,126,.85),
    rgba(5,63,126,.85)
    ),
    url('../images/bg-img.jpg');

    background-size:cover;
    background-position:center;
    text-align:center;
    color:#fff;
}

.page-banner h1{
    font-family:'Outfit',sans-serif;
    font-size:60px;
    font-weight:800;
    margin-bottom:15px;
}

.breadcrumb-nav{
    font-size:16px;
}

.breadcrumb-nav a{
    color:#16D3D3;
    text-decoration:none;
}

.breadcrumb-nav span{
    margin:0 8px;
}

/*===================================
GOOGLE RATING SECTION
===================================*/

.rating-section{
    background:#ffffff;
}

.rating-box{
    max-width:600px;
    margin:auto;
    text-align:center;
    background:#fff;
    padding:50px;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.google-icon{
    width:90px;
    height:90px;
    margin:auto;
    margin-bottom:20px;
    border-radius:50%;
    background:#f8fbff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.google-icon i{
    font-size:45px;
    color:#4285F4;
}

.rating-box h2{
    font-family:'Outfit',sans-serif;
    font-size:60px;
    font-weight:800;
    color:#053F7E;
    margin-bottom:10px;
}

.rating-box p{
    color:#666;
    margin-top:10px;
}

.stars{
    color:#ffc107;
    font-size:18px;
}

/*===================================
TESTIMONIAL SECTION
===================================*/

.testimonial-section{
    background:#f8fbff;
}

.testimonial-card{
    background:#fff;
    border-radius:25px;
    padding:30px;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.testimonial-card::before{
    content:'❝';
    position:absolute;
    right:20px;
    top:10px;
    font-size:80px;
    color:rgba(22,211,211,.12);
    font-family:serif;
}

.testimonial-top{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.patient-avatar{
    width:60px;
    height:60px;
    border-radius:50%;
    background:linear-gradient(
    135deg,
    #053F7E,
    #16D3D3
    );
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:22px;
    font-weight:700;
}

.testimonial-top h5{
    margin:0;
    color:#053F7E;
    font-family:'Outfit',sans-serif;
    font-weight:700;
}

.testimonial-top span{
    color:#777;
    font-size:14px;
}

.testimonial-card p{
    color:#666;
    line-height:1.9;
    margin-bottom:0;
}

/*===================================
CTA SECTION
===================================*/

.testimonial-cta{
    padding:100px 0;
    background:#fff;
}

.cta-box{
    background:
    linear-gradient(
    135deg,
    #053F7E,
    #16D3D3
    );

    border-radius:30px;
    padding:70px 50px;
    text-align:center;
    color:#fff;
}

.cta-box h2{
    font-family:'Outfit',sans-serif;
    font-size:48px;
    font-weight:800;
    margin-bottom:20px;
}

.cta-box p{
    max-width:700px;
    margin:auto;
    margin-bottom:30px;
    line-height:1.9;
}

.appointment-btn{
    display:inline-block;
    padding:15px 35px;
    background:#fff;
    color:#053F7E;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.appointment-btn:hover{
    transform:translateY(-3px);
    color:#053F7E;
}

/*===================================
HOVER BORDER EFFECT
===================================*/

.testimonial-card::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:4px;
    background:#16D3D3;
    transition:.4s;
}

.testimonial-card:hover::after{
    width:100%;
}

/*===================================
RESPONSIVE
===================================*/

@media(max-width:991px){

    .page-banner{
        padding:90px 0;
    }

    .page-banner h1{
        font-size:42px;
    }

    .rating-box{
        padding:40px 25px;
    }

    .cta-box{
        padding:50px 30px;
    }

    .cta-box h2{
        font-size:36px;
    }

}

@media(max-width:576px){

    .page-banner h1{
        font-size:32px;
    }

    .rating-box h2{
        font-size:42px;
    }

    .testimonial-card{
        padding:25px;
    }

    .cta-box{
        padding:40px 20px;
    }

    .cta-box h2{
        font-size:28px;
    }

    .cta-box p{
        font-size:15px;
    }

}