/* =========================================
CAREER DETAILS HERO
========================================= */

.career-details-hero{
    padding: 120px 0 100px;
    background:
    linear-gradient(
        180deg,
        #1A083D 0%,
        #5B35B1 100%
    );

    position: relative;
    overflow: hidden;
}

.career-content-box h2{
font-size: 25px;
line-height: 42px;
}

.career-content-box ul li , .career-content-box p{
font-size: 18px;
line-height: 30px;
color: #444 !important;
}
.career-details-hero::before{
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    top: -220px;
    right: -120px;
    filter: blur(40px);
}

.career-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 5px 15px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    margin-bottom: 25px;
}

.career-details-hero h1{
    font-family: 'Inter';
    font-weight: 800;
    font-size: 48px;
    line-height: 66px;
    color: #fff;
    max-width: 700px;
    margin-bottom: 25px;
}

.career-details-hero p{
    font-family: 'Inter';
    font-size: 18px;
    line-height: 32px;
    color: rgba(255,255,255,.75);
    max-width: 780px;
}

.career-meta{
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 40px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
}

.meta-item i{
    color: #FCA732;
}


/* =========================================
CAREER DETAILS
========================================= */

.career-details {
    padding: 60px 0;
    background: #F7F4FB;
}

.career-content-box{
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    margin-bottom: 30px;

    box-shadow: 0 10px 30px rgba(18,7,38,.06);

    transition: .4s ease;
}

.career-content-box:hover{
    transform: translateY(-5px);
}

.career-content-box h3{
    font-family: 'Inter';
    font-size: 28px;
    font-weight: 700;
    color: #181D27;
    margin-bottom: 22px;
}

.career-content-box p{
    font-family: 'Inter';
    font-size: 15px;
    line-height: 30px;
    color: #667085;
}

.career-list{
    padding: 0;
    margin: 0;
    list-style: none;
}

.career-list li{
    display: flex;
    align-items: flex-start;
    gap: 14px;

    margin-bottom: 18px;

    font-family: 'Inter';
    font-size: 15px;
    line-height: 28px;
    color: #344054;
}

.career-list li i{
    color: #7F56D9;
    margin-top: 6px;
}


/* BENEFITS */

.benefits-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.benefit-card{
    background: #F8F5FF;
    border: 1px solid #E9DFFF;

    border-radius: 18px;
    padding: 5px;

    display: flex;
    align-items: center;
    gap: 16px;

    transition: .4s ease;
}

.benefit-card:hover{
    transform: translateY(-6px);
    background: linear-gradient(135deg,#7F56D9,#9476D9);
}

.benefit-card:hover i,
.benefit-card:hover span{
    color: #fff;
}

.benefit-card i{
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(127,86,217,.12);

    color: #7F56D9;
    font-size: 20px;

    transition: .4s ease;
}

.benefit-card span{
    font-family: 'Inter';
    font-size: 16px;
    font-weight: 600;
    color: #181D27;
    transition: .4s ease;
}


/* =========================================
JOB INFO CARD
========================================= */

.job-info-card, .apply-form-box {
    background: #1b0937;
    border-radius: 24px;
    padding: 35px;
    margin-bottom: 30px;
    position: sticky;
    top: 120px;
}

.apply-form-box{
    top: auto;
}

.job-info-card h4,
.apply-form-box h4{
    font-family: 'Inter';
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.info-item{
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.info-item:last-child{
    border-bottom: none;
    margin-bottom: 0;
}

.info-item span{
    display: block;
    color: #A8A3B8;
    margin-bottom: 8px;
    font-size: 14px;
}

.info-item strong{
    color: #fff;
    font-size: 16px;
}


/* =========================================
FORM
========================================= */

.form-group{
    margin-bottom: 18px;
}

.form-group input,
.form-group textarea{
    width: 100%;
    border: 1px solid rgba(255,255,255,.08);

    background: rgba(255,255,255,.04);

    border-radius: 14px;

    padding: 14px 18px;

    color: #fff;

    outline: none;

    transition: .3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
    color: #9B95AD;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color: #7F56D9;
    background: rgba(255,255,255,.06);
}

.apply-btn{
    width: 100%;
    border: none;

    padding: 16px;

    border-radius: 50px;

    background: linear-gradient(
        135deg,
        #FCA732,
        #FFD499
    );

    color: #14072F;

    font-family: 'Inter';
    font-size: 16px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    transition: .4s ease;
}

.apply-btn:hover{
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(252,167,50,.25);
}


/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px){

    .career-details-hero{
        padding: 150px 0 80px;
    }

    .career-details-hero h1{
        font-size: 42px;
        line-height: 52px;
    }

    .career-meta{
        gap: 12px;
    }

    .meta-item{
        width: 100%;
    }

    .benefits-grid{
        grid-template-columns: 1fr;
    }

    .job-info-card,
    .apply-form-box{
        position: relative;
        top: 0;
    }

}

@media(max-width:767px){

    .career-details-hero h1{
        font-size: 34px;
        line-height: 44px;
    }

    .career-content-box,
    .job-info-card,
    .apply-form-box{
        padding: 24px;
    }

}