
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.career-hero {
    position: relative;
    background: linear-gradient(135deg, #0a1a2f 0%, #0c1e35 100%);
    min-height: 450px;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: flex-start;
    justify-content: flex-start;
}

.career-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;  
    width: 60%;  
    height: 100%;
    background-image: url('../images/about-bg.webp');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 1;  
    z-index: 0;
    -webkit-mask-image: linear-gradient(to left, black 60%, transparent 100%);
    mask-image: linear-gradient(to left, black 60%, transparent 100%);
}
.career-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(10 26 47 / 100%) 0%, rgb(10 26 47 / 0%) 30%, rgb(10 26 47 / 0%) 60%, rgb(10 26 47 / 0%) 100%);
    z-index: 1;
}
.career-hero-content {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 142px 112px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
}
p.heropara {
    text-align: left !important;
}

.career-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.career-hero p {
    font-size: 18px;
    color: #cddfd9;
    line-height: 1.6;
    max-width: 800px;
    margin-bottom: 20px;
    text-align: center;
}

.career-hero .highlight-text {
    font-weight: 500;
    margin-bottom: 30px;
}

.hero-button-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
    justify-content: center;
}

.btn-primary-career {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #2c7a4b;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-career:hover {
    background: #1f5a38;
    transform: translateY(-2px);
}

.btn-outline-career {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-career:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: white;
}

/* Container */
.career-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px;
}

/* Section Header */
.section-header-career {
    margin-bottom: 40px;
}

.section-header-career h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border-left: 5px solid #2c7a4b;
    padding-left: 20px;
}

.section-header-career p {
    font-size: 16px;
    color: #475569;
    padding-left: 25px;
}

/* Mission Image */
.mission-image-wrap {
    margin-bottom: 50px;
    border-radius: 24px;
    overflow: hidden;
}

.mission-img-career {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    object-fit: cover;
    max-height: 400px;
}

/* Job Cards Grid */
.jobs-grid-career {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.job-card-career {
    background: white;
    border-radius: 20px;
    border: 1px solid #eef2f8;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.job-card-career:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.12);
    border-color: #cbdde0;
}

.job-card-header {
    padding: 24px 24px 12px 24px;
}

.job-title-career {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.job-badge {
    font-size: 12px;
    background: #e6f0ec;
    padding: 4px 12px;
    border-radius: 30px;
    font-weight: 600;
    color: #1f5a38;
}

.job-description {
    font-size: 14px;
    color: #334155;
    line-height: 1.5;
}

.job-skills {
    padding: 12px 24px;
}

.skills-label {
    font-size: 12px;
    font-weight: 700;
    color: #4a5a6e;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.skills-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    background: #f1f5f9;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    color: #1e2a3a;
    font-weight: 500;
}

.job-card-footer {
    padding: 16px 24px 24px 24px;
    margin-top: auto;
    border-top: 1px solid #eff3f8;
}

.btn-apply-career {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #0a1927;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-apply-career:hover {
    background: #1d3b2f;
    transform: translateY(-2px);
}

/* Why Work With Us Section */
.why-work-section {
    background: #f8fafc;
    border-radius: 28px;
    padding: 50px 40px;
    margin: 50px 0;
    text-align: center;
    border: 1px solid #eef2f8;
}

.why-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 40px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.why-grid-career {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.why-card-career {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    width: 240px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eef2f8;
}

.why-card-career:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -12px rgba(0, 0, 0, 0.1);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: rgba(44, 122, 75, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon i {
    font-size: 32px;
    color: #2c7a4b;
}

.why-card-career h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f172a;
}

.why-card-career p {
    font-size: 13px;
    color: #64748b;
}

.why-footer-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eef4f0;
    padding: 10px 24px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    color: #2c5a42;
}

.why-footer-text i {
    color: #2c7a4b;
}

/* Journey Banner */
.journey-banner-career {
    background: #0a1927;
    border-radius: 28px;
    padding: 50px 40px;
    text-align: center;
    color: white;
}

.journey-banner-career h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.journey-banner-career p {
    font-size: 16px;
    opacity: 0.85;
    max-width: 550px;
    margin: 0 auto 30px;
}

.btn-journey {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #0a1927;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-journey:hover {
    background: #eef3f0;
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 1024px) {
    .career-hero h1 {
        font-size: 40px;
    }
    
    .section-header-career h2 {
        font-size: 28px;
    }
    
    .why-title {
        font-size: 28px;
    }
    
    .journey-banner-career h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .career-hero {
        min-height: 380px;
    }
    
    .career-hero-content {
        padding: 60px 20px;
    }
    
    .career-hero h1 {
        font-size: 32px;
    }
    
    .career-hero p {
        font-size: 16px;
    }
    
    .hero-button-group {
        flex-direction: column;
    }
    
    .btn-primary-career, .btn-outline-career {
        justify-content: center;
    }
    
    .section-header-career h2 {
        font-size: 24px;
    }
    
    .jobs-grid-career {
        grid-template-columns: 1fr;
    }
    
    .why-grid-career {
        flex-direction: column;
        align-items: center;
    }
    
    .why-card-career {
        width: 100%;
        max-width: 300px;
    }
    
    .journey-banner-career h2 {
        font-size: 24px;
    }
    
    .career-container {
        padding: 40px 20px;
    }
    
    .why-work-section {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {

    .career-hero-content {
    padding: 100px 20px;
    }
    .career-hero .highlight-text {
    text-align: left;
    }
    .career-hero h1 {
        font-size: 28px;
    }
    
    .career-hero p {
        font-size: 14px;
    }
    
    .section-header-career h2 {
        font-size: 20px;
    }
    
    .job-title-career {
        font-size: 18px;
    }
    
    .why-title {
        font-size: 24px;
    }
    
    .journey-banner-career h2 {
        font-size: 20px;
    }
    
    .btn-journey {
        padding: 12px 28px;
        font-size: 14px;
    }
}