/*==================================
PAGE BANNER
===================================*/

.page-banner{

position:relative;
height:380px;
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;

}

.banner-img{

width:100%;
height:100%;
object-fit:cover;
position:absolute;
left:0;
top:0;

}

.banner-overlay{

position:absolute;
width:100%;
height:100%;
background:rgba(0,58,115,.65);

}

.banner-content{

position:relative;
z-index:2;
text-align:center;
color:#fff;

}

.banner-content h1{

font-size:58px;
font-weight:700;
margin-bottom:15px;

}

.banner-content p{

font-size:18px;

}

.banner-content a{

color:#FFD54F;
text-decoration:none;

}

.banner-content i{

margin:0 10px;

}

/*==================================
THERAPY SECTION
===================================*/

.therapy-section{

padding:80px 0;
background:#fff;

}

.therapy-image img{

width:100%;
border-radius:20px;
box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.section-tag{

display:inline-block;
padding:8px 20px;
background:#EAF6FF;
color:#0077C8;
border-radius:30px;
font-weight:700;
margin-bottom:20px;

}

.therapy-title{

font-size:40px;
font-weight:700;
color:#003B73;
margin-bottom:20px;

}

.therapy-section p{

font-size:17px;
line-height:30px;
color:#666;

}

.therapy-list{

list-style:none;
padding:0;

}

.therapy-list li{

margin-bottom:15px;
font-size:16px;
color:#003B73;

}

.therapy-list i{

color:#28a745;
margin-right:10px;

}

.therapy-btn{

display:inline-block;
margin-top:25px;
padding:14px 35px;
background:#0077C8;
color:#fff;
text-decoration:none;
border-radius:40px;
font-weight:600;
transition:.3s;

}

.therapy-btn:hover{

background:#005ea8;
color:#fff;

}

/*==================================
MOBILE
===================================*/

@media(max-width:991px){

.page-banner{

height:280px;

}

.banner-content h1{

font-size:38px;

}

.therapy-title{

font-size:30px;

}

}

@media(max-width:576px){

.page-banner{

height:420px;

}

.banner-content h1{

font-size:48px;

}

.banner-content p{

font-size:14px;

}

.therapy-title{

font-size:26px;

}

.therapy-section{

padding:50px 0;

}

}

/*==================================
BANNER
===================================*/

.page-banner{

position:relative;

height:380px;

overflow:hidden;

display:flex;

align-items:center;

justify-content:center;

}

.banner-img{

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

object-fit:cover;

animation:bannerZoom 18s infinite alternate;

}

.banner-overlay{

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,58,115,.65);

}

.banner-content{

position:relative;

z-index:2;

text-align:center;

color:#fff;

}

.banner-content h1{

font-size:58px;

font-weight:700;

margin-bottom:15px;

}

.banner-content p{

font-size:18px;

margin:0;

}

.banner-content a{

color:#FFD54F;

text-decoration:none;

}

.banner-content i{

margin:0 10px;

color:#fff;

}

@keyframes bannerZoom{

0%{

transform:scale(1);

}

100%{

transform:scale(1.10);

}

}


/*==================================
THERAPY CONTENT
===================================*/

.therapy-section{

padding:85px 0;

background:#fff;

}

.therapy-image{

overflow:hidden;

border-radius:22px;

}

.therapy-image img{

width:100%;

display:block;

border-radius:22px;

box-shadow:0 20px 45px rgba(0,0,0,.15);

transition:.5s;

}

.therapy-image:hover img{

transform:scale(1.05);

}

.section-tag{

display:inline-block;

padding:8px 20px;

background:#EAF6FF;

color:#0077C8;

border-radius:30px;

font-weight:700;

margin-bottom:20px;

}

.therapy-title{

font-size:40px;

line-height:1.3;

font-weight:700;

color:#003B73;

margin-bottom:20px;

}

.therapy-section p{

font-size:17px;

line-height:30px;

color:#666;

}

.therapy-list{

list-style:none;

padding:0;

margin:0;

}

.therapy-list li{

font-size:16px;

font-weight:600;

color:#003B73;

margin-bottom:16px;

}

.therapy-list i{

color:#28a745;

margin-right:10px;

}

.therapy-buttons{

margin-top:25px;

display:flex;

gap:12px;

flex-wrap:wrap;

}

.therapy-btn,
.call-btn{

display:inline-flex;

align-items:center;

gap:8px;

padding:14px 28px;

border-radius:40px;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.therapy-btn{

background:#0077C8;

color:#fff;

}

.therapy-btn:hover{

background:#005ea8;

color:#fff;

transform:translateY(-3px);

}

.call-btn{

background:#003B73;

color:#fff;

}

.call-btn:hover{

background:#00284f;

color:#fff;

transform:translateY(-3px);

}


/*==================================
BENEFITS
===================================*/

.benefits-section{

padding:80px 0;

background:#F7FBFF;

}

.section-title{

font-size:40px;

font-weight:700;

color:#003B73;

margin:15px 0;

}

.benefits-section .text-center p{

color:#666;

font-size:17px;

}

.benefit-card{

height:100%;

background:#fff;

padding:35px 28px;

text-align:center;

border-radius:20px;

box-shadow:0 12px 35px rgba(0,0,0,.07);

transition:.4s;

}

.benefit-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 40px rgba(0,119,200,.15);

}

.benefit-icon{

width:70px;

height:70px;

margin:0 auto 20px;

display:flex;

align-items:center;

justify-content:center;

background:#EAF6FF;

color:#0077C8;

border-radius:50%;

font-size:28px;

transition:.4s;

}

.benefit-card:hover .benefit-icon{

background:#0077C8;

color:#fff;

transform:rotate(10deg);

}

.benefit-card h4{

color:#003B73;

font-weight:700;

margin-bottom:15px;

}

.benefit-card p{

color:#666;

line-height:28px;

margin:0;

}


/*==================================
CTA
===================================*/

.autism-cta{

padding:70px 0;

background:#fff;

}

.cta-box{

padding:55px 40px;

border-radius:25px;

text-align:center;

background:linear-gradient(135deg,#0077C8,#00AEEF);

color:#fff;

box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.cta-box h2{

font-size:38px;

font-weight:700;

margin-bottom:15px;

}

.cta-box p{

font-size:18px;

margin-bottom:25px;

}

.cta-btn,
.cta-whatsapp{

display:inline-flex;

align-items:center;

gap:8px;

padding:14px 28px;

border-radius:40px;

text-decoration:none;

font-weight:700;

margin:5px;

transition:.3s;

}

.cta-btn{

background:#fff;

color:#0077C8;

}

.cta-btn:hover{

background:#FFD54F;

color:#003B73;

}

.cta-whatsapp{

background:#25D366;

color:#fff;

}

.cta-whatsapp:hover{

background:#1ebe5d;

color:#fff;

}


/*==================================
TABLET
===================================*/

@media(max-width:991px){

.page-banner{

height:300px;

}

.banner-content h1{

font-size:42px;

}

.therapy-title{

font-size:32px;

}

.therapy-section{

padding:60px 0;

}

}


/*==================================
MOBILE
===================================*/

@media(max-width:576px){

.page-banner{

height:430px;

}

.banner-content h1{

font-size:30px;

}

.banner-content p{

font-size:14px;

}

.therapy-section{

padding:50px 0;

}

.therapy-title{

font-size:27px;

}

.therapy-section p{

font-size:15px;

line-height:28px;

}

.therapy-buttons{

display:block;

}

.therapy-btn,
.call-btn{

width:100%;

justify-content:center;

margin-bottom:10px;

}

.section-title{

font-size:28px;

}

.benefits-section{

padding:55px 0;

}

.cta-box{

padding:40px 20px;

}

.cta-box h2{

font-size:28px;

}

.cta-box p{

font-size:16px;

}

.cta-btn,
.cta-whatsapp{

width:100%;

justify-content:center;

}

}
