/* =========================================
   CAREERS PAGE
========================================= */

:root {
    --career-primary: #6c2cff;
    --career-secondary: #e91e63;
    --career-dark: #151326;
    --career-text: #5f6070;
    --career-light: #f8f7ff;
    --career-white: #ffffff;
}


/* =========================================
   HERO
========================================= */

.career-hero {
    position: relative;
    min-height: 550px;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 25%, rgba(108, 44, 255, .16), transparent 30%),
        radial-gradient(circle at 10% 80%, rgba(233, 30, 99, .12), transparent 30%),
        #ffffff;
}

.career-hero .container {
    position: relative;
    z-index: 5;
}

.career-hero-content {
    max-width: 700px;
}

.career-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px;
    border-radius: 50px;
    background: rgba(245, 78, 12, 0.08);
    color:#c72d49;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.pulse-dot {
    width: 9px;
    height: 9px;
    background: #151326;
    border-radius: 50%;
    animation: pulseDot 1.6s infinite;
}

@keyframes pulseDot {

    0% {
        box-shadow: 0 0 0 0 rgba(33, 196, 91, .5);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(33, 196, 91, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(33, 196, 91, 0);
    }
}


.career-hero h1 {
    margin-top: 25px;
    margin-bottom: 25px;
    font-size: clamp(45px, 6vw, 78px);
    line-height: 1.05;
    font-weight: 800;
    color:#1f1343;
}

.career-hero h1 span {
    background: linear-gradient(90deg, #f74780, #f74780);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.career-hero-content > p {
    max-width: 650px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--career-text);
}


.career-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 35px;
}


.career-btn {
    padding: 14px 25px;
    color: #fff;
    background: linear-gradient(90deg, #f74780, #f74780);
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: all .3s ease;
}

.career-btn i {
    margin-left: 8px;
}

.career-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(108, 44, 255, .25);
}


.career-outline-btn {
    padding: 13px 25px;
    border: 1px solid #dcd9e9;
    color: var(--career-dark);
    border-radius: 8px;
    font-weight: 600;
    background: #fff;
    transition: all .3s ease;
}

.career-outline-btn:hover {
    color: var(--career-primary);
    border-color: var(--career-primary);
    transform: translateY(-3px);
}


.career-mini-stats {
    display: flex;
    gap: 45px;
    margin-top: 55px;
}

.career-mini-stats div {
    display: flex;
    flex-direction: column;
}

.career-mini-stats strong {
    font-size: 24px;
    font-weight: 800;
    color: var(--career-dark);
}

.career-mini-stats span {
    margin-top: 3px;
    font-size: 13px;
    color: #858594;
}


/* =========================================
   HERO ANIMATION
========================================= */

.career-animation {
    position: relative;
    height: 560px;
    width: 100%;
}


.career-center-card {
    position: absolute;
    width: 230px;
    height: 230px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 35px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 30px 80px rgba(35, 20, 80, .15);
    z-index: 5;
    animation: centerFloat 4s ease-in-out infinite;
}

@keyframes centerFloat {

    0%,100% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-15px);
    }
}


.career-icon {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: linear-gradient(
        135deg,
        var(--career-primary),
        var(--career-secondary)
    );
    color: #fff;
    font-size: 30px;
    margin-bottom: 20px;
}

.career-center-card h4 {
    margin: 0;
    font-size: 21px;
    font-weight: 700;
}

.career-center-card p {
    margin: 5px 0 0;
    color: #858594;
}


.orbit {
    position: absolute;
    border: 1px dashed rgba(108,44,255,.2);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.orbit-one {
    width: 300px;
    height: 300px;
    animation: rotateOrbit 15s linear infinite;
}

.orbit-two {
    width: 430px;
    height: 430px;
    animation: rotateOrbitReverse 20s linear infinite;
}

.orbit-three {
    width: 540px;
    height: 540px;
    animation: rotateOrbit 28s linear infinite;
}

@keyframes rotateOrbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rotateOrbitReverse {
    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}


.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(35,20,80,.12);
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}

.floating-card i {
    color: #c72d49;
}

.card-one {
    top: 90px;
    right: 10px;
    animation: floatingOne 4s ease-in-out infinite;
}

.card-two {
    left: 5px;
    top: 230px;
    animation: floatingTwo 5s ease-in-out infinite;
}

.card-three {
    right: 0;
    bottom: 100px;
    animation: floatingThree 4.5s ease-in-out infinite;
}

@keyframes floatingOne {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes floatingTwo {

    0%,100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(15px);
    }
}

@keyframes floatingThree {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(12px);
    }
}


.career-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: .35;
}

.shape-one {
    width: 100px;
    height: 100px;
    background: #b99aff;
    left: 5%;
    top: 20%;
    animation: shapeMove 8s infinite alternate;
}

.shape-two {
    width: 70px;
    height: 70px;
    background: #ff8ab2;
    right: 15%;
    top: 15%;
    animation: shapeMove 6s infinite alternate-reverse;
}

.shape-three {
    width: 130px;
    height: 130px;
    background: #d4c6ff;
    right: 40%;
    bottom: 5%;
    animation: shapeMove 10s infinite alternate;
}

@keyframes shapeMove {

    from {
        transform: translate(0,0) rotate(0deg);
    }

    to {
        transform: translate(40px,-30px) rotate(180deg);
    }
}


.hero-scroll {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #999;
    z-index: 5;
}

.hero-scroll i {
    animation: scrollArrow 1.5s infinite;
}

@keyframes scrollArrow {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(7px);
    }
}


/* =========================================
   COMMON SECTION
========================================= */

.career-section {
    padding: 110px 0;
}

.career-why {
    background: #f8f7ff;
}

.career-section-title {
    max-width: 750px;
    margin: auto;
}

.section-tag {
    display: inline-block;
    color: #c72d49;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.career-section-title h2 {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
    color: #1f1343;
    margin-bottom: 15px;
}

.career-section-title p {
    color: var(--career-text);
    line-height: 1.8;
}


/* =========================================
   WHY CARDS
========================================= */

.why-card {
    height: 100%;
    padding: 35px 28px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(25,15,60,.06);
    transition: all .35s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(25,15,60,.12);
}

.why-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108,44,255,.09);
    border-radius: 15px;
    color: #c72d49;
    font-size: 23px;
    margin-bottom: 22px;
    transition: all .3s ease;
}

.why-card:hover .why-icon {
    color: #fff;
    background: #1f1343;
    transform: rotate(-5deg);
}

.why-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--career-dark);
}

.why-card p {
    margin: 12px 0 0;
    color: var(--career-text);
    line-height: 1.7;
}


/* =========================================
   JOBS
========================================= */

.jobs-section {
    background: #fff;
}

.job-card {
    position: relative;
    height: 100%;
    padding: 35px;
    background: #fff;
    border: 1px solid #ebe9f4;
    border-radius: 18px;
    transition: all .35s ease;
}

.job-card:hover {
    transform: translateY(-8px);
    border-color: rgba(108,44,255,.3);
    box-shadow: 0 25px 60px rgba(30,15,70,.1);
}

.job-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-icon {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(108,44,255,.09);
    border-radius: 15px;
    color: #c72d49;
    font-size: 25px;
}

.job-type {
    padding: 7px 13px;
    border-radius: 30px;
    background: rgba(33,196,91,.1);
    color: #1f1343;
    font-size: 12px;
    font-weight: 700;
}

.job-type.internship {
    background: rgba(255,167,38,.12);
    color: #d17a00;
}

.job-card h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 25px;
    font-weight: 750;
    color: #1f1343;
}

.job-location {
    font-size: 13px;
    color: #858594;
}

.job-location i {
    margin-right: 5px;
    color: #1f1343;
}

.job-card > p:not(.job-location) {
    color: var(--career-text);
    line-height: 1.7;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0;
}

.job-skills span {
    padding: 6px 11px;
    background: #f5f3fa;
    border-radius: 6px;
    font-size: 12px;
    color: #626273;
}

.apply-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--career-primary);
    font-size: 14px;
    font-weight: 700;
    transition: all .3s ease;
}

.apply-link:hover {
    color: var(--career-secondary);
    gap: 14px;
}


/* =========================================
   CULTURE
========================================= */

.culture-section {
    background: #f8f7ff;
}

.culture-visual {
    position: relative;
    height: 480px;
}

.culture-circle {
    position: absolute;
    border-radius: 50%;
}

.circle-main {
    width: 330px;
    height: 330px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(
        135deg,
        rgba(108,44,255,.12),
        rgba(233,30,99,.12)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    animation: culturePulse 4s infinite ease-in-out;
}

@keyframes culturePulse {

    0%,100% {
        transform: translate(-50%,-50%) scale(1);
    }

    50% {
        transform: translate(-50%,-50%) scale(1.05);
    }
}

.culture-inner {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 20px 60px rgba(30,15,70,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.culture-inner i {
    font-size: 45px;
    color: #c72d49;
    margin-bottom: 12px;
}

.culture-inner strong {
    font-size: 22px;
    color: #1f1343;
}

.culture-inner small {
    color: #999;
}

.culture-bubble {
    position: absolute;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 15px 40px rgba(30,15,70,.12);
    color: #c72d49;
    font-size: 22px;
}

.bubble-one {
    top: 50px;
    left: 100px;
    animation: bubbleFloat 4s infinite;
}

.bubble-two {
    right: 70px;
    top: 100px;
    animation: bubbleFloat 5s infinite .5s;
}

.bubble-three {
    bottom: 55px;
    left: 80px;
    animation: bubbleFloat 4.5s infinite 1s;
}

@keyframes bubbleFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.culture-content h2 {
    margin: 10px 0 20px;
    font-size: 45px;
    line-height: 1.2;
    font-weight: 800;
    color: #1f1343;
}

.culture-content h2 span {
    color: #c72d49;
}

.culture-content > p {
    color: var(--career-text);
    line-height: 1.8;
}

.culture-list {
    margin-top: 30px;
}

.culture-list div {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 16px;
    color: #4f5060;
}

.culture-list i {
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(108,44,255,.1);
    color: #c72d49;
    font-size: 11px;
}


/* =========================================
   HIRING PROCESS
========================================= */

.hiring-section {
    background: #fff;
}

.hiring-process {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
}

.process-line {
    position: absolute;
    top: 38px;
    left: 12%;
    right: 12%;
    height: 1px;
    border-top: 2px dashed #dcd9e9;
}

.process-item {
    position: relative;
    z-index: 2;
    width: 22%;
    text-align: center;
}

.process-number {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #c72d49;
    color: #1f1343;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(108,44,255,.1);
}

.process-item h4 {
    margin-top: 25px;
    font-size: 19px;
    font-weight: 700;
    color: var(--career-dark);
}

.process-item p {
    margin-top: 8px;
    color: var(--career-text);
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================
   CTA
========================================= */

.career-cta {
    padding: 0 0 110px;
    background: #fff;
}

.cta-box {
    position: relative;
    overflow: hidden;
    padding: 60px;
    border-radius: 25px;
    color: #fff;
    background:
        linear-gradient(
            110deg,
            #5520db,
            #7b3cf4 50%,
            #c82f73
        );
    box-shadow: 0 25px 70px rgba(88,42,190,.2);
}

.cta-box span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    opacity: .8;
}

.cta-box h2 {
    margin: 8px 0 10px;
    font-size: 42px;
    font-weight: 800;
}

.cta-box p {
    margin: 0;
    max-width: 600px;
    line-height: 1.7;
    opacity: .9;
}

.cta-button {
    position: relative;
    z-index: 2;
    padding: 14px 23px;
    background: #fff;
    color: var(--career-primary);
    border-radius: 8px;
    font-weight: 700;
    transition: all .3s ease;
}

.cta-button:hover {
    color: var(--career-primary);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0,0,0,.15);
}

.cta-button i {
    margin-left: 8px;
}

.cta-shape {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    right: -120px;
    top: -180px;
    border: 60px solid rgba(255,255,255,.08);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .career-hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .career-hero-content {
        text-align: center;
        margin: auto;
    }

    .career-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .career-buttons {
        justify-content: center;
    }

    .career-mini-stats {
        justify-content: center;
    }

    .career-animation {
        margin-top: 60px;
        height: 500px;
    }

    .culture-content {
        margin-top: 50px;
    }

    .hiring-process {
        flex-wrap: wrap;
        gap: 45px;
    }

    .process-line {
        display: none;
    }

    .process-item {
        width: 45%;
    }

    .cta-box {
        padding: 45px;
    }

    .cta-button {
        margin-top: 25px;
    }
}


@media (max-width: 767px) {

    .career-hero {
        padding-top: 100px;
    }

    .career-hero h1 {
        font-size: 44px;
    }

    .career-hero-content > p {
        font-size: 16px;
    }

    .career-mini-stats {
        gap: 25px;
    }

    .career-animation {
        height: 420px;
    }

    .career-center-card {
        width: 190px;
        height: 190px;
    }

    .career-icon {
        width: 60px;
        height: 60px;
        font-size: 23px;
    }

    .orbit-one {
        width: 250px;
        height: 250px;
    }

    .orbit-two {
        width: 340px;
        height: 340px;
    }

    .orbit-three {
        width: 410px;
        height: 410px;
    }

    .floating-card {
        padding: 10px 12px;
        font-size: 11px;
    }

    .card-one {
        right: 0;
    }

    .card-two {
        left: 0;
    }

    .career-section {
        padding: 75px 0;
    }

    .career-section-title h2 {
        font-size: 36px;
    }

    .culture-visual {
        height: 380px;
    }

    .circle-main {
        width: 260px;
        height: 260px;
    }

    .culture-inner {
        width: 170px;
        height: 170px;
    }

    .bubble-one {
        left: 20px;
    }

    .bubble-two {
        right: 20px;
    }

    .bubble-three {
        left: 30px;
    }

    .culture-content h2 {
        font-size: 35px;
    }

    .process-item {
        width: 100%;
    }

    .cta-box {
        padding: 35px 25px;
        text-align: center;
    }

    .cta-box h2 {
        font-size: 32px;
    }

}


@media (max-width: 480px) {

    .career-buttons {
        flex-direction: column;
    }

    .career-btn,
    .career-outline-btn {
        width: 100%;
    }

    .career-mini-stats {
        gap: 15px;
    }

    .career-mini-stats strong {
        font-size: 20px;
    }

    .career-animation {
        height: 370px;
    }

    .orbit-three {
        width: 350px;
        height: 350px;
    }

    .floating-card {
        display: none;
    }

}