/* ============================= */
/* ADMISSION PROCESS PAGE */
/* ============================= */

.admission-section {
    background: #f8f9fa;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* ============================= */
/* TYPOGRAPHY FIX */
/* ============================= */

/* Main Heading */
.admission-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Section Headings */
.admission-section h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.admission-section h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #0d6efd;
}

/* Paragraph */
.admission-section p {
    font-size: 15.5px;
    margin-bottom: 12px;
}

/* List */
.admission-section li {
    font-size: 15.5px;
}

/* ============================= */
/* FORM */
/* ============================= */

.form-box {
    background: #FFFFFF;
    border-radius: 10px;
}



/* ============================= */
/* FORM WRAPPER */
/* ============================= */

/* .contact-box__form22 {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
} */

/* ============================= */
/* INPUT + SELECT + TEXTAREA */
/* ============================= */

.contact-box__form22 .form-control-n {
    width: 100%;
    height: 48px;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

/* textarea alag */
.contact-box__form22 textarea.form-control-n {
    height: auto;
    min-height: 110px;
    resize: none;
}

/* select arrow fix */
.contact-box__form22 select.form-control-n {
    appearance: none;
    cursor: pointer;
}

/* ============================= */
/* FOCUS EFFECT */
/* ============================= */

.contact-box__form22 .form-control-n:focus {
    border-color: #0d6efd;
    background: #ffffff;
    box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.1);
    outline: none;
}

/* ============================= */
/* PLACEHOLDER */
/* ============================= */

.contact-box__form22 .form-control-n::placeholder {
    color: #888;
    font-size: 14px;
}

/* ============================= */
/* BUTTON */
/* ============================= */

.contact-box__form22 .btn {
    height: 48px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    background: #0d6efd;
    border: none;
    transition: all 0.3s ease;
}

/* hover */
.contact-box__form22 .btn:hover {
    background: #0b5ed7;
}

/* ============================= */
/* SPACING FIX */
/* ============================= */

.contact-box__form22 .mb-3 {
    margin-bottom: 15px !important;
}





.btn-primary {
    height: 45px;
    font-weight: 600;
    font-size: 15px;
}

/* Sticky Form */
.sticky-form {
    position: sticky;
    top: 35px;
}

/* Responsive Fix */
@media (max-width: 991px) {
    .sticky-form {
        position: static;
        margin-top: 30px;
    }
}

/* ============================= */
/* STEP BOX */
/* ============================= */

.sca-adm-step-box {
    background: #ffffff;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

/* ============================= */
/* LIST */
/* ============================= */

.sca-adm-list {
    padding-left: 0;
    margin-bottom: 15px;
    list-style: none;
}

.sca-adm-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 22px;
}

/* Tick Icon */
.sca-adm-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #0d6efd;
    font-size: 14px;
}

/* ============================= */
/* FAQ */
/* ============================= */

/* ============================= */
/* FAQ UNIQUE DESIGN */
/* ============================= */

.sca-adm-faq-wrapper {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
}

/* Title */
.sca-adm-faq-title {
    font-size: 18px;
    color: #0d6efd;
}

/* Item */
.sca-adm-faq-item {
    border: none;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
}

/* Button */
.sca-adm-faq-btn {
    font-size: 15.5px;
    font-weight: 600;
    background: #f8f9fa;
    box-shadow: none;
    padding: 14px 16px;
}

/* Remove Bootstrap focus shadow */
.sca-adm-faq-btn:focus {
    box-shadow: none;
}

/* Active State */
.sca-adm-faq-btn:not(.collapsed) {
    background: #0d6efd;
    color: #ffffff;
}

/* Body */
.sca-adm-faq-body {
    font-size: 15.5px;
    background: #ffffff;
    padding: 15px 16px;
    line-height: 1.6;
}

/* Smooth transition */
.accordion-collapse {
    transition: all 0.3s ease;
}