/* =====================================================
   GENERAL
===================================================== */

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

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

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

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

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

.department-hero{

    background:#133E87;

    padding:80px 0;

    position:relative;

    overflow:hidden;
}

.department-hero::before{

    content:'';

    position:absolute;

    top:-180px;
    left:-150px;

    width:400px;
    height:400px;

    background:rgba(255,255,255,.05);

    border-radius:50%;
}

.department-hero::after{

    content:'';

    position:absolute;

    bottom:-180px;
    right:-150px;

    width:500px;
    height:500px;

    background:rgba(255,255,255,.05);

    border-radius:50%;
}

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

.hero-subtitle{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:rgba(255,255,255,.10);

    color:#fff;

    padding:12px 28px;

    border-radius:50px;

    margin-bottom:25px;
}

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

.department-hero h1{

    color:#fff;

    font-size:55px;

    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 BUTTONS
===================================================== */

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

.hero-btn{

    background:#F97707;

    color:#fff;

    text-decoration:none;

    padding:16px 36px;

    border-radius:60px;

    font-weight:600;

    transition:.4s;
}

.hero-btn:hover{

    background:#ff8d16;

    color:#fff;

    transform:translateY(-4px);
}

.hero-btn-outline{

    border:2px solid #fff;

    color:#fff;

    text-decoration:none;

    padding:16px 36px;

    border-radius:60px;

    font-weight:600;

    transition:.4s;
}

.hero-btn-outline:hover{

    background:#fff;

    color:#133E87;
}

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

.department-overview{
    background:#fff;
}

.department-image{
    position:relative;
}

.department-image img{

    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,
    #1E88E5
    );

    color:#fff;

    padding:25px 30px;

    border-radius:20px;

    text-align:center;
}

.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:16px;

    background:#fff;

    border:1px solid #eee;

    transition:.4s;
}

.feature-item:hover{

    transform:translateY(-5px);

    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{

    font-weight:600;

    color:#133E87;


}

.department-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    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);
}



/* =====================================================
   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:80px;
    height:80px;

    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:32px;
}

.service-card h4{

    color:#133E87;

    margin-bottom:15px;
}

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

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

.consultation-box{

    background:linear-gradient(
    135deg,
    #133E87,
    #0B2F72
    );

    padding:70px;

    border-radius:35px;

    position:relative;

    overflow:hidden;
}

.consultation-box::before{

    content:'';

    position:absolute;

    width:350px;
    height:350px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    top:-180px;
    right:-100px;
}

.cta-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:rgba(255,255,255,.10);

    color:#fff;

    padding:10px 20px;

    border-radius:50px;

    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);

    font-size:18px;
}

.btn-primary-custom{

    background:#F97707;

    color:#fff;

    padding:18px 35px;

    border-radius:60px;

    text-decoration:none;

    font-weight:600;

    transition:.4s;
}

.btn-primary-custom:hover{

    color:#fff;

    transform:translateY(-4px);
}

.btn-outline-custom{

    margin-left:15px;

    border:2px solid rgba(255,255,255,.25);

    color:#fff;

    padding:18px 35px;

    border-radius:60px;

    text-decoration:none;

    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:90px 0;
    }

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

    .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:10px;
        bottom:10px;
        padding:20px;
    }

    .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:70px 0;
    }

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

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

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

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

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

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

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

    .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;
    }

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

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

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

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

    .service-card{
        padding:25px;
    }

    .service-card i{
        width:65px;
        height:65px;
        font-size:24px;
    }

    .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;
    }

    .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;
    }
}



/*==================================
DEPARTMENT RESPONSIVE FIX
==================================*/

.department-overview{

    overflow:hidden;
}

.department-image{

    position:relative;
    overflow:hidden;
    border-radius:25px;
}

.department-image img{

    width:100%;
    display:block;
    border-radius:25px;
    object-fit:cover;
}

.feature-item{

    height:100%;

}

@media(max-width:991px){

.department-overview{

padding:70px 0;

}

.department-image{

margin-bottom:35px;

}

.section-heading{

font-size:34px;

line-height:1.3;

}

.department-text{

font-size:16px;

}

}

@media(max-width:767px){

.department-overview{

padding:60px 0;

}

.department-image img{

height:auto;

}

.experience-badge{

left:15px;
bottom:15px;

padding:15px 18px;

}

.experience-badge h3{

font-size:28px;

}

.experience-badge span{

font-size:13px;

}

.section-heading{

font-size:28px;

}

.department-text{

font-size:15px;

line-height:1.8;

}

.feature-item{

padding:15px;

}

.feature-item span{

font-size:14px;

}

.department-btn{

width:100%;
display:block;
text-align:center;

}

}

@media(max-width:575px){

.feature-item{

display:flex;

align-items:center;

gap:12px;

}

.feature-item i{

width:45px;
height:45px;
font-size:18px;

}

}