/*===================================
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;
}


/*===================================
COMMON
===================================*/

.section-badge{
    display:inline-block;
    background:#EAFDFC;
    color:#053F7E;
    padding:10px 20px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.section-title{
    font-family:'Outfit',sans-serif;
    font-size:48px;
    font-weight:800;
    color:#053F7E;
    margin-bottom:20px;
}


/*===================================
DOCTOR INTRO
===================================*/

.doctor-intro{
    background:#ffffff;
}

.doctor-intro img{
    width:100%;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.doctor-intro p{
    color:#666;
    line-height:1.9;
    font-size:16px;
}


/*===================================
DOCTORS LIST
===================================*/

.doctors-list-section{
    background:#f8fbff;
}

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

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

.doctor-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.5s;
}

.doctor-card:hover img{
    transform:scale(1.08);
}

.doctor-content{
    padding:25px;
    text-align:center;
}

.doctor-content h4{
    font-family:'Outfit',sans-serif;
    font-size:24px;
    font-weight:700;
    color:#053F7E;
    margin-bottom:8px;
}

.doctor-content span{
    display:block;
    color:#16D3D3;
    font-weight:600;
    margin-bottom:12px;
}

.doctor-content p{
    color:#666;
    margin-bottom:20px;
}

.doctor-btn{
    display:inline-block;
    padding:12px 28px;
    border-radius:50px;
    background:linear-gradient(
    135deg,
    #053F7E,
    #16D3D3
    );
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.doctor-btn:hover{
    color:#fff;
    transform:translateY(-3px);
}


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

.doctor-cta{
    padding:100px 0;
    background:#ffffff;
}

.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:800px;
    margin:auto;
    margin-bottom:30px;
    line-height:1.9;
    font-size:17px;
}

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

.cta-box .appointment-btn:hover{
       background:
    linear-gradient(
    135deg,
    #000000,
    #16D3D3
    );
    transform: translateY(-3px);
   
}


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

@media(max-width:991px){

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

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

    .section-title{
        font-size:36px;
    }

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

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

}

@media(max-width:576px){

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

    .section-title{
        font-size:28px;
    }

    .doctor-card img{
        height:280px;
    }

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

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

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

}