/* Disease Page Css Sections */
.depression-hero{
    min-height:600px;
    background-image:url('https://images.unsplash.com/photo-1516302752625-fcc3c50ae61f?q=80&w=2070&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    position:relative;
    display:flex;
    align-items:center;
}

.hero-overlay{
    width:100%;
    min-height:600px;
    display:flex;
    align-items:center;
    background:rgba(11,59,145,0.72);
}

.depression-hero h1{
    font-size:56px;
    line-height:1.2;
}

.depression-hero p{
    font-size:18px;
    max-width:750px;
    margin:auto;
}

.depression-support{
    background:#f8fbff;
}

.depression-support h2{
    color:#0b3b91;
    font-size:42px;
}

.feature-box{
    background:#fff;
    border-radius:15px;
    padding:20px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

.feature-box:hover{
    transform:translateY(-5px);
}

.feature-box i{
    font-size:30px;
    color:#0b3b91;
    margin-bottom:12px;
}

.feature-box h6{
    margin:0;
    font-weight:600;
}

.image-box{
    position:relative;
}

.image-box img{
    width:100%;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.support-card{
    background:#fff;
    border-radius:20px;
    padding:30px 25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.4s;
}

.support-card:hover{
    transform:translateY(-8px);
}

.icon-circle{
    width:70px;
    height:70px;
    background:#e8f0ff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
}

.icon-circle i{
    font-size:28px;
    color:#0b3b91;
}

.support-card h5{
    color:#0b3b91;
    margin-bottom:15px;
    font-weight:700;
}

.support-card p{
    color:#666;
    margin-bottom:0;
}

.wellness-banner{
    background:#0b3b91;
    color:#fff;
    border-radius:25px;
    padding:40px;
}

.wellness-banner p{
    opacity:0.9;
}

.btn-primary{
    background:#0b3b91;
    border-color:#0b3b91;
}

.btn-primary:hover{
    background:#082f74;
    border-color:#082f74;
}

.btn-outline-primary{
    color:#0b3b91;
    border-color:#0b3b91;
}

.btn-outline-primary:hover{
    background:#0b3b91;
    border-color:#0b3b91;
}

/* OCD treatement section*/
.ocd-hero{
    background:url('../img/ocd.avif') center center/cover no-repeat;
}

/* Anxiety treatment section */
.anxiety-hero{
    background: linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("../img/anxiety-disease.jpeg");
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
}

/* Bipoler treatment section */
.bipolar-disorder-hero{
    background: linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("../img/bipolar-disorder-disease.jpeg");
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
}

/* Addiction treatment section */
.addiction-hero{
    background: linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("../img/addiction-disease.jpeg");
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
}

/* Sleep-disorders-section */
.sleep-disorder-hero{
    background: linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("../img/sleep-disease.jpeg");
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
}

/* Dementia-section */
.dementia-hero{
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url('../img/dementia-disease.jpeg');
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
}

/* ADHD-section */
.adhd-hero{
    background: linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url('../img/adhd-disease.jpeg');
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
}

@media(max-width:991px){
    .depression-support h2{
        font-size:34px;
    }

    .wellness-banner{
        text-align:center;
    }
    .depression-hero{
        min-height:500px;
    }

    .hero-overlay{
        min-height:500px;
    }

    .depression-hero h1{
        font-size:42px;
    }
}

@media(max-width:576px){

    .depression-support h2{
        font-size:28px;
    }

    .support-card{
        padding:25px 20px;
    }

    .wellness-banner{
        padding:30px 20px;
    }
    .depression-hero{
        min-height:420px;
    }

    .hero-overlay{
        min-height:420px;
    }

    .depression-hero h1{
        font-size:30px;
    }

    .depression-hero p{
        font-size:16px;
    }
}

