﻿/* ===== JOB REQUIREMENTS PAGE STYLES ===== */
.requirements-main {
    margin-top: 140px;
    min-height: calc(100vh - 140px);
    background-color: #f5f5f5;
    padding: 40px 20px 60px;
}

.requirements-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Section */
.requirements-header {
    background-color: white;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.requirements-header h1 {
    font-size: 36px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.requirements-header p {
    font-size: 18px;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* General Requirements Section */
.general-section {
    background-color: white;
    padding: 40px;
    border-radius: 4px;
    margin-bottom: 30px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.general-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #dee2e6;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.requirements-list li {
    padding: 15px 0;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #4b5563;
    font-size: 16px;
}

.requirements-list li:last-child {
    border-bottom: none;
}

.requirements-list i {
    color: #1e40af;
    font-size: 20px;
    width: 24px;
}

/* Job Category Sections */
.category-section {
    background-color: white;
    padding: 40px;
    border-radius: 4px;
    margin-bottom: 30px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.category-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #dee2e6;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.category-card {
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 60px;
    height: 60px;
    background-color: #1e40af;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6;
    color: #4b5563;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list i {
    color: #198754;
    font-size: 16px;
}

/* Documents Section */
.documents-section {
    background-color: white;
    padding: 40px;
    border-radius: 4px;
    margin-bottom: 30px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.document-item {
    background-color: #f9fafb;
    padding: 25px;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
}

.document-item:hover {
    background-color: #e9ecef;
    transform: translateY(-3px);
}

.doc-icon {
    width: 50px;
    height: 50px;
    background-color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin: 0 auto 15px;
}

.document-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.document-item p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

/* Process Timeline */
.process-section {
    background-color: white;
    padding: 40px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
    padding-left: 40px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #dee2e6;
}

.process-item {
    position: relative;
    margin-bottom: 40px;
}

.process-item:last-child {
    margin-bottom: 0;
}

.process-marker {
    position: absolute;
    left: -40px;
    width: 40px;
    height: 40px;
    background-color: #0d6dfdab;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.process-content {
    background-color: #f9fafb;
    padding: 20px;
    border-radius: 4px;
    margin-left: 20px;
}

.process-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.process-content p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Important Notes */
.notes-section {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.notes-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #856404;
    margin-bottom: 15px;
}

.notes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notes-list li {
    padding: 10px 0;
    color: #856404;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.notes-list i {
    color: #ffc107;
    margin-top: 3px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 768px) {
    .requirements-main {
        margin-top: 140px;
        padding: 30px 15px 40px;
    }
    
    .requirements-header {
        padding: 40px 20px;
    }
    
    .requirements-header h1 {
        font-size: 28px;
    }
    
    .requirements-header p {
        font-size: 16px;
    }
    
    .general-section,
    .category-section,
    .documents-section,
    .process-section,
    .notes-section {
        padding: 30px 20px;
    }
    
    .category-grid,
    .documents-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-timeline {
        padding-left: 30px;
    }
    
    .process-timeline::before {
        left: 15px;
    }
    
    .process-marker {
        left: -30px;
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .requirements-main {
        padding: 20px 10px 30px;
    }
    
    .requirements-header h1 {
        font-size: 24px;
    }
    
    .category-card,
    .document-item {
        padding: 20px 15px;
    }
}