/* =============================
Registration form 
======================= */
/* ===========================
REGISTRATION FORM SECTION
=========================== */

.admission-section {
    padding: 80px 0;
    background: #f7f9fc;
}

/* Heading */

.admission-header {
    margin-bottom: 50px;
}

.sub-title {
    display: inline-block;
    padding: 3px 50px;
    background: #e3010f;
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.admission-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #231E54;
    margin-bottom: 12px;
}

.admission-header p {
    color: #666;
    font-size: 16px;
    margin-bottom: 0;
}

/* Form Card */

.admission-card {
    background: #fff;
    border-radius: 25px;
    padding: 50px;
    border-top: 6px solid #e3010f;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

.admission-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* Labels */

.admission-card label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #444;
}

/* Inputs */

.admission-card .form-control,
.admission-card .form-select {
    height: 58px;
    border-radius: 12px;
    border: 1px solid #d8d8d8;
    box-shadow: none;
    font-size: 15px;
    transition: 0.3s;
}

/* Placeholder */

.admission-card .form-control::placeholder {
    color: #999;
}

/* Focus */

.admission-card .form-control:focus,
.admission-card .form-select:focus {
    border-color: #ec1e26;
    box-shadow: 0 0 0 4px rgba(236, 30, 38, 0.12);
}

/* Select */

.admission-card select {
    cursor: pointer;
}

/* Button */

.admission-btn {
    background: linear-gradient(90deg,
            #231E54 0%,
            #9A3429 100%);

    color: #fff;
    border: none;
    padding: 15px 55px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .5px;
    transition: .4s ease;
}

.admission-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(154, 52, 41, 0.25);
}

/* Bootstrap Row Gap Fix */

.admission-card .row {
    row-gap: 10px;
}

/* ===========================
TABLET
=========================== */

@media(max-width:991px) {

    .admission-card {
        padding: 35px;
    }

    .admission-header h2 {
        font-size: 34px;
    }

}

/* ===========================
MOBILE
=========================== */

@media(max-width:767px) {

    .admission-section {
        padding: 50px 0;
    }

    .admission-card {
        padding: 25px;
        border-radius: 18px;
    }

    .admission-header {
        margin-bottom: 30px;
    }

    .admission-header h2 {
        font-size: 28px;
    }

    .admission-header p {
        font-size: 14px;
    }

    .admission-card .form-control,
    .admission-card .form-select {
        height: 52px;
    }

    .admission-btn {
        width: 100%;
        padding: 14px;
        font-size: 16px;
    }

}


/* ===========================
About section check box css
========================== */
.main-check-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 40px;
}

.about-check {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.about-sub-box {
    min-width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff2d2d, #001f5c);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.check-box-heading {
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.section-tag {
    font-size: 25px;
    font-weight: 700;
    background: linear-gradient(to right, #e3010f, black);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.foundation-h {
    font-size: 25px !important;
    font-weight: 500 !important;
}

.lead-text {
    text-align: justify !important;
    font-size: 18px !important;
}