/* ========================================
           SECTION TITLE - GOLDEN THEME
        ======================================== */
        .syllabus-section-title {
            background: linear-gradient(135deg, #d4a843, #b8942e);
            color: #ffffff;
            padding: 12px 22px;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(212, 168, 67, 0.35);
            border: 1px solid rgba(232, 200, 106, 0.5);
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
            letter-spacing: 0.3px;
        }

        .syllabus-section-title i {
            font-style: normal;
            font-size: 24px;
            filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
        }

/* ========================================
           SYLLABUS TABLES
        ======================================== */
        .syllabus-intro {
            background: #f8fafc;
            padding: 18px 22px;
            border-radius: 10px;
            margin-bottom: 25px;
            border-left: 5px solid #d4a843;
            line-height: 1.8;
            color: #334155;
            font-size: 15px;
        }

        .syllabus-intro strong {
            color: #1a3c6e;
        }

        .syllabus-section {
            margin-bottom: 30px;
        }

        /* .syllabus-sub-title {
            color: #1a3c6e;
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 12px;
            padding-left: 5px;
            border-bottom: 2px solid #d4a843;
            padding-bottom: 6px;
            display: inline-block;
        } */

        .syllabus-sub-title {
            color: #ffffff;
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 15px;
            padding: 8px 22px;
            display: inline-block;
            background: linear-gradient(135deg, #d4a843, #b8942e);
            border-radius: 30px;
            box-shadow: 0 4px 15px rgba(212, 168, 67, 0.3);
            letter-spacing: 0.5px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .syllabus-table-wrapper {
    overflow-x: auto;
    margin-bottom: 20px;
    border-radius: 12px;
    border: 2px solid #f0e4c8;
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.12);
    background: #ffffff;
}

.syllabus-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 600px;
}

/* Table Header - Golden Gradient */
.syllabus-table thead th {
    background: linear-gradient(135deg, #d4a843, #b8942e, #c49a3a);
    color: #ffffff;
    padding: 14px 18px;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.syllabus-table thead th:last-child {
    border-right: none;
}

/* Table Body - Golden Light Alternating Rows */
.syllabus-table tbody td {
    padding: 12px 18px;
    border-bottom: 1px solid #f5edde;
    vertical-align: top;
    line-height: 1.6;
    color: #334155;
    font-size: 14px;
}

/* Alternating row colors - Golden light theme */
.syllabus-table tbody tr:nth-child(even) {
    background: #fcf8f0;
}

.syllabus-table tbody tr:nth-child(odd) {
    background: #ffffff;
}

/* Hover effect with golden glow */
.syllabus-table tbody tr:hover {
    background: linear-gradient(90deg, #faf3e6, #f5edde);
    box-shadow: inset 0 0 20px rgba(212, 168, 67, 0.08);
    transition: background 0.2s ease;
}

/* First column - Golden accent */
.syllabus-table tbody td:first-child {
    font-weight: 700;
    color: #b8942e;
    text-align: center;
    font-size: 15px;
    background: rgba(212, 168, 67, 0.06);
    border-right: 2px solid #f0e4c8;
}

/* Class column - Bold with golden tint */
.syllabus-table tbody td:nth-child(2) {
    font-weight: 700;
    color: #1a3c6e;
}

/* Subjects column - Golden light text */
.syllabus-table tbody td:last-child {
    color: #475569;
    font-weight: 500;
}

/* Golden border on left of each row */
.syllabus-table tbody tr {
    border-left: 4px solid transparent;
    transition: border-color 0.3s ease;
}

.syllabus-table tbody tr:hover {
    border-left-color: #d4a843;
}

/* Table footer or additional golden accent */
.syllabus-table tbody tr:last-child td {
    border-bottom: 3px solid #d4a843;
}