/* Careers Page Specific Styles */
.careers-hero {
    background: linear-gradient(rgba(0, 33, 71, 0.8), rgba(0, 33, 71, 0.8)), url('../images/careers-hero.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 150px 0;
    text-align: center;
}

.careers-hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.careers-hero .hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Why Join Us Section */
.why-join-us {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.why-join-us h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #002147;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: #002147;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Open Positions Section */
.open-positions {
    padding: 80px 0;
}

.open-positions h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #002147;
}

.filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    background: #f0f0f0;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background: #0066cc;
    color: white;
}

.positions-container {
    min-height: 300px;
}

.job-listing {
    background: white;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border-left: 4px solid #0066cc;
}

.job-listing:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.job-title {
    font-size: 1.4rem;
    color: #002147;
    margin-bottom: 5px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 0.9rem;
}

.job-description {
    margin-bottom: 20px;
    color: #444;
    line-height: 1.6;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.job-tag {
    background: #e6f0ff;
    color: #0066cc;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.apply-btn {
    background: #0066cc;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.apply-btn:hover {
    background: #0052a3;
}

.no-positions {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-positions i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ccc;
}

.no-positions h3 {
    margin-bottom: 15px;
    color: #444;
}

/* Application Process Section */
.application-process {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.application-process h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #002147;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #0066cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: bold;
    font-size: 1.2rem;
}

.process-step h3 {
    margin-bottom: 15px;
    color: #002147;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* General Application Section */
.general-application {
    padding: 80px 0;
    text-align: center;
}

.general-application h2 {
    margin-bottom: 20px;
    color: #002147;
}

.general-application p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: #666;
    line-height: 1.6;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #002147;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    display: inline;
    font-weight: normal;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .careers-hero .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .job-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .filters {
        gap: 5px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}