/* --- Global Font Rules (Times New Roman) --- */
.font-serif,
.adm-banner,
.admission-strip,
.step-card,
.doc-card,
.stream-card,
.enquiry-box,
.adm-footer {
    font-family: 'Times New Roman', Times, serif !important;
}

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

/* --- Hero Banner --- */
.adm-banner {
    position: relative;
    min-height: 300px;
    background-image: url('../images/b2.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 15px;
}

.adm-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(1, 87, 155, 0.92) 0%, rgba(2, 136, 209, 0.85) 100%);
    z-index: 1;
}

.adm-banner .container {
    z-index: 2;
}

.adm-badge {
    background: rgba(255, 213, 79, 0.2);
    border: 1px solid #ffd54f;
    color: #ffd54f;
    font-size: 13px;
    font-weight: bold;
    padding: 4px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
}

.adm-main-heading {
    font-size: 34px;
    font-weight: 700;
}

.adm-sub-heading {
    font-size: 17px;
    font-style: italic;
    opacity: 0.95;
    margin-top: 6px;
}

.adm-divider {
    width: 65px;
    height: 3px;
    background-color: #ffd54f;
    margin-top: 15px;
    border-radius: 2px;
}

.adm-divider-small {
    width: 50px;
    height: 3px;
    background-color: #0288d1;
    margin-top: 8px;
    border-radius: 2px;
}

/* --- Red Contact Strip --- */
.admission-strip {
    background-color: #d32f2f;
    box-shadow: 0 4px 10px rgba(211, 47, 47, 0.2);
}

.admission-strip h5 {
    letter-spacing: 0.5px;
}

/* --- Section Headings --- */
.section-tag {
    color: #0288d1;
    font-size: 14.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* --- Step Cards --- */
.step-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 25px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    height: 100%;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: #0288d1;
    box-shadow: 0 8px 20px rgba(2, 136, 209, 0.15);
}

.step-num {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #0288d1;
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

/* --- Document & Age Card --- */
.doc-card {
    background: #ffffff;
    border: 1px solid #dbeafe;
    border-radius: 10px;
    padding: 28px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.doc-list li {
    padding: 5px 0;
    border-bottom: 1px dashed #edf2f7;
}

.doc-list li:last-child {
    border-bottom: none;
}

.doc-list i {
    color: #0288d1;
}

/* --- Stream Cards --- */
.stream-card {
    background: #ffffff;
    border: 1px solid #dbeafe;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
}

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

.stream-badge {
    display: inline-block;
    background: #e1f5fe;
    color: #0288d1;
    font-size: 13px;
    font-weight: bold;
    padding: 3px 12px;
    border-radius: 12px;
}

/* --- Form Box --- */
.enquiry-box {
    max-width: 850px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.btn-adm-submit {
    background-color: #0288d1;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn-adm-submit:hover {
    background-color: #01579b;
    box-shadow: 0 4px 12px rgba(1, 87, 155, 0.3);
}

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

/* Responsive */
@media (max-width: 768px) {
    .adm-banner {
        min-height: 230px;
        padding: 40px 15px;
    }
    .adm-main-heading {
        font-size: 25px;
    }
    .admission-strip h5 {
        font-size: 18px;
    }
    .admission-strip p.fs-5 {
        font-size: 16px !important;
    }
}