/* Careers Page Styles - Matching WISE Design */

/* career Box Section */
.career-box {
    padding: 80px 0 60px;
    background: #fff;
}

.career-box__single {
    padding: 30px 20px;
    margin-bottom: 30px;
}

.career-box__single-icon {
    width: 70px;
    height: 70px;
    background: #004a94;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.career-box__single-icon span {
    font-size: 28px;
    color: #fff;
}

.career-box__single-text h2 {
    font-size: 20px;
    font-weight: 600;
    color: #004a94;
    margin-bottom: 10px;
}

.career-box__single-text h2 a {
    color: #004a94;
    text-decoration: none;
}

.career-box__single-text p {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    line-height: 1.6;
}

.career-box__single-text p a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.career-box__single-text p a:hover {
    color: #004a94;
}

/* career Page Form Section */
.career-page-form {
    padding: 60px 0 80px;
    background: #fff;
}

.career-page-form__inner {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.career-page-form__input-box {
    margin-bottom: 16px;
}

.career-page-form__input-box input,
.career-page-form__input-box select {
    width: 100%;
    height: 55px;
    padding: 0 20px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    font-size: 15px;
    color: #333;
    background: #fff;
    transition: all 0.3s ease;
}

.career-page-form__input-box input:focus,
.career-page-form__input-box select:focus,
.career-page-form__input-box textarea:focus {
    outline: none;
    border-color: #004a94;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.career-page-form__input-box input::placeholder,
.career-page-form__input-box textarea::placeholder {
    color: #999;
}

.career-page-form__input-box textarea {
    width: 100%;
    height: 150px;
    padding: 15px 20px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    font-size: 15px;
    color: #333;
    resize: vertical;
    transition: all 0.3s ease;
}

.career-page-form__btn {
    margin-top: 10px;
}

.thm-btn:disabled {
    background: #6c757d !important;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.thm-btn span {
    position: relative;
    z-index: 1;
}

/* Section Title */

.section-title__tagline {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #004a94;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title__title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0;
}

/* Eligibility Question Card */
.eligibility-question {
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.eligibility-question:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Progress Indicator */
.progress-section {
    padding: 25px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-step__number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.progress-step__number--active {
    background: #004a94;
    color: #fff;
}

.progress-step__number--completed {
    background: #28a745;
    color: #fff;
}

.progress-step__number--inactive {
    background: #dee2e6;
    color: #6c757d;
}

.progress-line {
    width: 60px;
    height: 3px;
    background: #dee2e6;
}

.progress-line--active {
    background: #28a745;
}

/* Success Message */
.success-box {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-radius: 15px;
    border: 1px solid #b1dfbb;
    padding: 60px 40px;
    text-align: center;
}

.success-box__icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: #fff;
}

/* Font Awesome Icons Alternative using Unicode */
.fa-map-marker::before {
    content: "\f041";
}

.fa-phone::before {
    content: "\f095";
}

.icon-email::before {
    content: "\2709";
}

/* Responsive */
@media (max-width: 991px) {
    .career-box {
        padding: 60px 0 40px;
    }

    .career-page-form__inner {
        padding: 30px 20px;
    }

    .section-title__title {
        font-size: 28px;
    }

    .breadcrumb-area h1 {
        font-size: 32px;
    }
}
