﻿/* ================= HERO SECTION ================= */
.admission-hero {
    position: relative;
    width: 100%;
    height: 500px;
    margin-bottom:100px;
    background-image: url('/images/banner/Addmission.png'); /* 👈 change if needed */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
/* DARK OVERLAY */
.inner-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(11, 31, 75, 0.75), rgba(11, 31, 75, 0.45) );
    z-index: 1;
}

.inner-hero .container {
    position: relative;
    z-index: 2;
    color: #fff;
}
   

/* ================= INTRO ================= */
.admission-intro {
   
    background: #f8fafc;
}

    .admission-intro h2 {
        font-size: 32px;
        font-weight: 700;
        color: #0b1f4b;
        margin-bottom: 18px;
    }

    .admission-intro p {
        font-size: 16.5px;
        line-height: 1.8;
        color: #444;
        margin-bottom: 20px;
    }

.check-list {
    list-style: none;
    padding: 0;
}

    .check-list li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 12px;
        font-weight: 500;
        color: #222;
    }

        .check-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            top: 0;
            color: #f4b400;
            font-weight: 700;
        }

/* ================= COMMON SECTION ================= */
.admission-section {
    padding: 65px 0;
}

    .admission-section.dark {
        background: linear-gradient(135deg, #0b1f4b, #12316f);
        color: #fff;
    }

    .admission-section.light {
        background: #ffffff;
    }

.section-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 35px;
    position: relative;
}

    .section-title::after {
        content: "";
        display: block;
        width: 70px;
        height: 4px;
        background: #f4b400;
        margin: 12px auto 0;
        border-radius: 2px;
    }

/* ================= ADMISSION LIST ================= */
.admission-list {
    max-width: 800px;
    margin: auto;
    font-size: 16.5px;
    line-height: 1.8;
}

    .admission-list li {
        margin-bottom: 12px;
    }

/* ================= DOCUMENT LIST ================= */
.doc-list {
    list-style: none;
    padding-left: 0;
}

    .doc-list li {
        background: #f8fafc;
        margin-bottom: 10px;
        padding: 12px 16px;
        border-radius: 6px;
        font-weight: 500;
        box-shadow: 0 6px 15px rgba(0,0,0,0.06);
    }

.admission-section.dark .doc-list li {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

/* ================= AGE TABLE ================= */
.age-table {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0,0,0,0.1);
}

    .age-table thead {
        background: #f4b400;
    }

    .age-table th {
        color: #000;
        font-weight: 700;
        text-align: center;
    }

    .age-table td {
        text-align: center;
        font-weight: 500;
    }

/* ================= READMISSION ================= */
.admission-section.light p {
    max-width: 850px;
    margin: auto;
    font-size: 16.5px;
    line-height: 1.8;
    color: #444;
}

/* ================= CTA ================= */
.admission-cta {
    padding: 80px 0;
    background:rgba(0,0,0,0.06);
    text-align: center;
}

    .admission-cta h2 {
        font-size: 34px;
        font-weight: 800;
        margin-bottom: 20px;
        color: #000;
    }

    .admission-cta .btn {
        padding: 12px 28px;
        font-size: 16px;
        font-weight: 700;
        border-radius: 30px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .gd-header {
        position: absolute;
        top: 0;
        z-index: 9999;
        background: #fff;

    }

    .admission-hero {
        padding: 80px 15px 65px;
        margin-bottom:15px;
    }

        .admission-hero h1 {
            font-size: 32px;
        }

        .admission-hero p {
            font-size: 16px;
        }

    .section-title {
        font-size: 24px;
    }

    .admission-cta h2 {
        font-size: 26px;
    }
}
