/* Career Page */

/* ============================================================================
   JOB CARDS
   ============================================================================ */
.job-card {
    background-color: var(--white-color);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
}

.job-card .job-title {
    color: var(--primary-color);
    font-weight: 600;
}

.job-card .job-location {
    color: var(--gray-color);
    font-size: 0.875rem;
}

.job-card .job-type {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-block;
}

/* ============================================================================
   APPLICATION PROCESS - NUMBERED STEPS
   Used in job_list.html to show application steps
   ============================================================================ */
[data-step]::before {
    content: attr(data-step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0 auto 1rem;
}

/* Fix card icon size in benefits section */
.service-card .card-icon .fas {
    font-size: 3rem;
    color: var(--primary-color);
}

/* ============================================================================
   JOB APPLICATION FORM - DIVIDER TEXT
   Used in job_apply.html
   ============================================================================ */
.divider-text {
    position: relative;
    display: inline-block;
    padding: 0 10px;
    background: white;
    z-index: 1;
    color: #6c757d;
}

.divider-text:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -100px;
    right: -100px;
    height: 1px;
    background-color: #dee2e6;
    z-index: -1;
}

/* ============================================================================
   APPLICATION SUCCESS - TIMELINE
   Used in application_success.html
   ============================================================================ */
.timeline {
    position: relative;
    padding-left: 40px;
    text-align: left;
    margin-bottom: 40px;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    height: 100%;
    width: 2px;
    background: #dee2e6;
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.timeline-marker {
    position: absolute;
    top: 5px;
    left: -40px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #007bff;
    background: white;
}

.timeline-content {
    padding-bottom: 10px;
}
