/* =========================================================
   CAREER COMMON
========================================================= */

.career-intro,
.career-benefits,
.career-skills,
.career-journey,
.career-profile,
.career-final-cta {
    overflow: hidden;
}

.career-section-label {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #0d6efd;

    font-size: 13px;
       font-weight: 700;

    letter-spacing: 2px;
}

.career-section-label span {
    width: 35px;
    height: 3px;

    border-radius: 20px;

    background: currentColor;
}

.career-section-title {
    max-width: 800px;

    margin-top: 15px;

    color: #151a22;

    font-size: clamp(38px, 4.5vw, 58px);

    line-height: 1.08;

       font-weight: 700;

    letter-spacing: -1px;
}

.career-section-title span {
    color: #0d6efd;
}

.career-text {
    color: #687382;

    font-size: 18px;

    line-height: 1.75;
}

.career-heading-text {
    max-width: 700px;

    margin: 20px auto 0;

    color: #707b88;

    font-size: 18px;

    line-height: 1.7;
}


/* =========================================================
   CAREER INTRO
========================================================= */

.career-intro {
    background: #fff;
}

.career-image-wrap {
    position: relative;

    padding-right: 35px;
    padding-bottom: 35px;
}

.career-image-wrap::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: 0;

    width: 80%;
    height: 80%;

    border-radius: 25px;

    background: #eaf2ff;

    z-index: 0;
}

.career-image-wrap img {
    position: relative;

    z-index: 1;

    width: 70%;

    min-height: 470px;

    object-fit: cover;

    border-radius: 25px;

    box-shadow:
        0 25px 60px rgba(25,50,90,.12);

    transition: transform .5s ease;
}

.career-image-wrap:hover img {
    transform: translateY(-7px);
}

.career-image-card {
    position: absolute;

    z-index: 3;

    right: 5px;
    bottom: 5px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px 18px;

    border-radius: 15px;

    background: rgba(255,255,255,.95);

    border: 1px solid #e5eaf1;

    box-shadow:
        0 15px 40px rgba(20,40,70,.12);
}

.career-image-card > i {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #edf4ff;

    color: #0d6efd;
}

.career-image-card strong {
    display: block;

    font-size: 16px;
}

.career-image-card span {
    display: block;

    margin-top: 3px;

    color: #7b8490;

    font-size: 12px;
}

.career-btn {
    padding: 13px 23px;

    font-size: 16px;

    border-radius: 9px;

    margin-top: 10px;

    transition: all .3s ease;
}

.career-btn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 30px rgba(13,110,253,.18);
}


/* =========================================================
   BENEFITS
========================================================= */

.career-benefits {
    background: #f7f9fc;
}

.career-benefit-card {
    position: relative;

    height: 100%;

    min-height: 330px;

    padding: 32px;

    background: #fff;

    border: 1px solid #e5eaf0;

    border-radius: 22px;

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.career-benefit-card:hover {
    transform: translateY(-8px);

    border-color: rgba(13,110,253,.2);

    box-shadow:
        0 22px 55px rgba(30,50,80,.09);
}

.career-card-number {
    position: absolute;

    top: 18px;
    right: 25px;

    font-size: 65px;

    line-height: 1;

    font-weight: 900;

    color: #f0f3f7;

    transition: color .3s ease;
}

.career-benefit-card:hover .career-card-number {
    color: #e5efff;
}

.career-card-icon {
    position: relative;

    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 18px;

    background: #edf4ff;

    color: #0d6efd;

    font-size: 25px;

    transition: all .35s ease;
}

.career-benefit-card:hover .career-card-icon {
    color: #fff;

    background:
        linear-gradient(
            135deg,
            #2865e8,
            #6347d7
        );

    transform: rotate(-7deg) scale(1.08);

    box-shadow:
        0 12px 30px rgba(50,100,220,.2);
}

.career-benefit-card h3 {
    position: relative;

    font-size: 24px;

       font-weight: 700;

    margin-bottom: 12px;
}

.career-benefit-card p {
    position: relative;

    color: #707a86;

    font-size: 16px;

    line-height: 1.65;

    margin: 0;
}

.career-card-line {
    position: absolute;

    left: 32px;
    bottom: 0;

    width: 55px;
    height: 3px;

    background: #0d6efd;

    border-radius: 10px;

    transition: width .35s ease;
}

.career-benefit-card:hover .career-card-line {
    width: 100px;
}


/* =========================================================
   SKILLS
========================================================= */

.career-skills {
    background: #fff;
}

.career-skills-cloud {
    position: relative;

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    justify-content: center;

    gap: 13px;

    padding: 35px;

    border-radius: 25px;

    background:
        radial-gradient(
            circle at center,
            rgba(13,110,253,.07),
            transparent 60%
        );

    border: 1px solid #e8edf3;
}

.career-skills-cloud::before,
.career-skills-cloud::after {
    content: "";

    position: absolute;

    border-radius: 50%;

    border: 1px dashed rgba(13,110,253,.15);
}

.career-skills-cloud::before {
    width: 270px;
    height: 270px;
}

.career-skills-cloud::after {
    width: 180px;
    height: 180px;
}

.career-skills-cloud span {
    position: relative;

    z-index: 2;

    padding: 12px 17px;

    border-radius: 50px;

    background: #fff;

    border: 1px solid #e1e7ee;

    color: #4f5a67;

    font-size: 15px;

    font-weight: 600;

    box-shadow:
        0 8px 20px rgba(30,50,80,.06);

    transition: all .3s ease;
}

.career-skills-cloud span:hover {
    color: #fff;

    background: #0d6efd;

    border-color: #0d6efd;

    transform: translateY(-5px);
}

.career-skills-cloud span.highlight {
    color: #0d6efd;

    border-color: rgba(13,110,253,.2);

    background: #edf4ff;

    font-size: 17px;
}


/* =========================================================
   JOURNEY
========================================================= */

.career-journey {
    background: #f7f9fc;
}

.career-journey-flow {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    padding: 35px 0;
}

.career-journey-item {
    width: 145px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    gap: 9px;
}

.career-journey-icon {
    width: 75px;
    height: 75px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 22px;

    background: #fff;

    border: 1px solid #e1e7ee;

    color: #0d6efd;

    font-size: 25px;

    box-shadow:
        0 10px 25px rgba(30,50,80,.05);

    transition: all .35s ease;
}

.career-journey-item:hover .career-journey-icon {
    color: #fff;

    background:
        linear-gradient(
            135deg,
            #2865e8,
            #6347d7
        );

    transform: translateY(-8px);

    box-shadow:
        0 15px 30px rgba(50,100,220,.2);
}

.career-journey-item strong {
    font-size: 14px;

    letter-spacing: 1.5px;

    color: #202733;
}

.career-journey-item span {
    color: #7a8490;

    font-size: 12px;
}

.career-journey-arrow {
    color: #b3bdc9;

    font-size: 14px;
}

.career-journey-text {
    max-width: 750px;

    margin: 15px auto 0;

    color: #6f7985;

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================================
   PROFILE
========================================================= */

.career-profile {
    background: #fff;
}

.career-profile-visual {
    position: relative;

    width: 430px;
    height: 430px;

    max-width: 100%;

    margin: auto;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(13,110,253,.08),
            transparent 55%
        );
}

.profile-circle {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%,-50%);

    border: 1px dashed rgba(13,110,253,.2);

    border-radius: 50%;

    animation: profileRotate 18s linear infinite;
}

.circle-one {
    width: 260px;
    height: 260px;
}

.circle-two {
    width: 370px;
    height: 370px;

    animation-duration: 25s;

    animation-direction: reverse;
}

@keyframes profileRotate {

    from {
        transform: translate(-50%,-50%) rotate(0);
    }

    to {
        transform: translate(-50%,-50%) rotate(360deg);
    }

}

.profile-center {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%,-50%);

    width: 130px;
    height: 130px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 7px;

    border-radius: 50%;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #2865e8,
            #6347d7
        );

    box-shadow:
        0 20px 50px rgba(50,100,220,.25);

    z-index: 5;
}

.profile-center i {
    font-size: 30px;
}

.profile-center strong {
    font-size: 12px;

    letter-spacing: 2px;
}

.profile-tag {
    position: absolute;

    z-index: 6;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 10px 13px;

    background: #fff;

    border: 1px solid #e3e9f0;

    border-radius: 12px;

    box-shadow:
        0 12px 30px rgba(20,40,70,.08);

    font-size: 13px;

    color: #505a66;

    animation: profileFloat 4s ease-in-out infinite;
}

.profile-tag i {
    color: #0d6efd;
}

.tag-one {
    top: 60px;
    left: 5px;
}

.tag-two {
    top: 25px;
    right: 20px;

    animation-delay: 1s;
}

.tag-three {
    bottom: 60px;
    left: 15px;

    animation-delay: 2s;
}

.tag-four {
    bottom: 30px;
    right: 15px;

    animation-delay: 3s;
}

@keyframes profileFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}

.career-profile-list {
    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 12px 20px;

    margin-top: 25px;
}

.career-profile-list div {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    color: #59636f;

    font-size: 15px;

    line-height: 1.45;
}

.career-profile-list i {
    flex-shrink: 0;

    width: 21px;
    height: 21px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #edf4ff;

    color: #0d6efd;

    font-size: 9px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.career-final-cta {
    background: #f7f9fc;
}

.career-cta-box {
    position: relative;

    padding: 80px 35px;

    text-align: center;

    overflow: hidden;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            #eef5ff,
            #f8f4ff
        );

    border: 1px solid #dfe8f5;
}

.career-cta-decoration {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(13,110,253,.1);
}

.decoration-one {
    width: 420px;
    height: 420px;

    top: -260px;
    left: -130px;
}

.decoration-two {
    width: 350px;
    height: 350px;

    right: -160px;
    bottom: -230px;
}

.career-cta-content {
    position: relative;

    z-index: 2;
}

.career-cta-content h2 {
    max-width: 950px;

    margin: 18px auto 22px;

    color: #151a22;

    font-size: clamp(38px,4.5vw,58px);

    line-height: 1.08;

       font-weight: 700;
}

.career-cta-content h2 span {
    color: #0d6efd;
}

.career-cta-content p {
    max-width: 750px;

    margin: auto;

    color: #6d7784;

    font-size: 18px;

    line-height: 1.7;
}

.career-cta-buttons {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}

.career-cta-buttons .btn {
    padding: 13px 22px;

    font-size: 16px;

    border-radius: 9px;

    transition: all .3s ease;
}

.career-cta-buttons .btn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 30px rgba(13,110,253,.16);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .career-image-wrap {
        padding-right: 20px;
        padding-bottom: 25px;
    }

    .career-image-wrap img {
        min-height: 400px;
    }

    .career-benefit-card {
        min-height: 300px;
    }

    .career-profile-visual {
        margin-bottom: 20px;
    }

}


@media (max-width: 767.98px) {

    .career-section-title {
        font-size: 40px;
    }

    .career-text {
        font-size: 17px;
    }

    .career-image-wrap img {
        min-height: 350px;
    }

    .career-journey-arrow {
        display: none;
    }

    .career-journey-item {
        width: 130px;
    }

    .career-profile-list {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 575.98px) {

    .career-section-title {
        font-size: 35px;
    }

    .career-image-wrap {
        padding-right: 10px;
        padding-bottom: 20px;
    }

    .career-image-card {
        right: 0;
        bottom: 0;

        transform: scale(.9);
        transform-origin: bottom right;
    }

    .career-benefit-card {
        min-height: auto;

        padding: 27px;
    }

    .career-skills-cloud {
        padding: 25px 15px;
    }

    .career-profile-visual {
        width: 290px;
        height: 290px;
    }

    .circle-one {
        width: 190px;
        height: 190px;
    }

    .circle-two {
        width: 270px;
        height: 270px;
    }

    .profile-center {
        width: 100px;
        height: 100px;
    }

    .profile-center i {
        font-size: 24px;
    }

    .profile-tag {
        font-size: 10px;

        padding: 8px 9px;
    }

    .tag-one {
        left: -5px;
    }

    .tag-two {
        right: -5px;
    }

    .tag-three {
        left: -5px;
    }

    .tag-four {
        right: -5px;
    }

    .career-cta-box {
        padding: 55px 20px;
    }

    .career-cta-content h2 {
        font-size: 34px;
    }

    .career-cta-buttons {
        flex-direction: column;
    }

    .career-cta-buttons .btn {
        width: 100%;
    }

}

/* =========================================================
   CAREER OPENINGS
========================================================= */

.career-openings-section {
    background: #f7f9fc;
}


/* =========================================================
   JOB CARD
========================================================= */

.career-job-card {

    position: relative;

    margin-bottom: 20px;

    overflow: hidden;

    background: #fff;

    border: 1px solid #e3e8ef;

    border-radius: 18px;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}


.career-job-card:hover {

    transform: translateY(-5px);

    border-color: rgba(13,110,253,.25);

    box-shadow:
        0 18px 45px rgba(25,50,90,.09);

}


.career-job-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 22px 25px;

    background:
        linear-gradient(
            135deg,
            #0d6efd,
            #5145d9
        );

    color: #fff;

}


.career-job-header > div {

    display: flex;

    align-items: center;

    gap: 15px;

}


.career-job-number {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 12px;

    background: rgba(255,255,255,.14);

    border: 1px solid rgba(255,255,255,.18);

    font-size: 13px;

    font-weight: 800;

}


.career-job-header h3 {

    margin: 0;

    font-size: 22px;

    font-weight: 800;

}


.career-apply-btn {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 9px 14px;

    border: 1px solid rgba(255,255,255,.3);

    border-radius: 8px;

    background: rgba(255,255,255,.12);

    color: #fff;

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;

    transition: all .3s ease;

}


.career-apply-btn:hover {

    background: #fff;

    color: #0d6efd;

    transform: translateX(3px);

}


.career-apply-btn i {

    font-size: 11px;

}


/* =========================================================
   JOB BODY
========================================================= */

.career-job-body {

    padding: 23px 25px 22px;

}


.career-job-body h4 {

    margin-bottom: 10px;

    color: #1d2733;

    font-size: 13px;

    font-weight: 800;

}


.career-job-body ul {

    margin: 0 0 20px;

    padding-left: 20px;

}


.career-job-body li {

    margin-bottom: 5px;

    color: #687482;

    font-size: 14px;

    line-height: 1.5;

}


.career-job-meta {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

}


.career-job-meta span {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 6px 10px;

    border-radius: 7px;

    background: #f5f7fa;

    border: 1px solid #e3e8ee;

    color: #687482;

    font-size: 11px;

}


.career-job-meta i {

    color: #0d6efd;

    font-size: 10px;

}


/* =========================================================
   APPLICATION FORM
========================================================= */

.career-application-card {

    position: sticky;

    top: 25px;

    padding: 0;

    overflow: hidden;

    background: #fff;

    border: 1px solid #e1e7ee;

    border-radius: 20px;

    box-shadow:
        0 18px 45px rgba(25,50,90,.08);

}


.career-form-header {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 22px 25px;

    background:
        linear-gradient(
            135deg,
            #0d6efd,
            #5145d9
        );

    color: #fff;

}


.career-form-icon {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 14px;

    background: rgba(255,255,255,.14);

    border: 1px solid rgba(255,255,255,.18);

    font-size: 19px;

}


.career-form-header span {

    display: block;

    margin-bottom: 3px;

    color: rgba(255,255,255,.65);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.career-form-header h3 {

    margin: 0;

    font-size: 22px;

    font-weight: 800;

}


/* =========================================================
   FORM BODY
========================================================= */

#jobApplicationForm {

    padding: 25px;

}


.career-form-group {

    margin-bottom: 15px;

}


.career-form-group label {

    display: block;

    margin-bottom: 6px;

    color: #3e4854;

    font-size: 13px;

    font-weight: 700;

}


.career-form-group .form-control,
.career-form-group .form-select {

    min-height: 44px;

    border: 1px solid #dce2e9;

    border-radius: 8px;

    color: #35404d;

    font-size: 14px;

    box-shadow: none;

    transition:
        border-color .25s ease,
        box-shadow .25s ease;

}


.career-form-group .form-control:focus,
.career-form-group .form-select:focus {

    border-color: #0d6efd;

    box-shadow:
        0 0 0 3px rgba(13,110,253,.08);

}


.career-form-group small {

    display: block;

    margin-top: 5px;

    color: #89929d;

    font-size: 11px;

}


/* =========================================================
   CAPTCHA
========================================================= */

.career-captcha {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 8px;

}


.career-captcha-code {

    flex: 1;

    min-height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    background:
        repeating-linear-gradient(
            135deg,
            #f0f4fa,
            #f0f4fa 7px,
            #e5ebf4 7px,
            #e5ebf4 14px
        );

    border: 1px solid #dce3ec;

    color: #344054;

    font-size: 18px;

    font-weight: 900;

    letter-spacing: 5px;

    font-style: italic;

    user-select: none;

}


.career-captcha-refresh {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #dce3ec;

    border-radius: 8px;

    background: #fff;

    color: #0d6efd;

    transition: all .3s ease;

}


.career-captcha-refresh:hover {

    color: #fff;

    background: #0d6efd;

    border-color: #0d6efd;

    transform: rotate(180deg);

}


/* =========================================================
   SUBMIT
========================================================= */

.career-submit-btn {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 48px;

    margin-top: 5px;

    border: 0;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            #0d6efd,
            #5145d9
        );

    color: #fff;

    font-size: 15px;

    font-weight: 800;

    transition: all .3s ease;

}


.career-submit-btn:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 28px rgba(13,110,253,.22);

}


.career-submit-btn i {

    font-size: 12px;

    transition: transform .3s ease;

}


.career-submit-btn:hover i {

    transform: translateX(4px);

}


/* =========================================================
   SELECTED JOB
========================================================= */

.career-job-card.selected {

    border-color: #0d6efd;

    box-shadow:
        0 15px 40px rgba(13,110,253,.13);

}


.career-job-card.selected .career-job-header {

    background:
        linear-gradient(
            135deg,
            #075bd4,
            #4335c3
        );

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .career-application-card {

        position: relative;

        top: auto;

    }

}


@media (max-width: 767.98px) {

    .career-job-header {

        align-items: flex-start;

        flex-direction: column;

    }


    .career-job-header > div {

        width: 100%;

    }


    .career-apply-btn {

        width: 100%;

        justify-content: center;

    }


    .career-job-header h3 {

        font-size: 20px;

    }


    #jobApplicationForm {

        padding: 20px;

    }

}


@media (max-width: 575.98px) {

    .career-job-header {

        padding: 18px;

    }


    .career-job-body {

        padding: 20px 18px;

    }


    .career-job-number {

        width: 35px;

        height: 35px;

    }


    .career-job-header h3 {

        font-size: 18px;

    }


    .career-job-body li {

        font-size: 13px;

    }


    .career-job-meta {

        flex-direction: column;

        align-items: flex-start;

    }

}