/* Careers Page Specific Styles */

/* Hero Section Modifications */
.careers-hero {
    background: linear-gradient(135deg, #0c1445 0%, #1a2980 100%);
}

/* Job Listings */
.job-category {
    padding: 80px 0;
    background-color: #f8f9fc;
}

.job-category:nth-child(even) {
    background-color: #ffffff;
}

.job-listing {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-listing:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.job-listing h3 {
    color: #1a2980;
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.job-listing h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1a2980, #26d0ce);
}

.job-details {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.job-section {
    flex: 1;
    min-width: 250px;
}

.job-section h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.job-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.job-section ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 5px;
}

.job-listing .btn {
    margin-top: 20px;
}

/* Work Models Section */
.work-models .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.work-models .value-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.work-models .value-card:hover {
    transform: translateY(-10px);
}

.work-models .value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
    border-radius: 50%;
    padding: 20px;
}

.work-models .value-icon img {
    max-width: 100%;
    filter: brightness(0) invert(1);
}

/* Expectations Section */
.expectations {
    padding: 80px 0;
    background-color: #f8f9fc;
}

.expectations-content {
    max-width: 800px;
    margin: 0 auto;
}

.expectations-content p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.6;
}

.expectations-content ul {
    padding-left: 20px;
    margin-bottom: 30px;
}

.expectations-content ul li {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.6;
}

/* Application Process */
.application-process {
    padding: 80px 0;
    background-color: #ffffff;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
}

.process-steps:before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #1a2980, #26d0ce);
    z-index: 1;
}

.process-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a2980;
}

.step-content p {
    font-size: 16px;
    color: #666;
}

/* Application Form */
.application-form {
    padding: 80px 0;
    background-color: #f8f9fc;
}

.career-form {
    max-width: 800px;
    margin: 40px auto 0;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.form-group {
    flex: 1;
    min-width: 250px;
    padding: 0 15px;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1a2980;
    outline: none;
}

.form-group input[type="file"] {
    padding: 10px 0;
}

.career-form .btn {
    padding: 12px 30px;
    font-size: 18px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .job-details {
        flex-direction: column;
    }
    
    .process-steps:before {
        display: none;
    }
    
    .process-step {
        margin-bottom: 30px;
    }
}