
/* Career Page Specific Styles */
.career_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    
    .modal_content {
    max-width: 95vw;
    max-height: 95vh;
    }
    
    .modal_iframe {
    width: 100%;
    height: 750px;
    }
    
    .modal_header {
    padding: 15px 20px;
    }
}

.career_hero_section {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 80px;
    padding: 60px 0;
}

.career_hero_content {
    flex: 1;
    max-width: 500px;
}

.career_hero_title {
    font-size: 48px;
    font-weight: 600;
    color: #8B9DC3;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.career_hero_underline {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #FF6B6B 0%, #4ECDC4 100%);
    margin-bottom: 40px;
}

.career_hero_description {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 20px;
}

.career_hero_cta {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    font-weight: 500;
}

.career_hero_image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.career_hero_image img {
    max-width: 100%;
    height: auto;
}

.job_listings_section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job_card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.job_card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.job_header {
    display: flex;
    justify-content: between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.job_title_section {
    flex: 1;
}

.job_title {
    font-size: 24px;
    font-weight: 600;
    color: #4ECDC4;
    margin: 0 0 10px 0;
}

.job_experience {
    font-size: 16px;
    color: #333333;
    margin: 0 0 15px 0;
    font-weight: 500;
}

.job_tags_and_actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background-color: #f8f9fa; */
    padding: 10px;
    border-radius: 4px;
}

.job_tags {
    display: flex;
    gap: 10px;
}

.job_tag {
    padding: 8px 16px;
    background: #E9ECEF;
    border-radius: 20px;
    font-size: 14px;
    color: #666666;
    font-weight: 500;
}

.job_actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.see_description_btn {
    color: #4ECDC4;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
}

.see_description_btn:hover {
    color: #3BAEA3;
    text-decoration: none;
}

.apply_now_btn {
    background-color: #FF6B6B;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
}

.apply_now_btn:hover {
    background: linear-gradient(135deg, #FF5252 0%, #FF7979 100%);
    transform: translateY(-1px);
    color: white;
    text-decoration: none;
}

.job_description {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}


.job_description.expanded {
    display: block;
}
.job_description h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
}

.job_description p {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 20px;
}

.job_description ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.job_description li {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.job_description li:before {
    content: "•";
    color: #4ECDC4;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.close_description_btn {
    color: #4ECDC4;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-right: 20px;
}

.close_description_btn:hover {
    color: #3BAEA3;
    text-decoration: none;
}

/* Application Modal Styles */
.modal_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.modal_overlay.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal_content {
    background: white;
    border-radius: 12px;
    padding: 0;
    position: relative;
    max-width: 90vw;
    /* max-height: 90vh; */
    overflow: hidden;
    animation: slideIn 0.3s ease;
}

.modal_header {
    padding: 20px 30px;
    border-bottom: 1px solid #E9ECEF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F8F9FA;
}

.modal_title {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    margin: 0;
}

.modal_close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal_close:hover {
    background: #E9ECEF;
    color: #333333;
}

.modal_iframe_container {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal_iframe {
    border: none;
    width: 610px;
    height: 660px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
    }
    to { 
    opacity: 1;
    transform: scale(1) translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .job_tags_and_actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .job_actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
    }
    
    .apply_now_btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}
