/* ===========================
   CAREER INTRO SECTION
=========================== */

.career-intro{
    width:90%;
    margin:70px auto;
    display:grid;
    grid-template-columns:1.3fr .8fr;
    gap:50px;
    align-items:center;
}

.career-left .section-tag{
    display:inline-block;
    color:var(--accent);
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:15px;
}

.career-left h2{
    font-size:40px;
    color:var(--accent);
    margin-bottom:20px;
    line-height:1.3;
}

.career-left p{
    line-height:1.9;
    color:var(--text-color);
    opacity:.9;
    margin-bottom:30px;
}

.career-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.career-feature{
    display:flex;
    align-items:center;
    gap:10px;
}

.career-feature i{
    color:var(--accent);
    font-size:18px;
}

.career-feature span{
    font-size:15px;
}

/* ===========================
   APPLY FORM
=========================== */

.career-form{
    background:var(--card-bg);
    border:1px solid var(--border-color);
    border-radius:18px;
    padding:35px;
    transition:.3s;
}

.career-form:hover{
    border-color:var(--accent);
    box-shadow:0 15px 35px rgba(0,0,0,.20);
}

.career-form h3{
    color:var(--accent);
    font-size:28px;
    margin-bottom:10px;
}

.career-form p{
    margin-bottom:25px;
    opacity:.8;
}

.career-form form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.career-form input,
.career-form select{
    width:100%;
    height:48px;
    border:1px solid var(--border-color);
    background:transparent;
    color:var(--text-color);
    padding:0 15px;
    border-radius:8px;
    outline:none;
}

.career-form input[type="file"]{
    padding:10px;
    height:auto;
}

.career-form input:focus{
    border-color:var(--accent);
}

.career-form button{
    height:50px;
    background:var(--accent);
    color:var(--bg-color);
    border:none;
    border-radius:8px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.career-form button:hover{
    background:var(--hover);
}

/* ===========================
   COMMON SECTION TAG
=========================== */

.section-tag{
    display:inline-block;
    color:var(--accent);
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:15px;
}

/* ===========================
   WHY JOIN US
=========================== */

.why-career{
    width:90%;
    margin:70px auto;
}

.section-header{
    text-align:center;
    max-width:750px;
    margin:0 auto 50px;
}

.section-header h2{
    font-size:36px;
    color:var(--accent);
    margin-bottom:20px;
}

.section-header p{
    line-height:1.8;
    color:var(--text-color);
    opacity:.9;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.benefit-card{
    background:var(--card-bg);
    border:1px solid var(--border-color);
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    transition:.3s;
}

.benefit-card:hover{
    border-color:var(--accent);
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.20);
}

.benefit-card i{
    width:70px;
    height:70px;
    line-height:70px;
    background:var(--accent);
    color:var(--bg-color);
    border-radius:50%;
    font-size:28px;
    margin-bottom:20px;
}

.benefit-card h3{
    color:var(--accent);
    margin-bottom:15px;
    font-size:22px;
}

.benefit-card p{
    line-height:1.8;
}

/* ===========================
   JOB OPENINGS
=========================== */

.job-openings{
    width:90%;
    margin:70px auto;
}

.job-card{
    background:var(--card-bg);
    border:1px solid var(--border-color);
    border-radius:18px;
    padding:30px;
    margin-bottom:25px;
    transition:.3s;
}

.job-card:hover{
    border-color:var(--accent);
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.18);
}

.job-card h3{
    color:var(--accent);
    margin-bottom:15px;
}

.job-card p{
    margin-bottom:10px;
}

.job-card .btn{
    display:inline-block;
    margin-top:15px;
    background:var(--accent);
    color:var(--bg-color);
    padding:12px 28px;
    border-radius:8px;
    text-decoration:none;
    transition:.3s;
}

.job-card .btn:hover{
    background:var(--hover);
}
/*=====================================
        HIRING PROCESS
======================================*/

.hiring-process{
    width:90%;
    margin:90px auto;
}

.timeline{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    position:relative;
}

.timeline::before{
    content:"";
    position:absolute;
    top:40px;
    left:12%;
    width:76%;
    height:3px;
    background:var(--border-color);
    z-index:0;
}

.timeline-item{
    position:relative;
    text-align:center;
    z-index:1;
}

.timeline-item .circle{
    width:80px;
    height:80px;
    line-height:80px;
    margin:auto;
    border-radius:50%;
    background:var(--accent);
    color:var(--bg-color);
    font-size:30px;
    font-weight:700;
    margin-bottom:20px;
    transition:.35s;
}

.timeline-item:hover .circle{
    transform:scale(1.1);
    box-shadow:0 12px 25px rgba(0,0,0,.2);
}

.timeline-item h3{
    color:var(--accent);
    margin-bottom:12px;
}

.timeline-item p{
    line-height:1.8;
    color:var(--text-color);
}
/* ===========================
   RESPONSIVE
=========================== */

@media (max-width:991px){

    .career-intro{
        grid-template-columns:1fr;
    }

    .career-features{
        grid-template-columns:repeat(2,1fr);
    }

    .benefits-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .timeline{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .timeline::before{
        display:none;
    }

}

@media (max-width:768px){

    .career-intro{
        width:92%;
        margin:50px auto;
    }

    .career-left{
        text-align:center;
    }

    .career-left h2{
        font-size:30px;
    }

    .career-features{
        grid-template-columns:1fr;
    }

    .career-feature{
        justify-content:center;
    }

    .career-form{
        padding:25px;
    }

    .career-form h3{
        font-size:24px;
    }

    .why-career,
    .job-openings,
    .hiring-process{
        width:92%;
        margin:50px auto;
    }

    .benefits-grid{
        grid-template-columns:1fr;
    }

    .benefit-card{
        padding:30px 20px;
    }

    .section-header h2{
        font-size:28px;
    }

    .timeline{
        grid-template-columns:1fr;
        gap:30px;
    }

    .timeline::before{
        display:none;
    }

    .timeline-item{
        max-width:350px;
        margin:auto;
    }

    .timeline-item .circle{
        width:65px;
        height:65px;
        line-height:65px;
        font-size:24px;
    }

    .timeline-item h3{
        font-size:20px;
    }

    .timeline-item p{
        font-size:15px;
    }

}