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

.modern-department-section{
    position:relative;
	text-align:center;
}

/* =========================
   TITLE AREA
========================= */

.department-title-area{
    margin-bottom:30px;
}

.department-badge{
    display:inline-block;
    background:rgba(236,29,37,0.08);
    color:var(--accent-red);
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.department-title-area h1{
    font-size:46px;
    font-weight:800;
    color:var(--primary-blue);
    margin-bottom:16px;
    line-height:1.1;
}



/* =========================
   CONTENT CARD
========================= */

.department-content-card{
    background:var(--bg-light);
    border-radius:30px;
    padding:45px;
    border-left:6px solid var(--primary-blue);
    box-shadow:
    0 10px 35px rgba(0,0,0,0.05);
    position:relative;
    overflow:hidden;
}

.department-content-card::before{
    content:"";
    position:absolute;
    top:-60px;
    right:-60px;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(38,52,137,0.06);
}

.department-content-card p{
    font-size:17px;
    line-height:1.95;
    color:#444;
    margin-bottom:22px;
    position:relative;
    z-index:2;
}

.department-content-card p:last-child{
    margin-bottom:0;
}

/* =========================
   FEATURE BOX
========================= */

.department-feature-box{
    background:#ffffff;
    border-radius:22px;
    padding:28px;
    margin-top:25px;
    box-shadow:
    0 8px 25px rgba(0,0,0,0.05);
    border-top:4px solid var(--accent-red);
    position:relative;
    z-index:2;
}

.department-feature-box h4{
    font-size:22px;
    font-weight:700;
    color:var(--primary-blue);
    margin-bottom:18px;
}

/* =========================
   FEATURE LIST
========================= */

.department-feature-list{
    padding-left:0;
    margin:0;
    list-style:none;
}

.department-feature-list li{
    position:relative;
    padding-left:32px;
    margin-bottom:18px;
    font-size:16px;
    line-height:1.8;
    color:#444;
}

.department-feature-list li:last-child{
    margin-bottom:0;
}

.department-feature-list li::before{
    content:"✔";
    position:absolute;
    left:0;
    top:2px;
    width:20px;
    height:20px;
    border-radius:50%;
    background:rgba(236,29,37,0.1);
    color:var(--accent-red);
    font-size:11px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

/* =========================
   TABLE CARD
========================= */

.modern-table-card{
    background:#fff;
    border-radius:30px;
    padding:30px;
    box-shadow:
    0 12px 40px rgba(0,0,0,0.06);
    overflow:hidden;
}

/* =========================
   TABLE
========================= */

.modern-table{
    width:100%;
    margin-bottom:0;
    border-collapse:separate;
    border-spacing:0;
    overflow:hidden;
    border-radius:20px;
}

/* TABLE HEAD */

.modern-table thead{
    background:var(--primary-blue);
}

.modern-table thead tr{
    background:var(--primary-blue);
}

.modern-table thead th{
    background:var(--primary-blue);
    color:#ffffff;
    font-size:15px;
    font-weight:700;
    padding:18px 16px;
    border:none;
    text-transform:uppercase;
    letter-spacing:0.5px;
    white-space:nowrap;
}

/* TABLE BODY */

.modern-table tbody tr{
    transition:0.3s ease;
}

.modern-table tbody tr:nth-child(even){
    background:#fafafa;
}

.modern-table tbody tr:hover{
    background:rgba(38,52,137,0.05);
}

.modern-table tbody td{
    padding:18px 16px;
    border:none;
    font-size:15px;
    color:#444;
    vertical-align:middle;
    border-bottom:1px solid #ececec;
}

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

.table-responsive{
    border-radius:22px;
}

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

@media(max-width:991px){

    .department-title-area h1{
        font-size:36px;
    }

    .department-content-card{
        padding:30px 22px;
        border-radius:24px;
    }

    .modern-table-card{
        padding:18px;
        border-radius:24px;
    }

    .department-content-card p{
        font-size:15px;
        line-height:1.85;
    }

    .department-feature-box{
        padding:22px;
    }

    .department-feature-box h4{
        font-size:20px;
    }

    .department-feature-list li{
        font-size:15px;
    }

    .modern-table thead th,
    .modern-table tbody td{
        font-size:13px;
        padding:14px 10px;
    }

}

@media(max-width:576px){

    .department-title-area h1{
        font-size:30px;
    }

    .department-badge{
        font-size:11px;
        padding:7px 14px;
    }

    .department-content-card{
        padding:24px 18px;
    }

    .department-content-card p{
        font-size:14px;
        line-height:1.8;
    }

    .department-feature-box{
        padding:18px;
        border-radius:18px;
    }

    .department-feature-box h4{
        font-size:18px;
    }

    .department-feature-list li{
        font-size:14px;
        padding-left:28px;
    }

}