:root {
    --ak-primary: #11B3B8;
    --ak-secondary: #CBDCED;
    --ak-dark: #111827;
    --ak-muted: #4b5563;
    --ak-border: rgba(17, 24, 39, 0.10);
    --ak-white: #ffffff;
    --ak-soft: #f8fafc;

    --ak-gradient-main: linear-gradient(
        90deg,
        #FFF0D8 0%,
        #E7D9F3 35%,
        #D8EAF7 65%,
        #DDF3DC 100%
    );
}

.career-hero {
    background: var(--ak-gradient-main);
    padding: 75px 0 65px;
    border-bottom: 1px solid var(--ak-border);
    text-align: center;
}

.career-hero h1 {
    font-size: 44px;
    font-weight: 900;
    color: var(--ak-dark);
    margin-bottom: 14px;
}

.career-hero p {
    max-width: 680px;
    margin: 0 auto 20px;
    color: var(--ak-muted);
    font-size: 16px;
    line-height: 1.8;
}

.career-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--ak-muted);
}

.career-breadcrumb a {
    color: var(--ak-dark);
    text-decoration: none;
}

.career-section {
    padding: 60px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 38px;
}

.section-heading span {
    display: inline-block;
    background: rgba(37, 183, 200, 0.15);
    color: var(--ak-primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 12px;
}

.section-heading h2 {
    font-size: 34px;
    font-weight: 900;
    color: var(--ak-dark);
    margin-bottom: 10px;
}

.section-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--ak-muted);
    line-height: 1.8;
}

.career-feature-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--ak-border);
    border-radius: 22px;
    padding: 28px;
    height: 100%;
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
    transition: 0.3s;
}

.career-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(17, 24, 39, 0.10);
    border-color: rgba(37, 183, 200, 0.35);
}

.career-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: #06aab5;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    box-shadow: 0 10px 22px rgba(37, 183, 200, 0.25);
}

.career-feature-card h4 {
    font-size: 20px;
    font-weight: 900;
    color: var(--ak-dark);
    margin-bottom: 10px;
}

.career-feature-card p {
    color: var(--ak-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.job-card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    border: 1px solid var(--ak-border);
    border-radius: 24px;
    padding: 26px;
    margin-bottom: 18px;
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
    transition: 0.3s;
}

.job-card:hover {
    border-color: rgba(37, 183, 200, 0.45);
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(17, 24, 39, 0.10);
}

.job-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--ak-dark);
    margin-bottom: 10px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.job-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--ak-border);
    color: var(--ak-muted);
    padding: 7px 13px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

.job-meta i {
    color: var(--ak-primary);
}

.job-card p {
    color: var(--ak-muted);
    line-height: 1.7;
    margin-bottom: 18px;
}

.btn-ak-primary {
    background: #06aab5;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s;
    box-shadow: 0 10px 22px rgba(37, 183, 200, 0.20);
}

.btn-ak-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(37, 183, 200, 0.30);
}

.career-apply-box {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    border: 1px solid var(--ak-border);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
}

.apply-left {
    height: 100%;
    background: linear-gradient(135deg, #11B3B8 0%, #CBDCED 100%);
    padding: 44px 36px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.apply-left::before {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    right: -85px;
    top: -80px;
}

.apply-left::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    left: -65px;
    bottom: -65px;
}

.apply-left h3,
.apply-left p,
.apply-list {
    position: relative;
    z-index: 2;
}

.apply-left h3 {
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
}

.apply-left p {
    line-height: 1.8;
    color: #fff;
    opacity: 0.95;
    margin-bottom: 0;
}

.apply-list {
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.apply-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 700;
}

.apply-list i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.24);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* .apply-form {
    padding: 42px 38px;
} */

.apply-form h3 {
    font-size: 28px;
    font-weight: 900;
    color: var(--ak-dark);
    margin-bottom: 8px;
}

.apply-form p {
    color: var(--ak-muted);
    margin-bottom: 25px;
    line-height: 1.7;
}

.ak-form-label {
    font-weight: 800;
    color: #374151;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    height: 52px;
    border-radius: 14px;
    border: 1px solid var(--ak-border);
    padding: 12px 16px;
    font-size: 15px;
    background-color: rgba(255, 255, 255, 0.95);
}

textarea.form-control {
    height: auto;
    min-height: 120px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--ak-primary);
    box-shadow: 0 0 0 4px rgba(37, 183, 200, 0.14);
}

.career-empty {
    background: rgba(255, 255, 255, 0.88);
    border: 1px dashed var(--ak-border);
    border-radius: 24px;
    padding: 55px 20px;
    text-align: center;
}

.career-empty i {
    font-size: 42px;
    color: var(--ak-primary);
    margin-bottom: 15px;
}

.career-empty h4 {
    font-weight: 900;
    color: var(--ak-dark);
}

.career-empty p {
    color: var(--ak-muted);
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .career-hero h1 {
        font-size: 36px;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .apply-left,
    .apply-form {
        padding: 34px 26px;
    }
}

@media (max-width: 767px) {
    .career-hero {
        padding: 45px 0 38px;
    }

    .career-hero h1 {
        font-size: 30px;
    }

    .career-hero p {
        font-size: 15px;
    }

    .career-section {
        padding: 38px 0;
    }

    .section-heading {
        margin-bottom: 28px;
    }

    .section-heading h2 {
        font-size: 25px;
    }

    .career-feature-card,
    .job-card {
        padding: 22px;
    }

    .job-title {
        font-size: 19px;
    }

    .job-card .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .btn-ak-primary {
        width: 100%;
    }

    .apply-left {
        text-align: center;
    }

    .apply-list li {
        justify-content: center;
    }

    .apply-form h3,
    .apply-form p {
        text-align: center;
    }
}

@media (max-width: 420px) {
    .career-hero h1 {
        font-size: 28px;
    }

    .career-breadcrumb {
        font-size: 12px;
    }

    .apply-left,
    .apply-form {
        padding: 28px 18px;
    }

    .form-control,
    .form-select {
        height: 50px;
        font-size: 14px;
    }
}
