.career-hero {
    background: linear-gradient(135deg, rgba(101, 110, 238, 0.9) 0%, rgba(59, 44, 145, 0.9) 100%),
        url('../images/banner/in-job-banner.jpg') no-repeat center center;
    background-size: cover;
    padding: 150px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.career-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/dot-pattern-light.jpg') repeat;
    opacity: 0.1;
    z-index: 0;
}

.career-hero h1 {
    color: #fff;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.career-hero p.lead {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.job-section {
    background: linear-gradient(135deg, rgba(236, 236, 236, 0.9) 0%, rgba(252, 250, 255, 0.9) 100%),
        url('../images/wave-pattern.jpg') no-repeat center center;
    background-size: cover;
}

.resume-section {
    background: linear-gradient(135deg, #f9f9ff 0%, #f0f2f9 100%);
}

.resume-card {
    background: #fff;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-header {
    padding: 40px 20px 20px;
    background: linear-gradient(135deg, #4c1864 0%, #8e44ad 100%);
    color: white;
}

.card-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.card-title span {
    position: relative;
}

.card-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 3px;
}

.card-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.card-body {
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.95rem;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #4c1864;
    font-size: 16px;
}

.form-control {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.form-control:focus {
    border-color: #8e44ad;
    box-shadow: 0 0 0 3px rgba(140, 68, 173, 0.1);
    outline: none;
    background-color: #fff;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
    padding-top: 15px;
}

.upload-area {
    margin-top: 10px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.upload-area.highlight {
    border-color: #4CAF50;
    background-color: rgba(76, 175, 80, 0.1);
}

.dropzone {
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dropzone:hover {
    border-color: #8e44ad;
    background: rgba(140, 68, 173, 0.05);
}

.upload-icon {
    color: #8e44ad;
    margin-bottom: 15px;
}

.dropzone-text {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 5px;
}

.file-upload-wrapper {
    position: relative;
    display: inline-block;
    margin-top: 10px;
}

.file-upload-input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: none;
}

.file-upload-label {
    display: inline-block;
    padding: 10px 20px;
    background: #4c1864;
    color: white;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-label:hover {
    background: #3a124d;
    transform: translateY(-2px);
}

.file-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    margin-top: 15px;
    border: 1px solid #e0e0e0;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.file-info i {
    color: #8e44ad;
    font-size: 24px;
}

.remove-file-btn {
    background: none;
    border: none;
    color: #e74c3c;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.remove-file-btn:hover {
    transform: scale(1.1);
}

.submit-btn {
    background: linear-gradient(to right, #4c1864, #8e44ad);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: linear-gradient(to right, #3a124d, #6c3483);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(76, 24, 100, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

.benefits-row {
    margin: 0 -15px;
}

.benefit-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(76, 24, 100, 0.1);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #4c1864, #8e44ad);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(76, 24, 100, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.benefit-card:hover .card-icon {
    background: rgba(76, 24, 100, 0.1);
    transform: rotate(5deg) scale(1.1);
}

.card-icon img {
    max-width: 64px;
    max-height: 64px;
    transition: all 0.3s ease;
}

.benefit-card:hover .card-icon img {
    transform: scale(1.05);
}

.card-content {
    text-align: center;
}

.benefit-card .card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.benefit-card:hover .card-title {
    color: #4c1864;
}

.card-text {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.alert {
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.application-details {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
}

.application-details p {
    margin-bottom: 8px;
}

@media (max-width: 991px) {
    .card-body {
        padding: 30px;
    }

    .card-title {
        font-size: 1.8rem;
    }
    
    .benefit-card {
        padding: 30px 25px;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .card-icon img {
        max-width: 50px;
        max-height: 50px;
    }
}

@media (max-width: 767px) {
    .card-body {
        padding: 25px;
    }

    .card-title {
        font-size: 1.6rem;
    }

    .resume-card {
        margin-top: 30px;
    }
    
    .benefit-card {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .card-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 575px) {
    .card-body {
        padding: 20px;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .form-control {
        padding: 10px 15px 10px 40px;
    }

    .dropzone {
        padding: 20px 15px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }

    .card-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 1199px) {
    .benefit-card {
        padding: 30px 25px;
    }
}