
/* HERO */
.jobs-hero {
    --hero-bg: url('../images/jobs/hero-jobs.jpg');
}

/* JOB SECTION */
.jobs-section {
    padding: 60px 20px;
    background: var(--light-color);
}

/* JOB CARD */
.job-card {
    background: var(--white-color);
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--box-shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeUp 1s ease;
}

/* HIGHLIGHT STRIP */
.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #0d6efd;
}

/* HOVER EFFECT */
.job-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(var(--primary-color-rgb),0.2);
}

/* TITLE */
.job-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* BADGES */
.badge-custom {
    background: #e7f1ff;
    color: var(--primary-color);
    margin-right: 5px;
}

/* APPLY BUTTON */
.btn-apply {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    border-radius: 30px;
    padding: 8px 20px;
    transition: 0.3s;
}

.btn-apply:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(var(--primary-color-rgb),0.4);
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* EMPTY STATE */
.jobs-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    animation: fadeUp 0.8s ease;
}

.jobs-empty-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 0 10px 30px rgba(var(--primary-color-rgb), 0.3);
    animation: pulse 2.5s ease-in-out infinite;
}

.jobs-empty-icon i {
    font-size: 2.4rem;
    color: #fff;
}

.jobs-empty-state h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.jobs-empty-state p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.7;
    max-width: 460px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1);   box-shadow: 0 10px 30px rgba(var(--primary-color-rgb), 0.3); }
    50%       { transform: scale(1.06); box-shadow: 0 14px 40px rgba(var(--primary-color-rgb), 0.45); }
}