/* --- Global Font Rule (Times New Roman) --- */
.font-serif,
.about-banner,
.about-content,
.vision-card,
.principal-box,
.about-footer {
    font-family: 'Times New Roman', Times, serif !important;
}

.bg-light-section {
    background-color: #f4f8fc;
}

/* --- Banner Styling --- */
.about-banner {
    background: #0288d1; /* Logo Blue */
    color: #ffffff;
}

.about-main-heading {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.about-sub-heading {
    font-size: 17px;
    font-style: italic;
    opacity: 0.95;
}

.about-divider {
    width: 60px;
    height: 3px;
    background-color: #ffd54f; /* Logo Gold */
    margin: 12px auto 0;
    border-radius: 2px;
}

/* --- Welcome Section Content --- */
.section-tag {
    color: #0288d1;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 6px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.section-text {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.65;
    margin-bottom: 14px;
}

.feature-item {
    font-size: 15px;
    color: #1e293b;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.feature-item i {
    color: #0288d1 !important;
}

.about-img-frame img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    border: 3px solid #e2e8f0;
}

/* --- Vision & Mission Cards --- */
.vision-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 8px;
    border: 1px solid #dbeafe;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vision-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(2, 136, 209, 0.15);
    border-color: #0288d1;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: #e1f5fe;
    color: #0288d1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.vision-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.vision-card p {
    font-size: 15.5px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- Principal Desk Box --- */
.principal-box {
    background: #ffffff;
    border: 1px solid #dbeafe;
    border-left: 5px solid #0288d1;
    border-radius: 6px;
    padding: 30px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
}

.principal-img-wrapper {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #0288d1;
    background: #f8fafc;
}

.principal-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.principal-quote {
    position: relative;
    padding-left: 10px;
}

.quote-icon {
    font-size: 28px;
    color: #ffd54f;
    margin-bottom: 12px;
    display: block;
}

.principal-quote p {
    font-size: 17px;
    font-style: italic;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 0;
}

/* --- Footer --- */
.about-footer {
    background: #002244;
    font-size: 14px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .about-main-heading {
        font-size: 25px;
    }
    .section-title {
        font-size: 23px;
    }
    .principal-box {
        padding: 20px;
        text-align: center;
    }
    .principal-quote {
        padding-left: 0;
    }
}