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

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

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

/* =========================
   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;
    border-radius:20px;
    overflow:hidden;
}

/* TABLE HEADER */

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

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

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

/* ROUND HEADER CORNERS */

.modern-table thead th:first-child{
    border-top-left-radius:18px;
}

.modern-table thead th:last-child{
    border-top-right-radius:18px;
}

/* TABLE BODY */

.modern-table tbody tr{
    background:#fff;
    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 !important;
    border-bottom:1px solid #ececec !important;
    font-size:15px;
    color:#444;
    vertical-align:middle;
    line-height:1.7;
}

/* LAST ROW */

.modern-table tbody tr:last-child td{
    border-bottom:none !important;
}

/* TABLE RESPONSIVE */

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

/* =========================
   SCROLLBAR
========================= */

.table-responsive::-webkit-scrollbar{
    height:6px;
}

.table-responsive::-webkit-scrollbar-thumb{
    background:rgba(38,52,137,0.3);
    border-radius:20px;
}

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

@media(max-width:991px){

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

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

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

    .modern-table-card{
        padding:14px;
    }

    .modern-table thead th,
    .modern-table tbody td{
        font-size:12px;
        padding:12px 8px;
    }

}