﻿/* ================= INNER HERO ================= */
.inner-hero {
    position: relative;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.download-hero {
    background-image: url('/images/banner/school-banner.png'); /* ✅ correct path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.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-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;
    }


/* ================= INNER CONTENT ================= */
.inner-content {
    padding: 70px 0;
    background: #f8fafc;
}

/* ================= CARD ================= */
.content-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 35px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.tc-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(244,180,0,0.08), transparent);
    z-index: 0;
}

.tc-card * {
    position: relative;
    z-index: 1;
}

/* ================= ICON ================= */
.icon-circle {
    width: 90px;
    height: 90px;
    background: #f4b400;
    color: #0b1f4b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(244,180,0,.4);
}

/* ================= HEADING ================= */
.tc-card h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0b1f4b;
}

/* ================= FORM ================= */
.tc-card .form-label {
    font-weight: 600;
    color: #333;
}

.tc-card .form-control {
    height: 48px;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px 14px;
    font-size: 14px;
}

    .tc-card .form-control:focus {
        border-color: #f4b400;
        box-shadow: 0 0 0 3px rgba(244,180,0,.2);
    }

/* ================= BUTTON ================= */
.tc-card .btn-primary {
    background: linear-gradient(135deg, #f4b400, #e3a600);
    border: none;
    color: #000;
    font-weight: 600;
    padding: 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

    .tc-card .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 25px rgba(244,180,0,.35);
    }

/* ================= ALERTS ================= */
.tc-card .alert {
    border-radius: 10px;
    font-size: 14px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 576px) {
    .inner-hero h1 {
        font-size: 28px;
    }

    .content-card {
        padding: 30px 22px;
    }

    .icon-circle {
        width: 75px;
        height: 75px;
        font-size: 30px;
    }
}
