/* ================================================================
   CAREER PAGE STYLES — career-section.css
   InfinitiBit Theme
   ================================================================ */

/* ----------------------------------------------------------------
   CAREER HERO SECTION
   ---------------------------------------------------------------- */
.career-hero-section {
    position: relative;
    background: #000000;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.career-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/career-header-bg.png") center center / cover no-repeat;
    /* opacity: 0.45; */
    z-index: 0;
}

/* Gradient fade-out at the bottom */
.career-hero-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 220px;
    background: linear-gradient(to bottom, transparent, #000);
    z-index: 1;
    pointer-events: none;
}

.career-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 35px;
    width: 100%;
    text-align: center;
}

.career-hero-title {
    font-size: 64px;
    font-weight: 300;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 28px;
    letter-spacing: -1px;
}

.career-hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: #a7adbe;
    font-weight: 300;
    max-width: 680px;
    margin: 0 auto 44px;
}

.career-hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Primary CTA */
.btn-career-primary {
    background: #0044dd;
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #0044dd;
}

.btn-career-primary:hover {
    background: #0033bb;
    border-color: #0033bb;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 68, 221, 0.45);
    text-decoration: none;
}

/* Outline CTA */
.btn-career-outline {
    background: transparent;
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-career-outline:hover {
    border-color: #0044dd;
    background: rgba(0, 68, 221, 0.1);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 68, 221, 0.2);
    text-decoration: none;
}

/* ----------------------------------------------------------------
   CAREER TEAM / ABOUT SECTION
   ---------------------------------------------------------------- */
.career-team-section {
    background: #000000;
    padding: 100px 0;
}

.career-team-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 35px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.career-team-image {
    flex: 1;
    min-width: 0;
    border-radius: 16px;
    overflow: hidden;
}

.career-team-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
}

.career-team-content {
    flex: 1;
    min-width: 0;
}

.career-team-content h2 {
    font-size: 52px;
    font-weight: 300;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 20px;
    letter-spacing: -0.8px;
}

.career-team-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #a7adbe;
    font-weight: 300;
    margin: 0 0 18px;
}

.career-team-content p:last-child {
    margin-bottom: 0;
}

/* ----------------------------------------------------------------
   WHY JOIN SECTION
   ---------------------------------------------------------------- */
.career-why-join-section {
    background: #000000;
    padding: 120px 0 140px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

/* Background gradient glow */
.career-why-join-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 68, 221, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.career-why-join-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 35px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.why-join-title {
    font-size: 52px;
    font-weight: 300;
    color: #ffffff;
    margin: 0 0 20px;
    letter-spacing: -0.8px;
    line-height: 1.1;
}

.why-join-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: #a7adbe;
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto 84px;
}

/* Values Grid */
.why-join-values {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.why-join-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    cursor: default;
    /* Overlapping effect */
    position: relative;
    transition: all 0.4s ease;
}

.why-join-item:first-child {
    margin-left: 0;
}

/* Ensure hovered item comes to front */
.why-join-item:hover {
    z-index: 10;
    transform: translateY(-8px);
}

/* Outer ring */
.value-circle-outer {
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    /* border: 1px solid; */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 68, 221, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

/* Subtle glow ring on hover */
.why-join-item:hover .value-circle-outer {
    background: rgba(0, 68, 221, 0.6);
    box-shadow:
        0 0 50px rgba(0, 68, 221, 0.3),
        0 0 0 8px rgba(0, 68, 221, 0.08);
}

/* Inner circle */
.value-circle-inner {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    border: 1px solid rgba(0, 68, 221, 0.35);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s ease;
}

.why-join-item:hover .value-circle-inner {
    background: white;
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.value-icon img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-join-item:hover .value-icon img {
    transform: scale(1.15);
}

.value-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    /* text-transform: uppercase; */
    color: #1a1a1a;
    /* Darker for white background */
    transition: color 0.3s ease;
}

.why-join-item:hover .value-label {
    color: #0044dd;
}

/* ----------------------------------------------------------------
   LIFE AT INFINITIBIT SECTION
   ---------------------------------------------------------------- */
.career-life-section {
    background: #000000;
    padding: 100px 0 120px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.career-life-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px;
}

.career-life-title {
    font-size: 52px;
    font-weight: 300;
    color: #ffffff;
    margin: 0 0 20px;
    letter-spacing: -0.8px;
    text-align: center;
}

.career-life-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: #a7adbe;
    font-weight: 300;
    text-align: center;
    margin: 0 auto 84px;
    max-width: 650px;
}

/* ---- Masonry 3-column grid ---- */
/* Col 1 = 35rem (wide), Col 2 = 20rem (narrow), Col 3 = 28rem (medium-wide) */
.career-life-grid {
    display: grid;
    grid-template-columns: 35rem 20rem 28rem;
    gap: 16px;
    align-items: start;
    justify-content: center;
}

.career-grid-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 600px;
}

/* Base card style */
.career-img-card {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background: #0d0d14;
}

.career-img-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.career-img-card:hover img {
    transform: scale(1.04);
}

/* Card size variants — matching masonry layout */
.tall-card {
    height: 380px;
}

.medium-card {
    height: 240px;
}

.small-card {
    height: 175px;
}

.wide-card {
    height: 220px;
}

/* ----------------------------------------------------------------
   MOMENTS AND EVENTS SECTION
   ---------------------------------------------------------------- */
.career-events-section {
    background: #000000;
    padding: 0 0 120px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.career-events-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 35px;
}

.career-events-title {
    font-size: 30px;
    font-weight: 300;
    color: #ffffff;
    margin: 0 0 40px;
    letter-spacing: -0.8px;
}

/* 3-column equal grid */
.career-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Card */
.career-event-card {
    background: #0b0f1e;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.career-event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 68, 221, 0.3);
}

/* Image area */
.career-event-img {
    width: 100%;
    height: 230px;
    overflow: hidden;
    flex-shrink: 0;
}

.career-event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.career-event-card:hover .career-event-img img {
    transform: scale(1.05);
}

/* Card body */
.career-event-body {
    padding: 24px 22px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.career-event-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.35;
}

.career-event-desc {
    font-size: 14px;
    line-height: 1.65;
    color: #8892a4;
    margin: 0;
    font-weight: 300;
}

.career-event-link {
    font-size: 14px;
    font-weight: 500;
    color: #3b7bff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
    transition: color 0.2s ease, gap 0.2s ease;
}

.career-event-link:hover {
    color: #6fa3ff;
    gap: 8px;
    text-decoration: none;
}

/* ================================================================
   RESPONSIVE — CAREER PAGE
   ================================================================ */

/* --- Large tablets / small desktops --- */
@media screen and (max-width: 1200px) {
    .career-hero-title {
        font-size: 54px;
    }

    .career-team-container {
        gap: 50px;
    }

    .career-team-content h2,
    .why-join-title,
    .career-life-title {
        font-size: 40px;
    }
}

/* --- Tablets --- */
@media screen and (max-width: 992px) {
    .career-hero-section {
        min-height: auto;
        padding: 140px 0 80px;
    }

    .career-hero-title {
        font-size: 46px;
    }

    /* Stack team section */
    .career-team-container {
        flex-direction: column;
        gap: 40px;
    }

    .career-team-image,
    .career-team-content {
        flex: none;
        width: 100%;
    }

    .career-team-content h2 {
        font-size: 38px;
    }

    /* Values: 3 per row */
    .why-join-values {
        gap: 28px;
    }

    .value-circle-outer {
        width: 115px;
        height: 115px;
    }

    .value-circle-inner {
        width: 92px;
        height: 92px;
    }

    .value-icon img {
        width: 40px;
        height: 40px;
    }

    /* Masonry: 2 columns */
    .career-life-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Hide 3rd column or show it below */
    .career-grid-col:nth-child(3) {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* --- Mobile --- */
@media screen and (max-width: 768px) {

    /* Hero */
    .career-hero-section {
        padding: 130px 0 70px;
    }

    .career-hero-container {
        padding: 0 24px;
        text-align: left;
    }

    .career-hero-title {
        font-size: 36px;
        letter-spacing: -0.5px;
    }

    .career-hero-title br {
        display: none;
    }

    .career-hero-description {
        font-size: 16px;
        margin-bottom: 36px;
        text-align: left;
    }

    .career-hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .btn-career-primary,
    .btn-career-outline {
        width: 100%;
        max-width: 340px;
        text-align: center;
        padding: 15px 28px;
    }

    /* Team */
    .career-team-section {
        padding: 70px 0;
    }

    .career-team-container {
        padding: 0 24px;
    }

    .career-team-content h2 {
        font-size: 32px;
    }

    /* Why Join */
    .career-why-join-section {
        padding: 70px 0 80px;
    }

    .career-why-join-container {
        padding: 0 24px;
    }

    .why-join-title {
        font-size: 32px;
    }

    .why-join-subtitle {
        font-size: 15px;
        margin-bottom: 50px;
    }

    .why-join-values {
        margin-top: 30px;
        gap: 0;
    }

    .why-join-item {
        margin-left: -2.5rem;
        /* Adjusted overlap for mobile */
    }

    .why-join-item:first-child {
        margin-left: 0;
    }

    .value-circle-outer {
        width: 108px;
        height: 108px;
    }

    .value-circle-inner {
        width: 82px;
        height: 82px;
        background: white;
    }

    .value-icon img {
        width: 38px;
        height: 38px;
    }

    .value-label {
        font-size: 10px;
    }

    /* Life at InfinitiBit */
    .career-life-section {
        padding: 70px 0 80px;
    }

    .career-life-container {
        padding: 0 24px;
    }

    .career-life-title {
        font-size: 32px;
        text-align: left;
    }

    .career-life-subtitle {
        font-size: 15px;
        text-align: left;
        margin-left: 0;
    }

    /* Single column masonry on mobile */
    .career-life-grid {
        grid-template-columns: 1fr;
    }

    .career-grid-col:nth-child(3) {
        grid-column: auto;
        display: flex;
        flex-direction: column;
    }

    /* Normalize card heights on mobile */
    .tall-card,
    .medium-card,
    .wide-card {
        height: 260px;
    }

    .small-card {
        height: 200px;
    }
}

/* --- Small mobile --- */
@media screen and (max-width: 480px) {
    .career-hero-title {
        font-size: 30px;
    }

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

    .career-team-content h2,
    .why-join-title,
    .career-life-title {
        font-size: 28px;
    }

    .why-join-values {
        gap: 16px;
    }

    .value-circle-outer {
        width: 98px;
        height: 98px;
    }

    .value-circle-inner {
        width: 76px;
        height: 76px;
    }

    .btn-career-primary,
    .btn-career-outline {
        max-width: 100%;
    }

    .tall-card,
    .medium-card,
    .wide-card {
        height: 220px;
    }

    .small-card {
        height: 170px;
    }
}

/* ================================================================
   OUR CORE VALUES SECTION
   ================================================================ */
.career-values-section {
    background: #06091a;
    padding: 110px 0 130px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.career-values-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 35px;
    text-align: center;
}

/* Title */
.career-values-title {
    font-size: 52px;
    font-weight: 300;
    color: #ffffff;
    margin: 0 0 20px;
    letter-spacing: -0.8px;
    line-height: 1.1;
}

/* Subtitle */
.career-values-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: #a7adbe;
    font-weight: 300;
    max-width: 850px;
    margin: 0 auto;
}

/* ---- Diagram wrapper (flex column, center-aligned) ---- */
.career-values-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 48px;
}

/* Vertical trunk: from subtitle down to horizontal branch */
.cvd-trunk {
    width: 1px;
    height: 64px;
    background: linear-gradient(to bottom, rgba(45, 93, 233, 0.1), rgba(45, 93, 233, 0.65));
    flex-shrink: 0;
}

/* Items row */
.cvd-items {
    display: flex;
    width: 100%;
    align-items: flex-start;
    position: relative;
}

/* Horizontal branch line spanning from center of first to center of last item */
.cvd-items::before {
    content: '';
    position: absolute;
    top: 0;
    /* left & right = half of one column width (1/6 of total / 2 = 1/12) */
    left: calc(100% / 12);
    right: calc(100% / 12);
    height: 1px;
    background: rgba(45, 93, 233, 0.6);
    pointer-events: none;
}

/* Each value item */
.career-value-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-top: 52px;
    gap: 14px;
}

/* Vertical drop from horizontal branch down to each icon */
.career-value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 52px;
    background: rgba(45, 93, 233, 0.6);
    pointer-events: none;
}

/* Icon container */
.career-value-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d5de9;
    flex-shrink: 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.career-value-item:hover .career-value-icon {
    color: #6fa3ff;
    transform: translateY(-3px);
}

.career-value-icon svg {
    width: 52px;
    height: 52px;
}

/* Label */
.career-value-label {
    font-size: 13px;
    font-weight: 600;
    color: #d8ddf0;
    text-align: center;
    line-height: 1.45;
    max-width: 110px;
    transition: color 0.3s ease;
}

.career-value-item:hover .career-value-label {
    color: #ffffff;
}

/* ---- Responsive — Core Values ---- */
@media screen and (max-width: 992px) {
    .career-values-title {
        font-size: 44px;
    }

    .cvd-items {
        flex-wrap: wrap;
        gap: 40px 0;
    }

    /* 3-up layout on tablet */
    .career-value-item {
        flex: 0 0 33.33%;
    }

    /* Hide connector lines on wrapped layout */
    .cvd-trunk,
    .cvd-items::before,
    .career-value-item::before {
        display: none;
    }

    .career-value-item {
        padding-top: 0;
    }
}

@media screen and (max-width: 600px) {
    .career-values-section {
        padding: 70px 0 80px;
    }

    .career-values-title {
        font-size: 34px;
        letter-spacing: -0.5px;
    }

    .career-values-subtitle {
        font-size: 15px;
    }

    /* 2-up layout on mobile */
    .career-value-item {
        flex: 0 0 50%;
    }
}

/* ================================================================
   PERKS AND BENEFITS SECTION
   ================================================================ */
.career-perks-section {
    background: #000000;
    padding: 110px 0 130px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

/* Background glow effect from image */
.career-perks-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 80, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.career-perks-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 35px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Title */
.career-perks-title {
    font-size: 52px;
    font-weight: 300;
    color: #ffffff;
    margin: 0 0 20px;
    letter-spacing: -0.8px;
    line-height: 1.1;
}

/* Subtitle */
.career-perks-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: #a7adbe;
    font-weight: 300;
    max-width: 850px;
    margin: 0 auto 84px;
}

/* 3-column × 2-row grid */
.career-perks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: left;
}

/* Individual perk card */
.career-perk-card {
    background: #020617;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 42px 35px 46px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: all 0.3s ease;
}

.career-perk-card:hover {
    background: #040a25;
    border-color: rgba(45, 93, 233, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Icon wrapper — top-left blue icon */
.career-perk-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    flex-shrink: 0;
}

.career-perk-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Card title */
.career-perk-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 16px;
    line-height: 1.35;
}

/* Card description */
.career-perk-desc {
    font-size: 14px;
    line-height: 1.65;
    color: #8892a4;
    margin: 0;
    font-weight: 300;
}

/* ---- Responsive — Perks ---- */
@media screen and (max-width: 1024px) {
    .career-perks-title {
        font-size: 40px;
    }

    .career-perks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 640px) {
    .career-perks-section {
        padding: 70px 0 80px;
    }

    .career-perks-title {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .career-perks-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .career-perks-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .career-perk-card {
        padding: 26px 24px 28px;
    }
}

/* ================================================================
   OUR HIRING PROCESS SECTION
   ================================================================ */
.career-process-section {
    background: #010411;
    padding: 120px 0 140px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

/* Background glow effect from image */
.career-process-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 1400px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 80, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.career-process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 35px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.career-process-title {
    font-size: 52px;
    font-weight: 300;
    color: #ffffff;
    margin: 0 0 20px;
    letter-spacing: -0.8px;
    line-height: 1.1;
}

.career-process-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: #a7adbe;
    font-weight: 300;
    margin: 0 auto 100px;
    max-width: 650px;
}

/* 5-column grid for steps */
.career-process-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
}

.career-step-item {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
}

/* Step Card */
.career-step-card {
    width: 100%;
    height: 160px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    margin-top: 35px;
    /* space for overlapping number circle */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Gradient Colors (matched with image) */
.step-col-1 {
    background: #0c59ec;
}

.step-col-2 {
    background: #066ee1;
}

.step-col-3 {
    background: #0086b9;
}

.step-col-4 {
    background: #00a2ac;
}

.step-col-5 {
    background: #01bb8d;
}

/* Per-step number border colors */
.step-col-1 .career-step-num {
    border-color: #0c59ec;
}

.step-col-2 .career-step-num {
    border-color: #066ee1;
}

.step-col-3 .career-step-num {
    border-color: #0086b9;
}

.step-col-4 .career-step-num {
    border-color: #00a2ac;
}

.step-col-5 .career-step-num {
    border-color: #01bb8d;
}

/* Overlapping Number Circle */
.career-step-num {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    background: #000000;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.career-step-card:hover .career-step-num {
    color: #ffffff;
    transform: translateX(-50%) scale(1.05);
}

/* Label */
.career-step-label {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    text-align: center;
}

/* Connecting Arrow */
.career-step-arrow {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    pointer-events: none;
    margin-top: 35px;
    flex-shrink: 0;
}

.career-step-arrow svg {
    width: 28px;
    height: 28px;
}

/* ---- Responsive — Hiring Process ---- */
@media screen and (max-width: 1100px) {
    .career-process-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 60px 20px;
    }

    .career-step-item {
        flex: 0 0 calc(33.33% - 20px);
    }

    .career-step-arrow {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .career-process-title {
        font-size: 38px;
    }

    .career-step-item {
        flex: 0 0 calc(50% - 20px);
    }
}

@media screen and (max-width: 500px) {
    .career-process-section {
        padding: 70px 0 80px;
    }

    .career-process-title {
        font-size: 32px;
    }

    .career-step-item {
        flex: 0 0 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* ================================================================
   OPEN POSITIONS SECTION
   ================================================================ */
.career-jobs-section {
    background: #000000;
    padding: 120px 0 140px;
    position: relative;
    overflow: hidden;
}

/* Subtle top glow effect */
.career-jobs-section::after {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 68, 238, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.career-jobs-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.career-jobs-header {
    text-align: center;
    margin-bottom: 70px;
}

.career-jobs-title {
    font-size: 52px;
    font-weight: 300;
    color: #ffffff;
    margin: 0 0 20px;
    letter-spacing: -0.8px;
    line-height: 1.1;
}

.career-jobs-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: #a7adbe;
    font-weight: 300;
}

/* Jobs List */
.career-jobs-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Job Card */
.career-job-card {
    background: #060b1e;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.career-job-card:hover {
    background: #0a112d;
    border-color: rgba(0, 68, 238, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.career-job-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px;
}

.career-job-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #8892a4;
    font-size: 14px;
    font-weight: 300;
}

.meta-sep {
    opacity: 0.3;
}

.career-job-action {
    display: flex;
    align-items: center;
    gap: 24px;
}

.career-job-location {
    color: #8892a4;
    font-size: 14px;
    font-weight: 400;
}

.career-job-arrow {
    color: #8892a4;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.career-job-card:hover .career-job-arrow {
    opacity: 1;
    color: #0044ee;
    transform: translateX(4px);
}

/* ---- Responsive — Jobs ---- */
@media screen and (max-width: 768px) {
    .career-jobs-title {
        font-size: 42px;
    }

    .career-job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 24px;
    }

    .career-job-action {
        width: 100%;
        justify-content: space-between;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
}

@media screen and (max-width: 480px) {
    .career-jobs-title {
        font-size: 32px;
    }

    .career-job-meta {
        flex-wrap: wrap;
        gap: 8px;
    }

    .meta-sep {
        display: none;
    }
}

/* ================================================================
   SUBMIT CV SECTION
   ================================================================ */
.career-submit-section {
    background: #000000;
    padding: 130px 0 160px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Center top glow */
.career-submit-section::after {
    content: '';
    position: absolute;
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
    width: 650px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 68, 221, 0.18) 0%, rgba(0, 68, 221, 0.05) 40%, transparent 75%);
    pointer-events: none;
    z-index: 1;
}

.career-submit-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.career-submit-title {
    font-size: 52px;
    font-weight: 300;
    color: #ffffff;
    margin: 0 0 20px;
    letter-spacing: -0.8px;
    line-height: 1.1;
}

.career-submit-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: #a7adbe;
    font-weight: 300;
    margin-bottom: 84px;
}

.career-submit-btn {
    display: inline-block;
    background: #0044ee;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.career-submit-btn:hover {
    background: #0033cc;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 68, 238, 0.3);
    color: #ffffff;
    text-decoration: none;
}

/* Background side images */
.submit-bg-left,
.submit-bg-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 750px;
    /* Bigger size */
    pointer-events: none;
    z-index: 2;
    opacity: 0.6;
    filter: blur(10px);
    /* 50px blur effect */
}

.submit-bg-left {
    left: -375px;
    /* exactly half cut off */
}

.submit-bg-right {
    right: -375px;
    /* exactly half cut off */
}

.submit-bg-left img,
.submit-bg-right img {
    width: 100%;
    height: auto;
    display: block;
}

.submit-bg-right img {
    transform: scaleX(-1);
    /* mirror if needed */
}

/* ---- Responsive — Submit CV ---- */
@media screen and (max-width: 992px) {
    .career-submit-title {
        font-size: 42px;
    }

    .submit-bg-left,
    .submit-bg-right {
        width: 300px;
        opacity: 0.4;
    }
}

@media screen and (max-width: 768px) {
    .career-submit-section {
        padding: 100px 0 110px;
    }

    .career-submit-title {
        font-size: 36px;
    }

    .career-submit-subtitle br {
        display: none;
    }

    .submit-bg-left,
    .submit-bg-right {
        display: none;
        /* hide on small mobile to stay clean */
    }
}

@media screen and (max-width: 480px) {
    .career-submit-title {
        font-size: 30px;
    }

    .career-submit-subtitle {
        font-size: 15px;
    }

    .career-submit-btn {
        width: 100%;
        padding: 15px 20px;
    }
}