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

.py-100{
    padding:100px 0;
}

.section-badge{
    display:inline-block;
    padding:10px 24px;
    background:rgba(249,119,7,.12);
    color:#F97707;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.section-heading{
    color:#133E87;
    font-size:48px;
    line-height:1.2;
    margin-bottom:25px;
}

/* =====================================================
   DEPARTMENT HERO
===================================================== */

.department-hero{
    background:#133E87;
    padding:80px 0;
    position:relative;
    overflow:hidden;
}

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

.department-hero::after{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    bottom:-250px;
    right:-200px;
}

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

.hero-subtitle{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,.10);
    padding:12px 28px;
    border-radius:50px;
    color:#fff;
    margin-bottom:30px;
}

.hero-subtitle i{
    color:#F97707;
}

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

.department-hero h1 span{
    display:block;
    color:#F97707;
}

.department-hero p{
    color:rgba(255,255,255,.85);
    font-size:20px;
    max-width:850px;
    margin:0 auto 40px;
}

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

.hero-btn{
    background:#F97707;
    color:#fff;
    text-decoration:none;
    padding:18px 38px;
    border-radius:60px;
    font-weight:600;
    transition:.4s;
}

.hero-btn:hover{
    background:#ff8d15;
    color:#fff;
    transform:translateY(-5px);
}

.hero-btn-outline{
    border:2px solid #fff;
    color:#fff;
    text-decoration:none;
    padding:18px 38px;
    border-radius:60px;
    font-weight:600;
    transition:.4s;
}

.hero-btn-outline:hover{
    background:#fff;
    color:#133E87;
}

/* =====================================================
   OVERVIEW SECTION
===================================================== */

.department-overview{
    background:#fff;
}

.department-image{
    position:relative;
}

.department-image img{
    width:100%;
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.experience-badge{
    position:absolute;
    bottom:20px;
    right:-20px;
    background:linear-gradient(135deg,#133E87,#2467d1);
    color:#fff;
    padding:25px 35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 35px rgba(19,62,135,.25);
}

.experience-badge h3{
    font-size:42px;
    margin:0;
    color:#fff;
}

.department-text{
    color:#666;
    line-height:1.9;
    margin-bottom:15px;
}

/* =====================================================
   FEATURE ITEMS
===================================================== */

.feature-item{
    display:flex;
    align-items:center;
    gap:15px;
    padding:18px;
    border-radius:18px;
    background:#fff;
    border:1px solid #eee;
    transition:.4s;
}

.feature-item:hover{
    transform:translateY(-6px);
    border-color:#F97707;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.feature-item i{
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:linear-gradient(135deg,#F97707,#ff9d2d);
    color:#fff;
    font-size:22px;
}

.feature-item span{
    color:#133E87;
    font-weight:600;
}

/* =====================================================
   BOOK APPOINTMENT BUTTON
===================================================== */

.department-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:linear-gradient(
    135deg,
    #F97707,
    #FFA63D
    );
    color:#fff;
    text-decoration:none;
    padding:18px 38px;
    border-radius:60px;
    font-weight:600;
    box-shadow:0 15px 35px rgba(249,119,7,.25);
    transition:.4s;
}

.department-btn:hover{
    color:#fff;
    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(249,119,7,.35);
}

/* =====================================================
   SERVICES SECTION
===================================================== */

.department-services{
    background:#f8fbff;
}

.service-card{
    background:#fff;
    padding:35px;
    border-radius:25px;
    text-align:center;
    height:100%;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

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

.service-card i{
    width:85px;
    height:85px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 20px;
    border-radius:20px;
    background:linear-gradient(
    135deg,
    #F97707,
    #ff9d2d
    );
    color:#fff;
    font-size:34px;
}

.service-card h4{
    color:#133E87;
    margin-bottom:15px;
}

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

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

.consultation-box{
    background:linear-gradient(
    135deg,
    #133E87,
    #0b2f72
    );
    padding:70px;
    border-radius:35px;
    overflow:hidden;
    position:relative;
}

.consultation-box::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    top:-180px;
    right:-100px;
}

.cta-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(255,255,255,.10);
    color:#fff;
    margin-bottom:25px;
}

.cta-tag i{
    color:#F97707;
}

.consultation-box h2{
    color:#fff;
    font-size:48px;
    margin-bottom:20px;
}

.consultation-box h2 span{
    color:#F97707;
}

.consultation-box p{
    color:rgba(255,255,255,.85);
}

.btn-primary-custom{
    background:#F97707;
    color:#fff;
    text-decoration:none;
    padding:18px 35px;
    border-radius:60px;
    font-weight:600;
    transition:.4s;
}

.btn-primary-custom:hover{
    color:#fff;
    transform:translateY(-5px);
}

.btn-outline-custom{
    margin-left:15px;
    border:2px solid rgba(255,255,255,.25);
    color:#fff;
    text-decoration:none;
    padding:18px 35px;
    border-radius:60px;
    font-weight:600;
    transition:.4s;
}

.btn-outline-custom:hover{
    background:#fff;
    color:#133E87;
}

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

@media (max-width:991px){

    .py-100{
        padding:80px 0;
    }

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

    .department-hero h1{
        font-size:42px;
        line-height:1.2;
    }

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

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

    .hero-btns{
        flex-wrap:wrap;
        gap:15px;
    }

    .department-image{
        margin-bottom:40px;
    }

    .experience-badge{
        right:15px;
        bottom:15px;
        padding:18px 22px;
    }

    .experience-badge h3{
        font-size:32px;
    }

    .consultation-box{
        text-align:center;
        padding:50px 30px;
    }

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

    .consultation-box p{
        margin:auto;
    }

    .text-lg-end{
        text-align:center !important;
        margin-top:30px;
    }

    .btn-outline-custom{
        margin-left:0;
        margin-top:15px;
        display:inline-block;
    }
}


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

@media (max-width:767px){

    .py-100{
        padding:60px 0;
    }

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

    .department-hero::before,
    .department-hero::after{
        display:none;
    }

    .hero-subtitle{
        font-size:13px;
        padding:10px 18px;
        margin-bottom:20px;
    }

    .department-hero h1{
        font-size:30px;
        line-height:1.3;
        margin-bottom:20px;
    }

    .department-hero p{
        font-size:15px;
        line-height:1.8;
        margin-bottom:30px;
    }

    .hero-btns{
        flex-direction:column;
        align-items:center;
        width:100%;
    }

    .hero-btn,
    .hero-btn-outline{
        width:100%;
        max-width:280px;
        text-align:center;
        justify-content:center;
        padding:14px 24px;
    }

    .section-heading{
        font-size:28px;
        line-height:1.3;
    }

    .department-text{
        font-size:15px;
        line-height:1.8;
    }

    .department-image img{
        border-radius:20px;
    }

    .experience-badge{
        right:10px;
        bottom:10px;
        padding:15px;
        border-radius:15px;
    }

    .experience-badge h3{
        font-size:24px;
    }

    .experience-badge span{
        font-size:11px;
    }

    .feature-item{
        padding:15px;
    }

    .feature-item i{
        width:45px;
        height:45px;
        font-size:18px;
    }

    .feature-item span{
        font-size:14px;
    }

    .department-btn{
        width:100%;
        justify-content:center;
        text-align:center;
    }

    .service-card{
        padding:25px;
    }

    .service-card i{
        width:70px;
        height:70px;
        font-size:26px;
    }

    .consultation-cta{
        padding:60px 0;
    }

    .consultation-box{
        padding:35px 20px;
        border-radius:25px;
    }

    .consultation-box h2{
        font-size:28px;
        line-height:1.3;
    }

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

    .cta-tag{
        font-size:13px;
        padding:8px 16px;
    }

    .btn-primary-custom,
    .btn-outline-custom{
        display:block;
        width:100%;
        text-align:center;
        margin:10px 0;
    }
}


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

@media (max-width:480px){

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

    .section-heading{
        font-size:24px;
    }

    .consultation-box h2{
        font-size:22px;
    }

    .hero-subtitle{
        font-size:12px;
    }

    .experience-badge{
        padding:12px;
    }

    .experience-badge h3{
        font-size:20px;
    }

    .hero-btn,
    .hero-btn-outline,
    .department-btn{
        font-size:14px;
    }
}









.department-overview{

overflow:hidden;

}

.department-overview .container{

max-width:1320px;

}

.department-overview img{

width:100%;

display:block;

}

.department-overview .row{

margin-left:0;

margin-right:0;

}

.department-overview [class*="col-"]{

padding-left:12px;

padding-right:12px;

}

@media(max-width:767px){

.department-overview{

padding:60px 0;

}

.department-overview .container{

padding-left:15px;

padding-right:15px;

}

.department-overview .row{

--bs-gutter-x:20px;

}

.department-image{

margin-bottom:35px;

}

.department-image img{

border-radius:20px;

}

.section-heading{

font-size:28px;

}

.department-btn{

width:100%;

display:block;

text-align:center;

}

}