/* -------------------------------------------------
   ACADEMIC PROGRAMMES SECTION
---------------------------------------------------*/
.academic-programmes-section {
    margin-top: 40px;
}

.ap-title {
    text-align: center;
    font-size: 30px;
    color: #0a2a70;
    font-weight: 700;
    margin-bottom: 25px;
}

.ap-table-wrapper {
    overflow-x: auto;
    margin-top: 20px;
}

.ap-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border: 1px solid #ddd;
    font-size: 16px;
}

.ap-table th {
    background: #0a2a70;
    color: #fff;
    text-align: left;
    padding: 12px;
    font-weight: 600;
}

.ap-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #e6e6e6;
}

/* Center department cells (rowspan) */
.ap-table .dept-cell {
    text-align: left;
    vertical-align: middle;
    font-weight: 600;
}

/* Center colspan cell (Service Providing Department) */
.ap-table td[colspan="2"] {
    text-align: center;
    vertical-align: middle;
    font-weight: normal;
    font-style: normal;
}

.ap-table tr:nth-child(even) {
    background: #f4f7fc;
}

.ap-table tr:hover {
    background: #eaf0ff;
}

/* Responsive */
@media (max-width: 768px) {
    .ap-title {
        font-size: 24px;
    }

    .ap-table th,
    .ap-table td {
        font-size: 14px;
        padding: 8px;
    }
}
