
/* MoU Table column control */
.mou-table th:nth-child(1),
.mou-table td:nth-child(1) {
    width: 6%;
    white-space: nowrap;
}

.mou-table th:nth-child(2),
.mou-table td:nth-child(2) {
    width: 40%;
    text-align: left;
}

.mou-table th:nth-child(3),
.mou-table td:nth-child(3),
.mou-table th:nth-child(4),
.mou-table td:nth-child(4) {
    width: 14%;
    white-space: nowrap;
}

.mou-table th:nth-child(5),
.mou-table td:nth-child(5) {
    width: 26%;
    text-align: center;
}

/* Logo control */
.mou-table td img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
}
.mou-table td img {
    display: block;
    margin: auto;
}

/* =========================
   MoU Intro Quote (Top)
   ========================= */

.mou-intro-box {
    background: #fff3f3;
    padding: 35px 30px;
    border-radius: 18px;
    margin-bottom: 40px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    border-left: 6px solid #800000;
}

.mou-intro-box h3 {
    font-size: 17px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.9;
    color: #800000;
    margin: 0;
    text-align: justify;
}

/* Mobile adjustment */
@media (max-width: 768px) {
    .mou-intro-box {
        padding: 25px 20px;
    }

    .mou-intro-box h3 {
        font-size: 16px;
    }
}


/* Certificate Section */
.certificate-area {
    padding: 60px 0;
    background: #f8f9fc;
}

/* Tabs container */
.tabbable-line {
    margin-bottom: 30px;
}

/* Tabs */
.tabtop {
    border-bottom: 2px solid #e0e0e0;
}

.tabtop > li {
    margin-right: 5px;
}

.tabtop > li > a {
    border: none;
    padding: 12px 20px;
    font-weight: 600;
    color: #555;
    background: transparent;
}

.tabtop > li.active > a,
.tabtop > li > a:hover {
    background: #007bff;
    color: #fff !important;
    border-radius: 6px 6px 0 0;
}

/* Tab content */
.margin-tops {
    margin-top: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 0 10px 10px 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Table Styling */
.table {
    margin-bottom: 0;
}

.table thead {
    background: #007bff;
    color: #fff;
}

.table thead th {
    text-align: center;
    vertical-align: middle;
    padding: 12px;
}

.table tbody td {
    vertical-align: middle;
    padding: 10px;
    font-size: 15px;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6;
}

/* Hover effect */
.table tbody tr:hover {
    background-color: #f1f6ff;
}

/* Responsive table */
.table-responsive {
    overflow-x: auto;
}
/* Section background & spacing */
.about-page1-area {
    padding: 70px 0;
    background: #f8f9fc;
}

/* Centering row content */
.about-page1-inner {
    display: flex;
    justify-content: center;
}

/* Card-style content */
.about-page-content-holder {
    background: #ffffff;
    padding: 40px 45px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #007bff;
}