/* =========================================================
   CAREER DETAILS HERO
========================================================= */

.hero {
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(59,130,246,.14),
            transparent 28%
        ),
        radial-gradient(
            circle at 15% 85%,
            rgba(37,99,235,.10),
            transparent 25%
        ),
        linear-gradient(
            120deg,
            #030828 0%,
            #010423 55%,
            #000322 100%
        );

    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        radial-gradient(
            circle at 1px 1px,
            rgba(255,255,255,.075) 1px,
            transparent 0
        );

    background-size: 26px 26px;
    opacity: .5;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    right: -220px;
    top: -260px;

    border: 1px solid rgba(59,130,246,.12);
    border-radius: 50%;

    box-shadow:
        0 0 0 70px rgba(59,130,246,.025),
        0 0 0 140px rgba(59,130,246,.018);

    pointer-events: none;
}

.hero .container-xxl {
    position: relative;
    z-index: 2;
}

.crumb {
    font-size: .82rem;
    color: #9db4e6;
    position: relative;
    z-index: 2;
}

.crumb a {
    color: #9db4e6;
    text-decoration: none;
    transition: .2s ease;
}

.crumb a:hover {
    color: #fff;
}

.hero h1 {
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.08;
    letter-spacing: -1.5px;
    position: relative;
    z-index: 2;
}

.hero .accent {
    color: #3b82f6;
}

.hero p {
    color: #c3d1ee;
    max-width: 600px;
    position: relative;
    z-index: 2;
    line-height: 1.8;
    font-size: 1rem;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.btn-hero-primary {
    background: var(--tig-blue);
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    padding: .7rem 1.4rem;
    border: 1px solid var(--tig-blue);
    transition: .25s ease;

    box-shadow:
        0 8px 25px rgba(37,99,235,.18);
}

.btn-hero-primary:hover {
    background: #2563eb;
    color: #fff;
    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(37,99,235,.28);
}

.btn-hero-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,.35);
    font-weight: 600;
    border-radius: 8px;
    padding: .7rem 1.4rem;
    transition: .25s ease;
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.55);
    color: #fff;
    transform: translateY(-2px);
}


/* =========================================================
   JOB BADGE
========================================================= */

.job-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 7px 13px;
    margin-bottom: 18px;

    color: #8db8ff;

    background: rgba(59,130,246,.10);
    border: 1px solid rgba(59,130,246,.25);

    border-radius: 50px;

    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .3px;

    position: relative;
    z-index: 2;
}

.job-badge i {
    color: #3b82f6;
}


/* =========================================================
   HERO JOB CARD
========================================================= */

.job-hero-card {
    position: relative;
    z-index: 3;

    max-width: 480px;
    margin-left: auto;

    padding: 28px;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.10),
            rgba(255,255,255,.045)
        );

    border: 1px solid rgba(255,255,255,.14);

    box-shadow:
        0 25px 70px rgba(0,0,0,.30),
        inset 0 1px 0 rgba(255,255,255,.08);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.job-hero-card::before {
    content: "";

    position: absolute;
    inset: 1px;

    border-radius: 19px;

    background:
        linear-gradient(
            135deg,
            rgba(59,130,246,.08),
            transparent 40%
        );

    pointer-events: none;
}

.job-card-top {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 16px;

    padding-bottom: 22px;
    margin-bottom: 22px;

    border-bottom: 1px solid rgba(255,255,255,.10);
}

.job-icon {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #3b82f6
        );

    color: #fff;
    font-size: 27px;

    box-shadow:
        0 12px 30px rgba(37,99,235,.30);
}

.job-card-top h3 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 5px;
}

.job-card-top small {
    color: #8fa8d5;
    font-size: .82rem;
}


/* =========================================================
   JOB META
========================================================= */

.job-meta {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.job-meta-item {
    display: flex;
    gap: 11px;
    align-items: flex-start;
}

.job-meta-item > i {
    color: #3b82f6;
    font-size: 18px;
    margin-top: 2px;
}

.job-meta-item span {
    display: block;

    color: #7890ba;

    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .5px;

    margin-bottom: 3px;
}

.job-meta-item strong {
    display: block;

    color: #e7efff;

    font-size: .84rem;
    font-weight: 600;
}


/* =========================================================
   QUICK INFO STRIP
========================================================= */

.job-info-strip {
    position: relative;
    z-index: 10;

    margin-top: -13px;
}

.info-strip-inner {
    background: #fff;

    border: 1px solid #e5eaf2;
    border-radius: 16px;

    padding: 22px 25px;

    box-shadow:
        0 15px 45px rgba(3,8,40,.10);
}

.quick-info {
    display: flex;
    align-items: center;
    gap: 13px;
}

.quick-info-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: #eff6ff;
    color: #2563eb;

    font-size: 19px;
}

.quick-info span {
    display: block;

    color: #8b95a5;

    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.quick-info strong {
    display: block;

    color: #101828;

    font-size: .84rem;
}


/* =========================================================
   COMMON SECTIONS
========================================================= */

.job-section {
    padding: 90px 0;
}

.job-section.bg-light {
    background: #f7f9fc;
}

.section-eyebrow {
    color: #2563eb;

    font-size: .72rem;
    letter-spacing: 1.7px;

    text-transform: uppercase;
    font-weight: 800;

    margin-bottom: 9px;
}

.section-heading {
    color: #071a3a;

    font-size: clamp(1.9rem, 3vw, 2.35rem);

    font-weight: 800;

    letter-spacing: -.7px;

    line-height: 1.2;

    margin-bottom: 18px;
}

.section-description {
    color: #667085;

    line-height: 1.8;

    max-width: 760px;
}


/* =========================================================
   ABOUT ROLE
========================================================= */

.content-card {
    background: #fff;

    border: 1px solid #e5eaf2;
    border-radius: 16px;

    padding: 30px;

    box-shadow:
        0 8px 30px rgba(3,8,40,.04);
}

.content-card p {
    color: #596579;
    line-height: 1.85;
}


/* =========================================================
   APPLY SIDEBAR
========================================================= */

.apply-sidebar {
    position: sticky;
    top: 100px;
}

.apply-sidebar-card {
    background: #fff;

    border: 1px solid #e5eaf2;
    border-radius: 16px;

    padding: 25px;

    box-shadow:
        0 12px 35px rgba(3,8,40,.07);
}

.apply-sidebar-card h4 {
    color: #071a3a;

    font-size: 1.15rem;
    font-weight: 800;

    margin-bottom: 8px;
}

.apply-sidebar-card > p {
    color: #667085;

    font-size: .83rem;
    line-height: 1.7;

    margin-bottom: 10px;
}

.sidebar-detail {
    display: flex;
    gap: 12px;

    padding: 13px 0;

    border-bottom: 1px solid #edf0f5;
}

.sidebar-detail i {
    color: #2563eb;
    font-size: 17px;
}

.sidebar-detail span {
    display: block;

    color: #98a2b3;

    font-size: .67rem;
    text-transform: uppercase;
}

.sidebar-detail strong {
    color: #071a3a;
    font-size: .82rem;
}

.sidebar-apply {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    margin-top: 17px;
    padding: 12px;

    background: #071a3a;
    color: #fff;

    border-radius: 8px;

    font-size: .84rem;
    font-weight: 700;

    text-decoration: none;

    transition: .25s ease;
}

.sidebar-apply:hover {
    background: #2563eb;
    color: #fff;
}


/* =========================================================
   RESPONSIBILITIES
========================================================= */

.responsibility-list {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;
}

.responsibility-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;

    padding: 17px;

    background: #fff;

    border: 1px solid #e5eaf2;
    border-radius: 12px;

    transition: .25s ease;
}

.responsibility-item:hover {
    transform: translateY(-2px);

    border-color: rgba(37,99,235,.28);

    box-shadow:
        0 10px 25px rgba(3,8,40,.06);
}

.responsibility-check {
    width: 27px;
    height: 27px;
    flex: 0 0 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eff6ff;
    color: #2563eb;
}

.responsibility-item p {
    margin: 0;

    color: #566275;

    font-size: .88rem;
    line-height: 1.65;
}


/* =========================================================
   SKILLS
========================================================= */

.skill-card {
    background: #fff;

    border: 1px solid #e5eaf2;
    border-radius: 16px;

    padding: 30px;

    height: 100%;

    box-shadow:
        0 8px 30px rgba(3,8,40,.035);
}

.skill-card h4 {
    color: #071a3a;

    font-size: 1.15rem;
    font-weight: 800;

    margin-bottom: 20px;
}

.skill-list {
    list-style: none;

    padding: 0;
    margin: 0;
}

.skill-list li {
    position: relative;

    padding-left: 27px;
    margin-bottom: 14px;

    color: #596579;

    font-size: .88rem;
    line-height: 1.65;
}

.skill-list li::before {
    content: "\f26a";

    font-family: "bootstrap-icons";

    position: absolute;

    left: 0;
    top: 1px;

    color: #2563eb;
}


/* =========================================================
   TECHNOLOGY TAGS
========================================================= */

.technology-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;
}

.technology-tag {
    padding: 8px 13px;

    background: #f7f9fc;

    border: 1px solid #dfe5ed;

    border-radius: 7px;

    color: #40516b;

    font-size: .78rem;
    font-weight: 600;

    transition: .2s ease;
}

.technology-tag:hover {
    background: #eff6ff;

    border-color: #bfdbfe;

    color: #2563eb;
}


/* =========================================================
   EDUCATION
========================================================= */

.education-box {
    display: flex;
    align-items: center;

    gap: 18px;

    background: #fff;

    border: 1px solid #e5eaf2;
    border-radius: 16px;

    padding: 23px;

    box-shadow:
        0 8px 30px rgba(3,8,40,.04);
}

.education-icon {
    width: 55px;
    height: 55px;

    flex: 0 0 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: #eff6ff;

    color: #2563eb;

    font-size: 23px;
}

.education-box p {
    margin: 0;

    color: #596579;

    line-height: 1.7;
}


/* =========================================================
   BENEFITS
========================================================= */

.benefit-card {
    background: #fff;

    border: 1px solid #e5eaf2;
    border-radius: 15px;

    padding: 25px;

    height: 100%;

    transition: .25s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);

    border-color: rgba(37,99,235,.25);

    box-shadow:
        0 15px 35px rgba(3,8,40,.07);
}

.benefit-icon {
    width: 47px;
    height: 47px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #eff6ff;

    color: #2563eb;

    font-size: 20px;

    margin-bottom: 17px;
}

.benefit-card h5 {
    color: #071a3a;

    font-size: 1rem;
    font-weight: 800;

    margin-bottom: 8px;
}

.benefit-card p {
    color: #667085;

    font-size: .84rem;

    line-height: 1.7;

    margin: 0;
}


/* =========================================================
   APPLY CTA
========================================================= */

.apply-section {
    position: relative;

    overflow: hidden;

    padding: 85px 0;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(59,130,246,.18),
            transparent 28%
        ),
        linear-gradient(
            120deg,
            #030828 0%,
            #010423 55%,
            #000322 100%
        );

    color: #fff;
}

.apply-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        radial-gradient(
            circle at 1px 1px,
            rgba(255,255,255,.055) 1px,
            transparent 0
        );

    background-size: 26px 26px;
}

.apply-section .container {
    position: relative;
    z-index: 2;
}

.apply-section h2 {
    color: #fff;

    font-size: clamp(2rem, 4vw, 2.8rem);

    font-weight: 800;

    line-height: 1.15;

    margin-bottom: 15px;
}

.apply-section p {
    color: #b8c8e5;

    max-width: 700px;

    line-height: 1.8;
}

.email-box {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 11px 15px;

    color: #dce8ff;

    background: rgba(255,255,255,.06);

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 8px;

    text-decoration: none;

    font-size: .88rem;
}

.email-box:hover {
    color: #fff;
    background: rgba(255,255,255,.10);
}

.email-box i {
    color: #3b82f6;
}

.apply-btn {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 12px 20px;

    background: #2563eb;

    color: #fff;

    border-radius: 8px;

    font-size: .85rem;

    font-weight: 700;

    text-decoration: none;

    transition: .25s ease;
}

.apply-btn:hover {
    background: #3b82f6;

    color: #fff;

    transform: translateY(-2px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .job-hero-card {
        margin: 10px auto 0;
    }

    .apply-sidebar {
        position: static;
    }

    .job-info-strip {
        margin-top: -20px;
    }

    .job-section {
        padding: 70px 0;
    }

}

@media (max-width: 767px) {

    .hero h1 {
        font-size: 2.5rem;
    }

    .job-meta {
        grid-template-columns: 1fr;
    }

    .responsibility-list {
        grid-template-columns: 1fr;
    }

    .info-strip-inner {
        padding: 20px;
    }

}

@media (max-width: 575px) {

    .hero {
        padding-bottom: 35px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero p {
        font-size: .9rem;
    }

    .hero-buttons {
        width: 100%;
    }

    .hero-buttons a {
        width: 100%;
        justify-content: center;
    }

    .job-hero-card {
        padding: 22px;
    }

    .job-section {
        padding: 55px 0;
    }

    .section-heading {
        font-size: 1.8rem;
    }

    .content-card,
    .skill-card {
        padding: 23px;
    }

}
