:root {
    --itech-primary: #2937f0;
    --itech-accent: #f16628;
    --itech-success: #10b981;
    --bg-soft-blue: rgba(41, 55, 240, 0.05);
    --bg-soft-orange: rgba(241, 102, 40, 0.05);
}

.job-detail-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.job-detail-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at top right, rgba(41, 55, 240, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.job-header-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: var(--bg-soft-blue);
    color: var(--itech-primary);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(41, 55, 240, 0.1);
}

.job-title-new {
    font-size: 2.5rem;
    font-weight: 800;
    color: #010e28;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.job-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 991px) {
    .job-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .job-stats-grid {
        grid-template-columns: 1fr;
    }
}

.job-stat-item {
    background: #f8faff;
    padding: 1.25rem;
    border-radius: 16px;
    border: 1px solid rgba(41, 55, 240, 0.05);
    transition: all 0.3s ease;
}

.job-stat-item:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 20px rgba(41, 55, 240, 0.05);
}

.job-stat-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--itech-primary);
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.job-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.25rem;
}

.job-stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
}

.job-section {
    margin-bottom: 2.5rem;
}

.job-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.job-section-title::before {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--itech-accent);
    border-radius: 3px;
    display: inline-block;
}

.job-desc-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #475569;
}

.job-list {
    list-style: none;
    padding: 0;
}

.job-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #475569;
}

.job-list li::before {
    content: '\F26A';
    /* bi-check-circle-fill */
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: var(--itech-success);
    font-size: 1rem;
}

/* Hiring Process Timeline */
.hiring-process-timeline {
    position: relative;
    padding-left: 40px;
    margin-top: 2rem;
}

.hiring-process-timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--itech-primary) 0%, #e2e8f0 100%);
}

.timeline-step {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-dot {
    position: absolute;
    left: -40px;
    width: 30px;
    height: 30px;
    background: #fff;
    border: 3px solid var(--itech-primary);
    border-radius: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--itech-primary);
}

.timeline-content h6 {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.timeline-content p {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0;
}

/* Consultation Form Sync */
.consultation-form {
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #ffffff !important;
}

.form-floating>.form-control:focus~label {
    color: var(--itech-primary);
}

.btn-primary {
    background: var(--itech-primary);
    border: none;
    padding: 12px 30px;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1a237e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(41, 55, 240, 0.2);
}

@media (max-width: 768px) {
    .job-detail-card {
        padding: 1.5rem;
    }

    .job-title-new {
        font-size: 1.8rem;
    }
}