/* Start custom CSS for html, class: .elementor-element-47a8920 *//* =========================================
   CAREER HERO
========================================= */

.career-hero {
    position: relative;
    min-height: 720px;
    padding: 120px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 45%,
            rgba(51, 157, 201, 0.20),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #061d30 0%,
            #082c43 52%,
            #0b3b55 100%
        );

    color: #ffffff;
}


/* Decorative glow */

.career-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    right: -140px;
    top: -140px;

    background: rgba(99, 202, 235, 0.08);
    filter: blur(5px);
}

.career-hero::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    left: -130px;
    bottom: -130px;

    background: rgba(99, 202, 235, 0.07);
}


/* =========================================
   CONTENT
========================================= */

.career-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.career-badge {
    display: inline-flex;
    align-items: center;

    padding: 9px 18px;
    margin-bottom: 24px;

    border: 1px solid rgba(130, 210, 235, 0.35);
    border-radius: 50px;

    background: rgba(91, 190, 220, 0.10);

    color: #8edcf1;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}


.career-hero h1 {
    margin: 0 0 25px;

    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -2px;

    color: #ffffff;
}


.career-hero h1 span {
    display: block;

    background: linear-gradient(
        90deg,
        #75d9ee,
        #a8e9f5
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.career-hero p {
    max-width: 650px;
    margin-bottom: 35px;

    color: rgba(235, 247, 251, 0.78);

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================
   BUTTONS
========================================= */

.career-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.career-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 14px 24px;

    border-radius: 10px;

    text-decoration: none;
    font-size: 14px;
    font-weight: 700;

    transition: all 0.35s ease;
}


.career-btn.primary {
    background: #78d8ec;
    color: #062236;

    box-shadow:
        0 12px 30px rgba(70, 190, 220, 0.20);
}


.career-btn.primary span {
    font-size: 18px;
    transition: transform 0.3s ease;
}


.career-btn.primary:hover {
    transform: translateY(-4px);
    background: #a1e8f5;
}


.career-btn.primary:hover span {
    transform: translate(3px, -3px);
}


.career-btn.outline {
    border: 1px solid rgba(135, 220, 239, 0.45);
    color: #bdebf5;
    background: rgba(255, 255, 255, 0.03);
}


.career-btn.outline:hover {
    background: rgba(112, 210, 235, 0.12);
    border-color: #78d8ec;
    transform: translateY(-4px);
}


/* =========================================
   VISUAL SIDE
========================================= */

.career-hero-visual {
    position: relative;
    width: 390px;
    height: 390px;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 2;
}


/* Orbit circles */

.career-orbit {
    position: absolute;
    border: 1px solid rgba(115, 213, 235, 0.18);
    border-radius: 50%;
}


.orbit-one {
    width: 330px;
    height: 330px;
}


.orbit-two {
    width: 250px;
    height: 250px;

    border-color: rgba(115, 213, 235, 0.28);
}


/* Career card */

.career-card {
    position: relative;
    z-index: 3;

    width: 230px;
    padding: 30px;

    display: flex;
    flex-direction: column;
    gap: 12px;

    border: 1px solid rgba(140, 220, 240, 0.22);
    border-radius: 20px;

    background: rgba(8, 39, 57, 0.72);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.25);
}


.career-card-label {
    margin-bottom: 8px;

    color: #76d9ed;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}


.career-card strong {
    padding-bottom: 9px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    color: #ffffff;

    font-size: 16px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .career-hero {
        min-height: auto;
        padding: 90px 7%;
        flex-direction: column;
        text-align: center;
    }

    .career-hero-content {
        max-width: 800px;
    }

    .career-hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .career-hero-actions {
        justify-content: center;
    }

    .career-hero-visual {
        width: 320px;
        height: 320px;
    }

    .orbit-one {
        width: 280px;
        height: 280px;
    }

    .orbit-two {
        width: 210px;
        height: 210px;
    }
}


@media (max-width: 600px) {

    .career-hero {
        padding: 75px 6%;
    }

    .career-hero h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .career-hero p {
        font-size: 15px;
    }

    .career-hero-visual {
        transform: scale(0.85);
        margin-top: -20px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3b3a354 *//* =========================================
   CAREER JOURNEY
   SKY BLUE SECTION
========================================= */

.career-journey {
    position: relative;
    padding: 125px 7%;
    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #dff6fb 0%,
            #c8edf5 100%
        );

    color: #082c43;
}


/* =========================================
   HEADER
========================================= */

.career-journey-header {
    max-width: 760px;
    margin: 0 auto 90px;
    text-align: center;
}

.journey-label {
    display: inline-block;
    margin-bottom: 18px;

    color: #16738e;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}


.career-journey-header h2 {
    margin: 0 0 20px;

    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1.5px;

    color: #07314a;
}


.career-journey-header h2 span {
    display: block;
    color: #1685a3;
}


.career-journey-header p {
    max-width: 650px;
    margin: auto;

    color: #426878;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   TIMELINE
========================================= */

.career-timeline {
    position: relative;
    max-width: 1050px;
    margin: auto;
}


.timeline-line {
    position: absolute;

    top: 0;
    bottom: 0;
    left: 50%;

    width: 2px;

    background:
        linear-gradient(
            180deg,
            transparent,
            #49aeca,
            #49aeca,
            transparent
        );

    transform: translateX(-50%);
}


/* =========================================
   CAREER STEP
========================================= */

.career-step {
    position: relative;

    display: flex;
    align-items: center;

    width: 50%;
    min-height: 180px;

    padding-right: 80px;

    margin-bottom: 55px;
}


.career-step.reverse {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 80px;
}


/* =========================================
   NUMBER
========================================= */

.step-number {
    position: absolute;

    right: -27px;

    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 5px solid #c8edf5;
    border-radius: 50%;

    background: #0b526d;

    color: #ffffff;

    font-size: 13px;
    font-weight: 800;

    box-shadow:
        0 8px 25px rgba(7, 68, 91, 0.20);

    z-index: 3;
}


.career-step.reverse .step-number {
    left: -27px;
    right: auto;
}


/* =========================================
   CONTENT
========================================= */

.step-content {
    position: relative;

    padding: 30px 32px;

    background: rgba(255, 255, 255, 0.58);

    border-left: 4px solid #2c99b5;

    box-shadow:
        0 15px 40px rgba(11, 71, 91, 0.08);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.career-step.reverse .step-content {
    border-left: none;
    border-right: 4px solid #2c99b5;
}


.step-content:hover {
    transform: translateY(-7px);

    box-shadow:
        0 22px 45px rgba(11, 71, 91, 0.14);
}


/* =========================================
   TAG
========================================= */

.step-tag {
    display: block;
    margin-bottom: 10px;

    color: #21809a;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}


.step-content h3 {
    margin: 0 0 12px;

    color: #07314a;

    font-size: 22px;
    line-height: 1.3;
}


.step-content p {
    margin: 0;

    color: #52717d;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 850px) {

    .career-journey {
        padding: 90px 6%;
    }

    .career-timeline {
        padding-left: 35px;
    }

    .timeline-line {
        left: 10px;
        transform: none;
    }

    .career-step,
    .career-step.reverse {
        width: 100%;
        margin-left: 0;
        padding: 0 0 0 35px;
        min-height: auto;
    }

    .step-number,
    .career-step.reverse .step-number {
        left: -17px;
        right: auto;
        width: 44px;
        height: 44px;
        border-width: 4px;
    }

    .career-step.reverse .step-content {
        border-left: 4px solid #2c99b5;
        border-right: none;
    }
}


@media (max-width: 550px) {

    .career-journey-header {
        margin-bottom: 60px;
    }

    .career-journey-header h2 {
        font-size: 38px;
    }

    .step-content {
        padding: 24px;
    }

    .step-content h3 {
        font-size: 19px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b81710f *//* =========================================
    CAREER IMPACT
    DARK BLUE HERO-MATCHING SECTION
 ========================================= */

.career-impact {
    position: relative;
    padding: 130px 7%;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(87, 193, 222, 0.12),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #061d30 0%,
            #082c43 52%,
            #0b3b55 100%
        );

    color: #ffffff;
}


/* =========================================
   BACKGROUND DETAIL
========================================= */

.career-impact::before {
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    right: -250px;
    bottom: -280px;

    border: 1px solid rgba(118, 216, 237, 0.12);
    border-radius: 50%;
}

.career-impact::after {
    content: "";
    position: absolute;

    width: 350px;
    height: 350px;

    right: -170px;
    bottom: -200px;

    border: 1px solid rgba(118, 216, 237, 0.08);
    border-radius: 50%;
}


/* =========================================
   MAIN WRAPPER
========================================= */

.impact-wrapper {
    position: relative;
    z-index: 2;

    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: start;
}


/* =========================================
   INTRO
========================================= */

.impact-intro {
    position: sticky;
    top: 100px;
}

.impact-label {
    display: inline-block;
    margin-bottom: 22px;

    color: #78d8ec;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}


.impact-intro h2 {
    margin: 0 0 25px;

    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.08;
    letter-spacing: -2px;
}


.impact-intro h2 span {
    display: block;

    color: #78d8ec;
}


.impact-intro p {
    max-width: 500px;
    margin: 0 0 35px;

    color: rgba(235, 247, 251, 0.72);

    font-size: 16px;
    line-height: 1.85;
}


/* =========================================
   LINK
========================================= */

.impact-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    transition: all 0.3s ease;
}


.impact-link span {
    display: inline-flex;

    width: 38px;
    height: 38px;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(120, 216, 236, 0.5);
    border-radius: 50%;

    color: #78d8ec;

    transition: all 0.3s ease;
}


.impact-link:hover {
    color: #78d8ec;
}


.impact-link:hover span {
    transform: translateX(6px);
    background: rgba(120, 216, 236, 0.10);
}


/* =========================================
   IMPACT LIST
========================================= */

.impact-list {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}


.impact-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 25px;

    padding: 32px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.13);

    transition: all 0.35s ease;
}


.impact-item:hover {
    padding-left: 15px;
}


/* =========================================
   NUMBER
========================================= */

.impact-number {
    color: #78d8ec;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}


/* =========================================
   CONTENT
========================================= */

.impact-item h3 {
    margin: 0 0 9px;

    color: #ffffff;

    font-size: 22px;
    font-weight: 700;
}


.impact-item p {
    max-width: 520px;
    margin: 0;

    color: rgba(224, 242, 247, 0.65);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .career-impact {
        padding: 95px 7%;
    }

    .impact-wrapper {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .impact-intro {
        position: relative;
        top: auto;
    }

    .impact-intro h2 {
        font-size: 46px;
    }
}


@media (max-width: 600px) {

    .career-impact {
        padding: 80px 6%;
    }

    .impact-intro h2 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .impact-item {
        grid-template-columns: 40px 1fr;
        gap: 15px;
        padding: 25px 0;
    }

    .impact-item h3 {
        font-size: 19px;
    }

    .impact-item p {
        font-size: 13px;
    }
}/* End custom CSS */