
.mnr-school-card {
    background: #fff;
    border-radius: 22px;
    padding: 50px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.mnr-school-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(
        90deg,
        var(--primary-blue),
        var(--accent-red)
    );
}


/* =========================================
   HEADING
========================================= */
.mnr-school-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 25px;
    position: relative;
}

.mnr-school-title::after {
    content: "";
    width: 90px;
    height: 4px;
    background: var(--accent-red);
    position: absolute;
    bottom: -12px;
    left: 0;
    border-radius: 50px;
}


/* =========================================
   CONTENT
========================================= */
.mnr-school-content p {
    color: #555;
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 22px;
    text-align: justify;
}


/* =========================================
   TABLE DESIGN
========================================= */
.mnr-table-wrapper {
    margin-top: 40px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
}

#newTableDesign {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

#newTableDesign thead {
    background: var(--primary-blue);
}

#newTableDesign thead th {
    color: #fff;
    padding: 18px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

#newTableDesign tbody tr {
    transition: 0.3s ease;
}

#newTableDesign tbody tr:nth-child(even) {
    background: #fafafa;
}

#newTableDesign tbody tr:hover {
    background: rgba(38,52,137,0.06);
}

#newTableDesign td {
    padding: 18px;
    color: var(--text-black);
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
    font-size: 15px;
    line-height: 1.7;
}

#newTableDesign td a {
    color: var(--primary-blue);
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

#newTableDesign td a:hover {
    color: var(--accent-red);
}

.scolor {
    font-weight: 600;
}

.textleft {
    text-align: left;
}


/* =========================================
   RESPONSIVE
========================================= */
@media(max-width:991px){

    .mnr-school-card {
        padding: 35px;
    }

    .mnr-school-title {
        font-size: 38px;
    }

}

@media(max-width:767px){

    .mnr-school-section {
        padding: 50px 0;
    }

    .mnr-school-card {
        padding: 25px;
        border-radius: 16px;
    }

    .mnr-school-title {
        font-size: 30px;
    }

    .mnr-school-content p {
        font-size: 15px;
    }

    #newTableDesign thead th,
    #newTableDesign td {
        padding: 14px;
        font-size: 14px;
    }

}