        /* Hero Section */
        .careers-hero {
            background: linear-gradient(rgba(26, 82, 118, 0.85), rgba(19, 64, 92, 0.1)), url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 180px 0 100px;
            text-align: center;
            margin-top: 80px;
        }

        .careers-hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .careers-hero-title {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .careers-hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        /* Why Work With Us Section */
        .benefits {
            background-color: #f8f9fa;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .benefit-card {
            background: white;
            padding: 40px 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .benefit-icon {
            font-size: 3rem;
            color: #1a5276;
            margin-bottom: 20px;
        }

        .benefit-card h3 {
            color: #1a5276;
            margin-bottom: 15px;
        }

        /* Employee Testimonials */
        .testimonials {
            background: linear-gradient(135deg, #1a5276 0%, #13405c 100%);
            color: white;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: rgba(255,255,255,0.1);
            padding: 30px;
            border-radius: 8px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.15);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
        }

        .testimonial-text:before {
            content: '"';
            font-size: 4rem;
            color: rgba(255,255,255,0.3);
            position: absolute;
            top: -20px;
            left: -10px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #f39c12;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: white;
            font-weight: bold;
        }

        .author-info h4 {
            margin-bottom: 5px;
            color: white;
        }

        .author-info p {
            margin-bottom: 0;
            opacity: 0.8;
            font-size: 0.9rem;
        }

   /* Job Application Form Styles */
.job-application-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.job-application-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a5276, #e74c3c, #1a5276);
}

.job-form-container {
    max-width: 850px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(26, 82, 118, 0.1),
        0 5px 15px rgba(0,0,0,0.07);
    border: 1px solid rgba(26, 82, 118, 0.1);
    position: relative;
    overflow: hidden;
}

.job-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #1a5276, #e74c3c);
    border-radius: 20px 20px 0 0;
}

.job-application-form .form-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.job-application-form .form-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #1a5276, #e74c3c);
    border-radius: 2px;
}

.job-application-form .form-title {
    font-size: 2.2rem;
    color: #1a5276;
    margin-bottom: 10px;
    font-weight: 700;
}

.job-application-form .form-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.job-application-form .form-row {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}

.job-application-form .form-row .form-group {
    flex: 1;
    position: relative;
}

.job-application-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.job-application-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.job-application-form .form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    font-family: inherit;
}

.job-application-form .form-control:focus {
    border-color: #1a5276;
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.1);
    transform: translateY(-2px);
}

.job-application-form .form-control:hover {
    border-color: #bdc3c7;
}

.job-application-form .radio-group {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.job-application-form .radio-option {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.job-application-form .radio-option:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.job-application-form .radio-option input {
    margin-right: 12px;
    transform: scale(1.2);
}

.job-application-form .radio-option label {
    margin-bottom: 0;
    cursor: pointer;
    font-weight: 500;
}

.job-application-form .radio-option input:checked + label {
    color: #1a5276;
}

.job-application-form .radio-option input:checked ~ * {
    border-color: #1a5276;
    background: rgba(26, 82, 118, 0.05);
}

.job-application-form .file-upload {
    position: relative;
    margin-top: 8px;
}

.job-application-form .file-input {
    position: absolute;
    left: -9999px;
}

.job-application-form .file-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.job-application-form .file-text {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-right: none;
    border-radius: 12px 0 0 12px;
    background: #f8f9fa;
    color: #6c757d;
    transition: all 0.3s ease;
}

.job-application-form .file-button {
    padding: 16px 25px;
    background: linear-gradient(135deg, #1a5276, #154360);
    color: white;
    border-radius: 0 12px 12px 0;
    transition: all 0.3s ease;
    font-weight: 600;
    border: 2px solid #1a5276;
}

.job-application-form .file-button:hover {
    background: linear-gradient(135deg, #154360, #1a5276);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 82, 118, 0.3);
}

.job-application-form .file-input:focus + .file-label .file-button {
    box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.3);
}

.job-application-form .file-input:valid + .file-label .file-text {
    color: #1a5276;
    font-weight: 500;
    border-color: #1a5276;
}

.job-application-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.job-application-form .form-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.job-application-form .btn {
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    flex: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.job-application-form .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.job-application-form .btn:hover::before {
    left: 100%;
}

.job-application-form .btn-primary {
    background: linear-gradient(135deg, #1a5276, #2e86c1);
    color: white;
    box-shadow: 0 5px 15px rgba(26, 82, 118, 0.3);
}

.job-application-form .btn-primary:hover {
    background: linear-gradient(135deg, #154360, #1a5276);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 82, 118, 0.4);
}

.job-application-form .btn-secondary {
    background: linear-gradient(135deg, #e74c3c, #ec7063);
    color: white;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.job-application-form .btn-secondary:hover {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

/* Form Validation Styles */
.job-application-form .form-control:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.02);
}

.job-application-form .form-control:valid:not(:focus):not(:placeholder-shown) {
    border-color: #27ae60;
    background: rgba(39, 174, 96, 0.02);
}

/* Floating Label Effect */
.job-application-form .form-group {
    position: relative;
}

.job-application-form .floating-label {
    position: absolute;
    top: 18px;
    left: 20px;
    font-size: 16px;
    color: #6c757d;
    pointer-events: none;
    transition: all 0.3s ease;
    background: #fff;
    padding: 0 8px;
}

.job-application-form .form-control:focus + .floating-label,
.job-application-form .form-control:not(:placeholder-shown) + .floating-label {
    top: -10px;
    left: 15px;
    font-size: 12px;
    color: #1a5276;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .job-application-section {
        padding: 60px 0;
    }
    
    .job-form-container {
        padding: 30px 25px;
        margin: 0 15px;
        border-radius: 15px;
    }
    
    .job-application-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .job-application-form .form-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .job-application-form .btn {
        padding: 16px 30px;
    }
    
    .job-application-form .radio-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .job-application-form .form-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .job-form-container {
        padding: 25px 20px;
    }
    
    .job-application-form .form-title {
        font-size: 1.6rem;
    }
    
    .job-application-form .form-control {
        padding: 14px 16px;
    }
}

/* Animation for form elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.job-application-form .form-group {
    animation: fadeInUp 0.6s ease forwards;
}

.job-application-form .form-group:nth-child(1) { animation-delay: 0.1s; }
.job-application-form .form-group:nth-child(2) { animation-delay: 0.2s; }
.job-application-form .form-group:nth-child(3) { animation-delay: 0.3s; }
.job-application-form .form-group:nth-child(4) { animation-delay: 0.4s; }
.job-application-form .form-group:nth-child(5) { animation-delay: 0.5s; }
.job-application-form .form-group:nth-child(6) { animation-delay: 0.6s; }
.job-application-form .form-group:nth-child(7) { animation-delay: 0.7s; }
.job-application-form .form-group:nth-child(8) { animation-delay: 0.8s; }
.job-application-form .form-actions { animation-delay: 0.9s; }

.process-steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-top: 50px;
        }

        .process-step {
            flex: 1;
            min-width: 200px;
            text-align: center;
            padding: 20px;
            position: relative;
        }

        .process-step:not(:last-child):after {
            content: '';
            position: absolute;
            top: 40px;
            right: -10%;
            width: 20%;
            height: 2px;
            background: #1a5276;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: #1a5276;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
            font-weight: bold;
        }