/* =========================================================
   SRI LANGTA BABA AVIATION
   CAREER PAGE
   ========================================================= */


/* =========================================================
   HERO SECTION
   ========================================================= */

.career-page-hero {

    position: relative;

    min-height: 430px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background-color: #081b3a;

    background-repeat: no-repeat;

    background-position: center;

    background-size: cover;

}


.career-page-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5,21,45,.94),
            rgba(8,27,58,.72),
            rgba(8,27,58,.45)
        );

}


.career-page-hero-content {

    position: relative;

    z-index: 2;

    padding-top: 150px;

    padding-bottom: 75px;

}


.career-hero-small-title {

    display: inline-block;

    margin-bottom: 15px;

    color: #ff5a00;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.career-page-hero h1 {

    max-width: 800px;

    margin: 0 0 18px;

    color: #ffffff;

    font-size: clamp(40px, 5vw, 64px);

    line-height: 1.08;

    font-weight: 800;

}


.career-page-hero h1 span {

    color: #ff5a00;

}


.career-page-hero-content > p {

    max-width: 650px;

    margin: 0 0 28px;

    color: rgba(255,255,255,.78);

    font-size: 16px;

    line-height: 1.8;

}


.career-breadcrumb {

    display: flex;

    align-items: center;

    gap: 10px;

    color: rgba(255,255,255,.65);

    font-size: 13px;

}


.career-breadcrumb a {

    color: #ffffff;

    text-decoration: none;

}


.career-breadcrumb a:hover {

    color: #ff5a00;

}



/* =========================================================
   CAREER INTRO
   ========================================================= */

.career-intro-section {

    padding: 90px 0 60px;

    background: #ffffff;

}


.career-section-heading {

    max-width: 800px;

    margin: 0 auto;

    text-align: center;

}


.career-section-heading > span {

    display: inline-block;

    margin-bottom: 13px;

    color: #ff5a00;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.career-section-heading h2 {

    margin: 0 0 18px;

    color: #081b3a;

    font-size: clamp(30px, 3.5vw, 44px);

    line-height: 1.2;

    font-weight: 800;

}


.career-section-heading p {

    max-width: 700px;

    margin: 0 auto;

    color: #667085;

    font-size: 15px;

    line-height: 1.85;

}



/* =========================================================
   VACANCY SECTION
   ========================================================= */

.career-vacancy-section {

    padding: 40px 0 100px;

    background: #f5f8fc;

}


.career-vacancy-heading {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 45px;

}


.career-vacancy-heading span {

    display: block;

    margin-bottom: 10px;

    color: #ff5a00;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.career-vacancy-heading h2 {

    margin: 0;

    color: #081b3a;

    font-size: clamp(32px, 4vw, 46px);

    line-height: 1.15;

    font-weight: 800;

}


.career-vacancy-icon {

    width: 72px;

    height: 72px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #081b3a;

    color: #ff5a00;

    font-size: 25px;

}



/* =========================================================
   VACANCY GRID
   ========================================================= */

.career-vacancy-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

}


.career-vacancy-card {

    position: relative;

    min-height: 235px;

    display: flex;

    flex-direction: column;

    padding: 30px;

    background: #ffffff;

    border: 1px solid #e4e9ef;

    border-radius: 15px;

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;

}


.career-vacancy-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 3px;

    background: #ff5a00;

    transform: scaleX(0);

    transform-origin: left;

    transition: transform .3s ease;

}


.career-vacancy-card:hover {

    transform: translateY(-6px);

    border-color: rgba(255,90,0,.28);

    box-shadow:
        0 18px 40px rgba(8,27,58,.1);

}


.career-vacancy-card:hover::before {

    transform: scaleX(1);

}



/* =========================================================
   CARD TOP
   ========================================================= */

.career-card-top {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    margin-bottom: 25px;

}


.career-number {

    color: #dfe5ec;

    font-size: 30px;

    font-weight: 800;

    line-height: 1;

}


.career-card-icon {

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: rgba(255,90,0,.1);

    color: #ff5a00;

    font-size: 19px;

}


.career-vacancy-card h3 {

    max-width: 300px;

    min-height: 52px;

    margin: 0 0 25px;

    color: #081b3a;

    font-size: 18px;

    line-height: 1.45;

}



/* =========================================================
   APPLY BUTTON
   ========================================================= */

.career-apply-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    align-self: flex-start;

    margin-top: auto;

    padding: 11px 18px;

    background: #ff5a00;

    border: 1px solid #ff5a00;

    border-radius: 50px;

    color: #ffffff;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    transition: all .3s ease;

}


.career-apply-btn:hover {

    background: #081b3a;

    border-color: #081b3a;

    color: #ffffff;

    transform: translateX(3px);

}


.career-apply-btn i {

    font-size: 10px;

}



/* =========================================================
   CAREER CTA
   ========================================================= */

.career-cta-section {

    padding: 90px 0;

    background: #ffffff;

}


.career-cta-box {

    display: flex;

    align-items: center;

    gap: 25px;

    padding: 42px 45px;

    background: #081b3a;

    border-radius: 18px;

    box-shadow:
        0 20px 50px rgba(8,27,58,.14);

}


.career-cta-icon {

    width: 70px;

    height: 70px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border: 1px solid rgba(255,255,255,.2);

    border-radius: 50%;

    color: #ff5a00;

    font-size: 25px;

}


.career-cta-content {

    flex: 1;

}


.career-cta-content span {

    display: block;

    margin-bottom: 7px;

    color: #ff5a00;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.career-cta-content h2 {

    margin: 0 0 9px;

    color: #ffffff;

    font-size: 27px;

    line-height: 1.3;

}


.career-cta-content p {

    max-width: 700px;

    margin: 0;

    color: rgba(255,255,255,.7);

    font-size: 13px;

    line-height: 1.8;

}


.career-main-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    flex-shrink: 0;

    padding: 13px 22px;

    background: #ff5a00;

    border: 1px solid #ff5a00;

    border-radius: 50px;

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition: all .3s ease;

}


.career-main-btn:hover {

    background: #ffffff;

    border-color: #ffffff;

    color: #081b3a;

}



/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .career-vacancy-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}



/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .career-page-hero {

        min-height: 390px;

    }


    .career-page-hero-content {

        padding-top: 90px;

        padding-bottom: 60px;

    }


    .career-page-hero h1 {

        font-size: 36px;

    }


    .career-page-hero-content > p {

        font-size: 14px;

    }


    .career-intro-section {

        padding: 70px 0 40px;

    }


    .career-vacancy-section {

        padding: 40px 0 70px;

    }


    .career-vacancy-heading {

        align-items: flex-start;

        margin-bottom: 35px;

    }


    .career-vacancy-heading h2 {

        font-size: 31px;

    }


    .career-vacancy-icon {

        width: 58px;

        height: 58px;

        font-size: 20px;

    }


    .career-vacancy-grid {

        grid-template-columns: 1fr;

        gap: 15px;

    }


    .career-vacancy-card {

        min-height: auto;

        padding: 27px;

    }


    .career-vacancy-card h3 {

        min-height: auto;

        font-size: 17px;

        margin-bottom: 22px;

    }


    .career-cta-section {

        padding: 70px 0;

    }


    .career-cta-box {

        flex-direction: column;

        align-items: flex-start;

        padding: 32px 25px;

    }


    .career-cta-content h2 {

        font-size: 24px;

    }


    .career-main-btn {

        width: 100%;

    }

}



/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .career-page-hero-content {

        padding-top: 80px;

    }


    .career-page-hero h1 {

        font-size: 32px;

    }


    .career-vacancy-card {

        padding: 24px;

    }


    .career-card-top {

        margin-bottom: 20px;

    }


    .career-vacancy-card h3 {

        font-size: 16px;

    }


    .career-apply-btn {

        width: 100%;

    }

}