﻿/* ================= INNER HERO ================= */
.inner-hero {
    position: relative;
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
/* ================= PUBLIC DISCLOSURE BACKGROUND ================= */
.public-disclosure-hero {
    background-image: url('/images/banner/school-banner.png'); /* ✅ correct path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* DARK OVERLAY */
.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(11, 31, 75, 0.75), rgba(11, 31, 75, 0.45) );
    z-index: 1;
}

/* HERO TEXT */
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

    .hero-content h1 {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 18px;
        opacity: 0.95;
    }


/* ================= MAIN SECTION ================= */
.public-disclosure-section {
    background: #f6f9fc;
    padding: 60px 0;
}

/* ================= CARD ================= */
.disclosure-card {
    background: #fff;
    border-radius: 14px;
    padding: 25px 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: transform .3s, box-shadow .3s;
}

    .disclosure-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,.12);
    }

    .disclosure-card h3 {
        font-size: 22px;
        font-weight: 700;
        color: #0b2c5d;
        margin-bottom: 18px;
        position: relative;
    }

        .disclosure-card h3::after {
            content: "";
            width: 60px;
            height: 3px;
            background: #f4b400;
            display: block;
            margin-top: 8px;
            border-radius: 3px;
        }

/* ================= TABLE ================= */
.disclosure-table {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0 10px;
}

    .disclosure-table tr {
        background: #f9fbff;
        transition: background .3s;
    }

        .disclosure-table tr:hover {
            background: #eef4ff;
        }

    .disclosure-table th,
    .disclosure-table td {
        padding: 14px 18px;
        vertical-align: middle;
    }

    .disclosure-table th {
        width: 40%;
        font-weight: 600;
        color: #0b2c5d;
        background: #f1f5ff;
        border-radius: 8px 0 0 8px;
    }

    .disclosure-table td {
        color: #333;
        border-radius: 0 8px 8px 0;
    }

/* ================= DOWNLOAD LINKS ================= */
.download-link {
    display: inline-block;
    padding: 6px 14px;
    background: #0b2c5d;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    text-decoration: none;
    transition: all .3s;
}

    .download-link:hover {
        background: #f4b400;
        color: #000;
    }

/* ================= RESPONSIVE ================= */
/* ================= MOBILE RESPONSIVE IMPROVEMENTS ================= */
@media (max-width: 768px) {

    .hero-content {
        position: absolute;
        inset: 0;
    }
    .public-disclosure-hero {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        margin-top:160px;
    }
    /* ===== INNER HERO ===== */
    .inner-hero {
        height: auto; /* fixed height hata diya */
        min-height: 200px;
        padding: 80px 16px 50px; /* header ke niche space */
        text-align: center;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 15px;
    }

    /* ===== CARD ===== */
    .disclosure-card {
        padding: 18px 16px;
        border-radius: 12px;
    }

        .disclosure-card h3 {
            font-size: 20px;
        }

    /* ===== TABLE → STACK MODE ===== */
    .disclosure-table,
    .disclosure-table tbody,
    .disclosure-table tr,
    .disclosure-table th,
    .disclosure-table td {
        display: block;
        width: 100%;
    }

        .disclosure-table tr {
            margin-bottom: 14px;
            border-radius: 12px;
            padding: 10px;
        }

        .disclosure-table th {
            width: 100%;
            background: transparent;
            padding: 6px 0 4px;
            font-size: 13px;
            color: #0b2c5d;
            border-radius: 0;
        }

        .disclosure-table td {
            background: #f1f5ff;
            padding: 10px 12px;
            font-size: 14px;
            border-radius: 8px;
        }

    /* ===== DOWNLOAD BUTTON ===== */
    .download-link {
        font-size: 13px;
        padding: 6px 16px;
    }
}

