/*==================================
ABOUT BANNER
===================================*/

.about-banner{

position:relative;

width:100%;

height:420px;

overflow:hidden;

display:flex;

justify-content:center;

align-items:center;

}

/* Banner Image */

.banner-image{

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

object-fit:cover;

animation:zoomBanner 18s infinite alternate;

}

/* Dark Overlay */

.banner-overlay{

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,0,0,.55);

}

/* Banner Content */

.banner-content{

position:relative;

z-index:2;

text-align:center;

color:#fff;

}

.banner-content h1{

font-size:70px;

font-weight:700;

letter-spacing:2px;

margin-bottom:20px;

text-transform:uppercase;

}

.banner-content p{

font-size:20px;

margin:0;

}

.banner-content p i{

margin:0 10px;

color:#FFD54F;

}

/* Zoom Animation */

@keyframes zoomBanner{

0%{

transform:scale(1);

}

100%{

transform:scale(1.10);

}

}

/*=========================
TABLET
=========================*/

@media(max-width:991px){

.about-banner{

height:320px;

}

.banner-content h1{

font-size:48px;

}

.banner-content p{

font-size:18px;

}

}

/*=========================
MOBILE
=========================*/

@media(max-width:576px){

.about-banner{

height:230px;

}

.banner-content h1{

font-size:34px;

}

.banner-content p{

font-size:15px;

}

}
/*==========================
MISSION
===========================*/

.mission-section{

background:#f8fbff;

padding:80px 0;

}

.mission-box{

background:#fff;

padding:40px;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.4s;

height:100%;

text-align:center;

}

.mission-box:hover{

transform:translateY(-10px);

}

.mission-box .icon{

width:90px;

height:90px;

background:#0077C8;

color:#fff;

margin:auto;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:36px;

margin-bottom:25px;

}

.mission-box h3{

font-weight:700;

color:#003B73;

margin-bottom:20px;

}

.mission-box p{

line-height:30px;

color:#666;

}

@media(max-width:768px){

.mission-box{

padding:30px 20px;

}

}
/*==========================
THERAPISTS
===========================*/

.therapist-section{

padding:80px 0;

background:#ffffff;

}

.doctor-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.4s;

}

.doctor-card:hover{

transform:translateY(-12px);

}

.doctor-card img{

width:100%;

height:360px;

object-fit:cover;

}

.doctor-content{

padding:25px;

text-align:center;

}

.doctor-content h4{

font-weight:700;

color:#003B73;

}

.doctor-content span{

display:block;

color:#0077C8;

font-weight:600;

margin:10px 0;

}

.doctor-content p{

color:#666;

line-height:28px;

}

@media(max-width:768px){

.doctor-card img{

height:300px;

}

}
