/* Career Apply Modal Styles */
.career-btn-toggle {
    background: transparent;
    border: 1px solid #4f46e5;
    color: #4f46e5;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.career-btn-toggle:hover {
    background: #4f46e5;
    color: #fff;
}

.career-btn-apply {
    background: #4f46e5;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    margin-top: 15px;
}

.career-btn-apply:hover {
    background: #4338ca;
}

.career-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
}

.career-modal-content {
    background: #fff;
    margin: 5% auto;
    padding: 30px;
    width: 90%;
    max-width: 450px;
    border-radius: 16px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #ffffff;
    background: red;
    padding: 4px 10px;
    border-radius: 36px;
}

/* Form Styles */
.apply-form input {
    width: 100%;
    height: 34px;
    padding: 0 10px;
    margin: 10px 0;
    border: 1px dashed #6a11cb;
    border-radius: 8px;
}

.apply-form textarea {
    border: 1px dashed #6a11cb;
    border-radius: 8px;
}


.otp-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

#careerEmail {
    flex: 8;
    margin: 0;
}

.otp-row .btn-small {
    flex: 4;
    white-space: nowrap;
    padding: revert;
    height: 34px;
}

.btn-small {
    background: linear-gradient(135deg, rgba(61, 0, 112, 0.8), #9C27B0, rgba(255, 0, 60, 0.8));
    color: #e2e8f0;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: bold;
    transition: transform 0.5s ease;
}

.btn-small:hover {
    transform: scale(1.1);
}

.status {
    font-size: 13px;
    margin-bottom: 5px;
}

.success {
    color: green;
}

.error {
    color: red;
}

.file-upload {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: sans-serif;
}

.file-upload input[type="file"] {
    display: none;
}

.file-label {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    padding: 5px 15px;
    margin: 0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.file-label:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#file-name {
    font-size: 13px;
    color: #555;
}

.job-list {
    width: 55%;
    margin: auto;
}

@media(max-width: 600px) {
    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .career-header {
        padding: 29px 0 0px;
    }

    .career-header h1 {
        font-size: 25px;
    }

    .job-list {
        width: 100%;
    }
}

.otp-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.otp-boxes {
    display: flex;
    gap: 8px;
}

.otp-digit {
    width: 42px;
    height: 48px;
    text-align: center;
    font-size: 18px;
    border: 2px dashed #6a11cb;
    border-radius: 8px;
    outline: none;
}

.verify-btn {
    height: 35px;
    padding: 0 18px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;

    /* gradient like your UI */
    background: linear-gradient(45deg, #6a11cb, #ff4b2b);
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.verify-btn:hover {
    opacity: 0.9;
}

.otp-notice {
    background: #fff8e1;
    color: #8a6d3b;
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    margin: 10px 0;
    border: 1px solid #ffe58f;
    line-height: 1.5;
}

.shake {
    animation: shake 0.3s;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(0);
    }
}

/* /Career Apply Modal Styles */

/* Error message design */
.status {
    display: none;
    margin-top: 10px;
    font-size: 15px;
    font-weight: 600;
}

.status.success {
    color: #198754;
}

.status.error {
    color: #dc3545;
}

.status.warning {
    color: #fd7e14;
}

.status.info {
    color: #0d6efd;
}

/* /Error message design */

/* News letter design Start */
.newsletter-signup-section {
    padding: 90px 0 70px;
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.2), transparent 32%),
        radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.2), transparent 28%),
        linear-gradient(135deg, #f8fbff 0%, #eef4ff 52%, #f9fafb 100%);
}

.newsletter-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

.newsletter-panel {
    position: relative;
    overflow: hidden;
    padding: 52px;
    border-radius: 32px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 55%, #eef4ff 100%);
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
}

.newsletter-panel::before,
.newsletter-panel::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.newsletter-panel::before {
    top: -120px;
    right: -70px;
    width: 260px;
    height: 260px;
    background: rgba(37, 99, 235, 0.1);
}

.newsletter-panel::after {
    left: -80px;
    bottom: -100px;
    width: 220px;
    height: 220px;
    background: rgba(249, 115, 22, 0.12);
}

.newsletter-content {
    position: relative;
    z-index: 1;
}

.newsletter-label {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 999px;
    color: #c2410c;
    background: rgba(249, 115, 22, 0.12);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
}

.newsletter-heading {
    color: #1C2539;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
}

.newsletter-copy {
    max-width: 460px;
    margin: 18px 0 0;
    color: #526077;
    font-size: 17px;
    line-height: 1.7;
}

.newsletter-benefits {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.newsletter-benefit {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #24324a;
    font-weight: 500;
}

.newsletter-benefit i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: #0f172a;
    color: #ffffff;
    font-size: 15px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.15);
}

.newsletter-form-wrapper {
    width: 100%;
}

.newsletter-form-card {
    position: relative;
    z-index: 1;
    padding: 30px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.newsletter-card-header {
    margin-bottom: 24px;
}

.newsletter-card-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.newsletter-card-title {
    margin: 0;
    color: #111827;
    font-size: 28px;
    font-weight: 700;
}

.newsletter-card-copy {
    margin: 10px 0 0;
    color: #64748b;
    line-height: 1.6;
}

.newsletter-form {
    display: grid;
    gap: 20px;
}

.newsletter-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.newsletter-field {
    display: grid;
    gap: 8px;
}

.newsletter-field-label {
    margin: 0;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
}

.newsletter-input {
    width: 100%;
    height: 58px !important;
    border: 1px solid #d9e2ef;
    border-radius: 16px;
    padding: 0 18px;
    font-size: 15px;
    outline: none;
    background: #fff;
    color: #0f172a;
    transition: border-color .3s, box-shadow .3s, transform .3s;
}

.newsletter-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
    transform: translateY(-1px);
}

.newsletter-input.is-invalid {
    border-color: #dc2626;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12);
}

.newsletter-form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.newsletter-form-note {
    margin: 0;
    max-width: 420px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.newsletter-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 198px;
    height: 58px;
    padding: 0 28px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
    transition: .3s;
    cursor: pointer;
    box-shadow: 0 16px 30px rgba(249, 115, 22, 0.28);
}

.newsletter-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 34px rgba(249, 115, 22, 0.35);
}

.newsletter-submit-btn:disabled {
    opacity: 0.8;
    cursor: wait;
    transform: none;
}

#newsletterMessage {
    margin-top: 18px;
}

#newsletterMessage .alert {
    margin-bottom: 0;
    border: none;
    border-radius: 14px;
    padding: 14px 18px;
}

@media (max-width: 991px) {

    .newsletter-panel {
        padding: 36px 24px;
        border-radius: 24px;
    }

    .newsletter-content {
        text-align: center;
        margin-bottom: 30px;
    }

    .newsletter-copy {
        margin-left: auto;
        margin-right: auto;
    }

    .newsletter-benefits {
        max-width: 520px;
        margin: 26px auto 0;
        text-align: left;
    }

    .newsletter-form-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter-submit-btn {
        width: 100%;
    }

    .newsletter-heading {
        font-size: 30px;
    }
}

@media (max-width: 575px) {

    .newsletter-signup-section {
        padding: 70px 0 55px;
    }

    .newsletter-panel {
        padding: 28px 18px;
    }

    .newsletter-form-card {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .newsletter-heading {
        font-size: 26px;
    }

    .newsletter-card-title {
        font-size: 24px;
    }
}

/* News letter design End */

/* Common mobile view media query */
.get-in-touch-mobile .single i{
    padding: 10px;
}

/* Common mobile view media query End*/