.career-main {
    background-color: var(--color-bg-light) !important;
}

.career-hero-section {
    padding: calc(var(--header-height) + 100px) 0 0 0;
    position: relative;
    overflow: visible;
}

.career-hero-title {
    font-size: 62px;
    background: linear-gradient(150deg, var(--color-text-dark) 45%, var(--color-primary-light) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0px 1px 4px rgba(0, 0, 0, 0.08));
    padding: 0 0 32px 0;
}

.career-hero-subtitle {
    font-size: 22px;
    color: var(--color-text-dark);
    margin: 0 0 12px;
}

.career-hero-desc {
    font-size: 18px;
    color: var(--color-text-dark);
    max-width: 660px;
    padding: 0 0 24px 0;
}

.career-hero-btn-wrapper {
    margin-top: 4px;
}

.career-hero-btn {
    background-color: var(--color-primary);
    border: none;
    border-radius: 14px;
    padding: 18px 14px 18px 24px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.career-hero-btn:hover {
    background-color: var(--color-primary-dark);
}

.career-btn-text {
    font-size: 17px;
    color: var(--color-text-white);
}

.career-btn-badge {
    width: 32px;
    height: 32px;
    border-radius: 50px;
    background-color: rgba(0, 0, 0, 0.20);
    font-size: 14px;
    color: var(--color-text-white);
    padding: 9px 10px;
}


.career-jobs-section {
    padding: 160px 0 40px 0;
}

.career-content-wrapper {
    gap: 40px;
}

.career-main-title {
    font-size: 50px;
    line-height: 76px;
    margin: 0;
    background: linear-gradient(150deg, var(--color-text-dark) 40%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 14px rgba(24, 23, 23, 0.08);
}

.career-main-subtitle {
    font-size: 22px;
    line-height: 38px;
    color: #1F1F1F;
    max-width: 762px;
    opacity: 0.8;
    letter-spacing: 0.02em;
}

.career-categories-section {
    padding: 0 0 80px 0;
    overflow: hidden;

}

/* CARD FLIP YAPISI */
.category-card {
    height: 300px;
    perspective: 1000px;
    border: none;
    background: none;
    padding: 0;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.7s ease;
}

.category-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 20px;
    padding: 40px 0px 30px 0px;
}

.card-front {
    background:
        linear-gradient(to bottom, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%) padding-box,
        linear-gradient(to bottom, rgba(30, 30, 30, 0.1) 0%, rgba(30, 30, 30, 0) 100%) border-box;
    border: 1px solid transparent;
    cursor: pointer;
}

.card-back {
    transform: rotateY(180deg);
    background:
        linear-gradient(160deg, var(--color-accent) 0%, var(--color-bg-dark) 100%, rgba(30, 30, 30, 0.20)) padding-box,
        linear-gradient(160deg, rgba(30, 30, 30, 0.05)) border-box;
    border: 5px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.card-back::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(ellipse at 50% 0%, rgba(88, 205, 140, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

/* CARD CONTENT */
.card-content {
    gap: 16px;
    max-width: 102px;
    position: relative;
    z-index: 1;
}

.category-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.category-title {
    font-size: 20px;
    line-height: 32px;
    color: var(--color-text-dark);
}

.card-back .category-title {
    color: var(--color-text-white);
}

.card-back .category-icon {
    filter: brightness(0) invert(1);
}

/* ARROW BTN */
.arrow-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(30, 30, 30, 0.1);
    background-color: transparent;
}

/* APPLY BTN */
.apply-btn {
    gap: 10px;
    max-width: 132px;
    height: 45px;
    border-radius: 100px;
    padding: 20px 18px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary) 48%, #a9fb83 100%);
    font-size: 13px;
    color: var(--color-text-white);
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.hiring-process-section {
    padding: 80px 0 120px 0;
    background-color: var(--color-bg-dark);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hiring-process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse 20% 90% at 50% -10%,
            rgba(117, 203, 145, 0.9) 0%,
            rgba(180, 255, 204, 0) 100%);
    filter: blur(200px);
    pointer-events: none;
    z-index: 0;
}

.hiring-process-section .container-xxl {
    position: relative;
    z-index: 1;
}

.hiring-process-title {
    font-size: 50px;
    padding: 0 0 40px 0;
    background: linear-gradient(150deg, var(--color-text-white) 40%, var(--color-primary-light) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 1px 4px rgba(0, 0, 0, 0.08));
}

.hiring-process-subtitle {
    font-size: 22px;
    line-height: 38px;
    color: var(--color-text-white);
    padding: 0 0 24px 0;
}



.hiring-steps-wrapper {
    justify-content: space-between;
    width: 100%;
}

.hiring-step {
    justify-content: flex-start;
    gap: 24px;
}

.hiring-step-icon {
    display: block;
}

.hiring-step-label {
    font-size: 18px;
    line-height: 31px;
    color: var(--color-text-white);
    white-space: nowrap;
}

.hiring-step-arrow-wrap {
    width: 45px;
    height: 45px;
    padding-top: 10px;
}

.hiring-step-arrow {
    display: block;
    filter: brightness(0) invert(5);
    opacity: 0.6;
}

@media (max-width: 991.98px) {
    .hiring-steps-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 32px;
    }

    .hiring-step {
        width: auto;
        align-items: center;
    }

    .hiring-step-arrow-wrap {
        display: none;
    }

    .hiring-step-label {
        font-size: 15px;
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .hiring-step {
        gap: 16px;
    }

    .hiring-step-label {
        font-size: 13px;
    }
}

.career-hero-section .container-xxl::after {
    content: '';
    display: block;
    width: 100%;
    height: 0;
    border-top: 1.2px solid transparent;
    border-image: radial-gradient(ellipse at center,
            rgba(30, 30, 30, 1) -25%,
            rgba(30, 30, 30, 0.1) 60%) 1;
    opacity: 25%;
    margin: 180px 0 0 0;
}



.career-avatar {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-text-white);
    box-shadow: 4px 30px 30px -10px rgba(21, 29, 51, 0.15);
    pointer-events: none;
    z-index: 1;
}

.career-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.av-men1 {
    width: 118px;
    height: 118px;
    bottom: -7%;
    left: 24%;
}

.av-men2 {
    width: 82px;
    height: 82px;
    top: 7%;
    right: 7%;
}

.av-men3 {
    width: 76px;
    height: 76px;
    top: 50%;
    right: 0;
    left: 13%;
}

.av-girl1 {
    width: 124px;
    height: 124px;
    bottom: 10%;
    right: 18%;
}

.av-girl2 {
    width: 116px;
    height: 116px;
    top: 17%;
    left: 2%;
}

.av-girl3 {
    width: 82px;
    height: 82px;
    bottom: -8%;
    right: 35%;
}

.av-girl4 {
    width: 60px;
    height: 60px;
    bottom: 8%;
    left: 5%;
}

.av-girl5 {
    width: 52px;
    height: 52px;
    top: 53%;
    right: 6%;
}

.av-girl6 {
    width: 48px;
    height: 48px;
    bottom: 2%;
    left: 40%;
}
