:root {
    --primary-color: var(--color-3);
    --secondary-color: var(--color-3);
    --accent-color: var(--color-4);
    --text-dark: #000;
    --text-light: #6b7280;
    --border-color: #e5e7eb;
    --bg-light: #f8fafc;
    --success-color: var(--color-4);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.job-sidebar {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 32px;
    height: fit-content;
    position: sticky;
    top: 20px;
    border: 1px solid var(--border-color);
}

.job-sidebar h4 {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary-color);
    position: relative;
}

.job-sidebar h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.job-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-list-item {
    margin-bottom: 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.job-list-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow);
}

.job-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    text-decoration: none;
    color: var(--text-dark);
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.job-link:hover, .job-link.active {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-color: var(--secondary-color);
}

.job-title {
    margin: 0;
    font-weight: 600;
    font-size: 0.95rem;
}

.job-arrow {
    color: var(--text-light);
    transition: all 0.3s ease;
}

.job-link:hover .job-arrow,
.job-link.active .job-arrow {
    color: white;
    transform: translateX(4px);
}

.job-content {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 40px;
    border: 1px solid var(--border-color);
}

.job-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.job-header h2 {
    color: var(--text-dark);
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 16px;
    line-height: 1.2;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.meta-icon {
    color: var(--primary-color);
    width: 18px;
}

.apply-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.apply-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.job-section {
    margin-bottom: 32px;
}

.section-title {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-icon {
    color: var(--primary-color);
    width: 24px;
}

.section-content {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1rem;
}

.section-content ul {
    padding-left: 20px;
}

.section-content li {
    margin-bottom: 8px;
}

/* Modal Styles */
.modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 16px 16px 0 0;
    padding: 24px 32px;
    border-bottom: none;
}

.modal-title {
    font-weight: 700;
    font-size: 1.5rem;
}

.btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 32px;
}

/*.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-control, .form-select {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
    background-color: #ffffff;
}*/

.file-upload-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.file-upload-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    background: var(--bg-light);
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.file-upload-label:hover {
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
    color: var(--primary-color);
}

.file-selected {
    border-color: var(--success-color);
    background: rgba(16, 185, 129, 0.05);
    color: var(--success-color);
}

.submit-btn {
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--color-4) 0%, var(--success-color) 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hr-section {
        padding: 40px 0;
    }
    
    .job-sidebar, .job-content {
        padding: 24px;
        margin-bottom: 24px;
    }
    
    .job-header h2 {
        font-size: 2rem;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .modal-body {
        padding: 24px;
    }
}

@media (max-width: 576px) {
    .job-header h2 {
        font-size: 1.75rem;
    }
    
    .apply-button {
        width: 100%;
        justify-content: center;
    }
    .ord-1{
        order: 1;
    }
    .ord-2{
        order: 2;
    }
}