/* Section wrapper */
.about-page1-area {
    padding: 70px 0;
    background: #f8f9fc;
}

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

/* =========================
   INTRO BOX (MAROON)
   ========================= */
.best-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;
}

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

/* =========================
   MAIN CONTENT (BLUE)
   ========================= */
.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;
}
/* ===============================
   Best Outgoing – Custom Criteria List
   =============================== */
.custom-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.custom-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

/* Green checkmark bullet */
.custom-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    color: #28a745; /* green */
    font-size: 18px;
    font-weight: bold;
}
/* Best Outgoing – Selected Students Heading */
.selected-title {
    font-size: 20px;
    font-weight: 700;
    color: #007bff;              /* Blue theme (like MoU content) */
    margin: 35px 0 25px;
    position: relative;
}


/* =========================
   STUDENT CARDS
   ========================= */
.certificate-area {
    padding: 60px 0;
    background: #f8f9fc;
}

.student-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
    transition: 0.35s ease;
}

.student-card:hover {
    transform: translateY(-8px);
}

.student-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.student-info {
    padding: 20px 15px;
    text-align: center;
    background: #f8f9fc;
}

.student-info .year {
    font-size: 14px;
    font-weight: 600;
    color: #800000;
}

.student-info .name {
    font-size: 18px;
    font-weight: 700;
    color: #222;
}

/* Mobile */
@media (max-width: 768px) {
    .best-intro-box,
    .about-page-content-holder {
        padding: 25px 20px;
    }

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