/* ==========================================
   JOBS HERO
========================================== */

.jobs-hero{

    position:relative;

    min-height:65vh;

    display:flex;

    align-items:center;

    background:url("../images/jobs/hero/jobs-hero.jpg")
               center center/cover no-repeat;

    overflow:hidden;

}

/* Overlay */

.jobs-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(7,45,20,.82) 0%,
        rgba(7,45,20,.62) 45%,
        rgba(0,0,0,.22) 100%
    );

}

/* Content */

.jobs-hero .container{

    position:relative;

    z-index:2;

    width:100%;

}

.jobs-hero-content{

    max-width:700px;

    color:#fff;

}

/* Section Tag */

.jobs-hero .section-tag{

    display:inline-block;

    margin-bottom:20px;

    color:#9EE37D;

    font-size:14px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

}

/* Heading */

.jobs-hero h1{

    font-family:var(--heading-font);

    font-size:64px;

    line-height:1.1;

    margin-bottom:25px;

    color:#fff;

}

/* Description */

.jobs-hero p{

    font-size:20px;

    line-height:1.8;

    max-width:650px;

    color:rgba(255,255,255,.90);

    margin-bottom:35px;

}

/* Breadcrumb */

.jobs-hero .breadcrumb{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:15px;

    color:rgba(255,255,255,.75);

}

.jobs-hero .breadcrumb a{

    color:#fff;

    transition:.3s;

}

.jobs-hero .breadcrumb a:hover{

    color:var(--primary-green);

}

.jobs-hero .breadcrumb span:last-child{

    color:#9EE37D;

}


/* ==========================================
   CURRENT OPPORTUNITIES
========================================== */

.job-opportunities{

    padding:120px 0;

    background:var(--white);

}

.jobs-heading{

    max-width:820px;

    margin:0 auto;

    text-align:center;

}

.jobs-heading .section-tag{

    display:inline-block;

    margin-bottom:18px;

    color:var(--primary-green);

    font-size:14px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

}

.jobs-heading h2{

    font-family:var(--heading-font);

    font-size:52px;

    line-height:1.2;

    color:var(--dark);

    margin:0 0 22px;

}

.jobs-heading > p{

    font-size:18px;

    line-height:1.9;

    color:var(--text);

    margin:0 auto;

}


/* ==========================================
   NO OPENINGS CARD
========================================== */

.no-openings{

    max-width:850px;

    margin:70px auto 0;

    padding:65px 50px;

    text-align:center;

    background:#f8faf8;

    border:1px solid rgba(46,125,50,.10);

    border-radius:24px;

    box-shadow:0 15px 45px rgba(0,0,0,.06);

}

.no-openings-icon{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(46,125,50,.10);

}

.no-openings-icon i{

    font-size:32px;

    color:var(--primary-green);

}

.opening-status{

    display:inline-block;

    margin-bottom:18px;

    padding:7px 16px;

    border-radius:30px;

    background:rgba(46,125,50,.10);

    color:var(--primary-green);

    font-size:12px;

    font-weight:700;

    letter-spacing:2px;

}

.no-openings h3{

    font-family:var(--heading-font);

    font-size:34px;

    line-height:1.3;

    color:var(--dark);

    margin-bottom:18px;

}

.no-openings > p{

    max-width:650px;

    margin:0 auto;

    font-size:17px;

    line-height:1.9;

    color:var(--text);

}

.opening-divider{

    width:65px;

    height:2px;

    margin:30px auto;

    background:var(--primary-green);

    opacity:.65;

}

.no-openings .opening-note{

    margin-bottom:22px;

    font-size:16px;

    font-weight:600;

    color:var(--dark);

}

.job-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:14px 25px;

    border-radius:8px;

    background:var(--primary-green);

    color:#fff;

    text-decoration:none;

    font-size:15px;

    font-weight:600;

    transition:.3s ease;

}

.job-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 30px rgba(0,0,0,.12);

}


/* ==========================================
   WHY SATYA
========================================== */

.jobs-values{

    padding:120px 0;

    background:#f8faf8;

}

.jobs-values-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:70px;

}

.jobs-value-card{

    padding:45px 35px;

    background:var(--white);

    border-radius:20px;

    border:1px solid rgba(0,0,0,.06);

    text-align:center;

    transition:all .35s ease;

}

.jobs-value-card:hover{

    transform:translateY(-7px);

    border-color:rgba(46,125,50,.20);

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

.jobs-value-icon{

    width:64px;

    height:64px;

    margin:0 auto 25px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:16px;

    background:rgba(46,125,50,.10);

}

.jobs-value-icon i{

    font-size:27px;

    color:var(--primary-green);

}

.jobs-value-card h3{

    font-family:var(--heading-font);

    font-size:27px;

    color:var(--dark);

    margin-bottom:15px;

}

.jobs-value-card p{

    font-size:16px;

    line-height:1.8;

    color:var(--text);

    margin:0;

}


/* ==========================================
   TABLET
========================================== */

@media(max-width:992px){

    .jobs-hero{

        min-height:60vh;

    }

    .jobs-hero h1{

        font-size:52px;

    }

    .jobs-values-grid{

        grid-template-columns:1fr;

        max-width:600px;

        margin-left:auto;

        margin-right:auto;

    }

}


/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

    .jobs-hero{

        min-height:50vh;

    }

    .jobs-hero-content{

        text-align:center;

        margin:auto;

    }

    .jobs-hero h1{

        font-size:38px;

    }

    .jobs-hero p{

        font-size:17px;

    }

    .jobs-hero .breadcrumb{

        justify-content:center;

    }

    .job-opportunities{

        padding:80px 0;

    }

    .jobs-heading h2{

        font-size:36px;

    }

    .jobs-heading > p{

        font-size:16px;

    }

    .no-openings{

        margin-top:50px;

        padding:45px 25px;

    }

    .no-openings h3{

        font-size:29px;

    }

    .no-openings > p{

        font-size:16px;

    }

    .jobs-values{

        padding:80px 0;

    }

    .jobs-values-grid{

        gap:25px;

        margin-top:50px;

    }

    .jobs-value-card{

        padding:35px 28px;

    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media(max-width:480px){

    .jobs-hero h1{

        font-size:32px;

    }

    .no-openings{

        padding:40px 20px;

        border-radius:18px;

    }

    .no-openings-icon{

        width:70px;

        height:70px;

    }

    .no-openings h3{

        font-size:26px;

    }

}