/* ================= HERO SECTION ================= */

.career-hero{
    padding:80px 0;
    background:#fff;
}

.career-container{
    width:90%;
    max-width:1000px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

.career-left{
    flex:1;
}

.hero-tag{

    display:inline-block;

    padding:8px 18px;

    background:#FFF7E9;

    color:#555;

    border-radius:30px;

    font-size:13px;

    margin-bottom:25px;
}

.hero-title{

    font-size:50px;

    font-weight:800;

    line-height:1.05;

    color:#22253E;

    margin-bottom:25px;
}

.hero-title .highlight{
    color:#F4B234;
}

.hero-description{

    color:#777;

    font-size:20px;

    line-height:1.8;

    max-width:600px;

    margin-bottom:40px;
}

.hero-buttons{

    display:flex;

    gap:20px;
}

.btn-primary{

    background:#ff4486;

    color:#fff;

    padding:16px 35px;

    border-radius:8px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.btn-primary:hover{

    background:#e33675;
}

.btn-secondary{

    border:2px solid #ff4486;

    color:#ff4486;

    padding:16px 35px;

    border-radius:8px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.btn-secondary:hover{

    background:#ff4486;

    color:#fff;
}

/* ================= RIGHT IMAGE ================= */

.career-right{

    flex:1;

    position:relative;
}

.career-right img{

    width:100%;

    border-radius:30px;

    display:block;

    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.floating-card{

    position:absolute;

    top:25px;

    right:25px;

    background:#fff;

    padding:20px;

    border-radius:15px;

    text-align:center;

    font-weight:600;

    color:#444;

    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){

    .career-container{

        flex-direction:column;

        text-align:center;
    }

    .hero-title{

        font-size:48px;
    }

    .hero-description{

        margin:auto auto 30px;
    }

    .hero-buttons{

        justify-content:center;
    }

}