.elementor-2184 .elementor-element.elementor-element-563772d{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-dfe26fa *//* Job Listings Styles */
.job-listings-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.job-listing-item {
    background: #ffffff;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    margin-bottom: 30px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-listing-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.job-title {
    color: #c41e3a;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    border-bottom: 2px solid #c41e3a;
    padding-bottom: 10px;
}

.job-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
}

.job-meta span {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #555;
}

.job-meta strong {
    color: #333;
    margin-right: 5px;
    min-width: 80px;
}

.job-excerpt {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #666;
    font-size: 16px;
}

.job-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.view-job-btn, .apply-job-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-job-btn {
    background: #6c757d;
    color: white;
}

.view-job-btn:hover {
    background: #545b62;
    transform: translateY(-1px);
}

.apply-job-btn {
    background: linear-gradient(45deg, #c41e3a, #dc3545);
    color: white;
    position: relative;
    overflow: hidden;
}

.apply-job-btn:hover {
    background: linear-gradient(45deg, #a71429, #c82333);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.apply-job-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.apply-job-btn:hover:before {
    left: 100%;
}

.job-full-details {
    border-top: 1px solid #e1e5e9;
    padding-top: 20px;
    margin-top: 20px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.job-full-details h4 {
    color: #c41e3a;
    font-size: 18px;
    margin-bottom: 12px;
    margin-top: 25px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e1e5e9;
}

.job-full-details h4:first-child {
    margin-top: 0;
}

.job-description,
.job-requirements,
.job-qualifications,
.job-skills,
.job-benefits,
.job-perks {
    margin-bottom: 20px;
    line-height: 1.7;
}

.job-description p,
.job-requirements p,
.job-qualifications p,
.job-skills p,
.job-benefits p,
.job-perks p {
    color: #555;
    font-size: 15px;
    margin-bottom: 10px;
}

/* Modal Styles */
.job-modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.job-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.job-modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.job-modal-close:hover {
    color: #c41e3a;
    background-color: #f8f9fa;
}

.job-modal h3 {
    color: #c41e3a;
    margin-bottom: 25px;
    font-size: 24px;
    text-align: center;
}

/* Form Styles */
#job-application-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #c41e3a;
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.form-group small {
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

.form-group input[type="file"] {
    padding: 8px;
    border: 2px dashed #e1e5e9;
    background-color: #f8f9fa;
}

.form-group input[type="file"]:hover {
    border-color: #c41e3a;
    background-color: #fff5f5;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.submit-application-btn,
.cancel-application-btn {
    padding: 14px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    min-width: 140px;
}

.submit-application-btn {
    background: linear-gradient(45deg, #c41e3a, #dc3545);
    color: white;
}

.submit-application-btn:hover {
    background: linear-gradient(45deg, #a71429, #c82333);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.submit-application-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.cancel-application-btn {
    background: #6c757d;
    color: white;
}

.cancel-application-btn:hover {
    background: #545b62;
    transform: translateY(-2px);
}

/* Loading and Success States */
.loading {
    position: relative;
    color: transparent;
}

.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.success-message,
.error-message {
    padding: 15px;
    border-radius: 6px;
    margin: 15px 0;
    font-weight: bold;
    text-align: center;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .job-listings-container {
        padding: 15px;
    }
    
    .job-listing-item {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .job-title {
        font-size: 20px;
    }
    
    .job-meta {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .job-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .view-job-btn,
    .apply-job-btn {
        padding: 12px;
        font-size: 13px;
    }
    
    .job-modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .submit-application-btn,
    .cancel-application-btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .job-listing-item {
        padding: 15px;
    }
    
    .job-title {
        font-size: 18px;
    }
    
    .job-modal-content {
        padding: 15px;
        margin: 5% auto;
    }
    
    .job-modal h3 {
        font-size: 20px;
    }
}

/* Print Styles */
@media print {
    .job-actions,
    .job-modal {
        display: none !important;
    }
    
    .job-listing-item {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}/* End custom CSS */