/* ==================================
GOOGLE FONT
================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
}

/* ==================================
DEPARTMENTS HERO SECTION
================================== */

.department-hero{
    background:linear-gradient(
        135deg,
        #0A2E6D 0%,
        #123f92 100%
    );
    padding:60px 0 50px;
    position:relative;
    overflow:hidden;
}

.department-hero::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    top:-180px;
    left:-180px;
}

.department-hero::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(255,255,255,.04);
    bottom:-150px;
    right:-120px;
}

.hero-content{
    max-width:850px;
    margin:auto;
    position:relative;
    z-index:2;
}

.hero-badge{
    display:inline-block;
    background:rgba(255,255,255,.12);
    color:#fff;
    padding:12px 25px;
    border-radius:50px;
    margin-bottom:25px;
    font-size:15px;
    backdrop-filter:blur(10px);
}

.hero-badge i{
    color:#ff7a00;
    margin-right:8px;
}

.department-hero h1{
    font-size:60px;
    font-weight:700;
    color:#fff;
    margin-bottom:25px;
    line-height:1.1;
}

.department-hero h1 span{
    color:#ff7a00;
}

.department-hero p{
    color:rgba(255,255,255,.85);
    font-size:20px;
    line-height:1.8;
    max-width:700px;
    margin:0 auto 35px;
}

/* ==================================
BUTTONS
================================== */

.hero-btns{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.hero-btn-primary,
.hero-btn-outline,
.cta-btn,
.department-card a{
    text-decoration:none;
}

.hero-btn-primary{
    background:#ff7a00;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    display:inline-block;
}

.hero-btn-outline{
    border:2px solid #fff;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    display:inline-block;
}

.hero-btn-primary:hover,
.hero-btn-outline:hover,
.cta-btn:hover,
.department-card a:hover{
    text-decoration:none;
}

.hero-btn-primary:hover{
    background:#ff8f1f;
    color:#fff;
}

.hero-btn-outline:hover{
    background:#fff;
    color:#0A2E6D;
}

/* ==================================
SECTION TAG
================================== */

.section-tag{
    color:#ff7a00;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}


/* =====================================================
   PATIENT TESTIMONIALS SECTION
===================================================== */

.testimonials-section{
    background:#f8fbff;
}

.testimonial-card{

    background:#fff;

    padding:35px;

    border-radius:25px;

    height:100%;

    position:relative;

    overflow:hidden;

    border:1px solid rgba(13,34,77,.08);

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

    transition:.4s;
}

.testimonial-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 25px 50px rgba(13,34,77,.15);
}

.quote-icon{

    width:60px;
    height:60px;

    border-radius:18px;

    background:linear-gradient(
        135deg,
        #F97707,
        #1E88E5
    );

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:20px;
}

.quote-icon i{

    color:#fff;
    font-size:22px;
}

.rating{

    color:#F97707;

    font-size:18px;

    margin-bottom:15px;
}

.testimonial-card p{

    color:#666;

    margin-bottom:25px;

    line-height:1.8;
}

.patient-info{

    display:flex;

    align-items:center;

    gap:15px;
}

.patient-avatar{

    width:55px;
    height:55px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #0D224D,
        #1E88E5
    );

    color:#fff;

    font-weight:700;

    display:flex;
    align-items:center;
    justify-content:center;
}

.patient-info h5{

    margin:0;

    color:#0D224D;
}

.patient-info span{

    color:#777;

    font-size:14px;
}

/* ==================================
WHY CHOOSE US
================================== */

.department-why{
    padding:100px 0;
    background:#f8f9fc;
}

.department-why img{
    border-radius:25px;
}

.department-why h2{
    color:#0A2E6D;
    font-size:45px;
    margin:20px 0;
}

.department-why p{
    color:#666;
    line-height:1.9;
}

.feature-item{
    margin-bottom:18px;
    font-size:17px;
    font-weight:500;
}

.feature-item i{
    color:#ff7a00;
    margin-right:10px;
}

/* ==================================
STATISTICS SECTION
================================== */

.department-stats{
    background:#0A2E6D;
    color:#fff;
    padding:90px 0;
}

.stat-box h3{
    font-size:60px;
    color:#ff7a00;
    font-weight:700;
    margin-bottom:10px;
}

.stat-box p{
    margin:0;
    font-size:18px;
}

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

.department-cta{
    padding:100px 0;
}

.cta-box{
    background:linear-gradient(
        135deg,
        #0A2E6D,
        #123f92
    );

    padding:80px 40px;
    border-radius:30px;
    text-align:center;
    color:#fff;
}

.cta-box h2{
    font-size:50px;
    margin-bottom:20px;
}

.cta-box p{
    font-size:18px;
    margin-bottom:30px;
}

.cta-btn{
    background:#ff7a00;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    display:inline-block;
    font-weight:600;
}

.cta-btn:hover{
    background:#ff8f1f;
    color:#fff;
}

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

@media(max-width:991px){

    .department-hero h1{
        font-size:52px;
    }

    .department-grid h2,
    .department-why h2{
        font-size:38px;
    }

}

@media(max-width:768px){

    .department-hero{
        padding:100px 0;
    }

    .department-hero h1{
        font-size:40px;
    }

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

    .department-grid h2,
    .department-why h2,
    .cta-box h2{
        font-size:30px;
    }

    .stat-box{
        margin-bottom:30px;
    }

    .stat-box h3{
        font-size:40px;
    }

}