.saswat-career-form {
    max-width: 480px;
    margin: 40px auto;
    padding: 30px;
}

.saswat-career-form input,
.saswat-career-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.saswat-career-form button {
    width: 100%;
    padding: 12px;
    background: #18425D;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
}
/* ================================
   SASWAT CAREER FORM — PREMIUM UI
================================ */

.saswat-career-wrap {
    max-width: 720px;
    margin: 80px auto;
    padding: 50px 45px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.06);
}

.saswat-career-title {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
}

.saswat-career-desc {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
    line-height: 26px;
}

/* ================================
   FORM FIELDS
================================ */

#saswat-career-form {
    display: grid;
    gap: 22px;
}

.sc-field input,
.sc-field select {
    width: 100%;
    padding: 15px 18px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
    transition: all .25s ease;
    background: #fafafa;
}

.sc-field input:focus,
.sc-field select:focus {
    border-color: #18425D;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(24,66,93,0.08);
}

/* FILE INPUT */
.sc-field input[type="file"] {
    padding: 12px;
    background: #fff;
}

/* ================================
   SUBMIT BUTTON
================================ */

.sc-submit {
    margin-top: 10px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    background: #18425D;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all .3s ease;
}

.sc-submit:hover {
    background: #18425D;
    transform: translateY(-1px);
}

/* ================================
   MESSAGE
================================ */

.sc-msg {
    font-size: 14px;
    margin-top: 8px;
}

.sc-msg.error {
    color: #d63638;
}

.sc-msg.success {
    color: #1a7f37;
}

/* ================================
   NO JOBS
================================ */

.saswat-no-jobs {
    font-size: 16px;
    color: #777;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 640px) {
    .saswat-career-wrap {
        padding: 35px 25px;
        margin: 40px 15px;
    }

    .saswat-career-title {
        font-size: 28px;
    }
}
/* ================================
   CAREER POPUP
================================ */

.sc-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: all .35s ease;
}

.sc-popup.active {
    opacity: 1;
    visibility: visible;
}

.sc-popup-box {
    background: #fff;
    max-width: 420px;
    width: 90%;
    padding: 35px 30px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 30px 70px rgba(0,0,0,0.15);
    transform: translateY(20px);
    transition: transform .35s ease;
}

.sc-popup.active .sc-popup-box {
    transform: translateY(0);
}

.sc-popup-box h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #18425D;
}

.sc-popup-box p {
    font-size: 15px;
    color: #555;
    line-height: 26px;
    margin-bottom: 25px;
}

.sc-popup-btn {
    padding: 12px 32px;
    border-radius: 25px;
    border: none;
    background: #18425D;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s ease;
}

.sc-popup-btn:hover {
    background: #0f2f45;
}

.sc-popup-close {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 22px;
    cursor: pointer;
    color: #999;
}

