/* =========================================
   GLOBAL
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Inter,sans-serif;
    background:#f8faf8;
    color:#111827;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{
    width:100%;
    max-width:1240px;
    margin:auto;
    padding:0 24px;
}

section{
    padding:80px 0;
}

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

.career-hero{
    background:#ffffff;
    padding:90px 0;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;
}

.hero-tag{
    display:inline-block;
    font-size:13px;
    font-weight:700;
    color:#16a34a;
    letter-spacing:.08em;
    margin-bottom:20px;
}

.hero-left h1{
    font-size:64px;
    line-height:1.08;
    font-weight:800;
    color:#111827;
    margin-bottom:24px;
}

.hero-left h1 span{
    color:#16a34a;
}

.hero-left p{
    max-width:560px;
    font-size:19px;
    color:#5b6574;
    line-height:1.8;
    margin-bottom:45px;
}

/* =========================================
   HERO FEATURES
========================================= */

.hero-features{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
}

.feature{
    display:flex;
    align-items:flex-start;
    gap:14px;
    flex:1;
    min-width:170px;
}

.feature .icon{
    width:52px;
    height:52px;
    border-radius:14px;
    background:#edf9f1;
    color:#16a34a;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:22px;
}

.feature h4{
    font-size:18px;
    font-weight:700;
    margin-bottom:6px;
}

.feature p{
    margin:0;
    font-size:14px;
    color:#6b7280;
    line-height:1.7;
}

.hero-right{
    display:flex;
    justify-content:flex-end;
}

.hero-right img{
    width:100%;
    max-width:620px;
    border-radius:26px;
    object-fit:cover;

    box-shadow:
    0 25px 70px rgba(0,0,0,.08);
}

/* =========================================
   WHY WORK HERE
========================================= */

.why-us{
    padding-top:10px;
}

.why-us h2{
    text-align:center;
    font-size:42px;
    margin-bottom:55px;
    font-weight:800;
}

.why-grid{

    display:grid;

    grid-template-columns:
    repeat(6,1fr);

    gap:24px;
}

.why-card{

    background:#ffffff;

    border-radius:18px;

    padding:35px 22px;

    text-align:center;

    border:1px solid #edf0ef;

    transition:.35s;
}

.why-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 18px 45px rgba(0,0,0,.08);

}

.why-card i{

    width:72px;
    height:72px;

    border-radius:50%;

    background:#edf9f1;

    color:#16a34a;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:28px;

    margin:0 auto 22px;
}

.why-card h4{

    font-size:19px;
    margin-bottom:12px;
    font-weight:700;

}

.why-card p{

    font-size:15px;
    color:#6b7280;
    line-height:1.8;

}

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

@media(max-width:1100px){

.hero-grid{

grid-template-columns:1fr;

text-align:center;

}

.hero-left p{

margin:auto auto 40px;

}

.hero-features{

justify-content:center;

}

.hero-right{

justify-content:center;

margin-top:40px;

}

.why-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:768px){

section{

padding:60px 0;

}

.hero-left h1{

font-size:42px;

}

.hero-left p{

font-size:17px;

}

.hero-features{

flex-direction:column;

}

.feature{

min-width:100%;

}

.why-us h2{

font-size:32px;

}

.why-grid{

grid-template-columns:1fr;

gap:20px;

}

.hero-right img{

max-width:100%;

}

}

@media(max-width:480px){

.hero-left h1{

font-size:34px;

line-height:1.15;

}

.hero-left p{

font-size:16px;

}

.hero-tag{

font-size:12px;

}

.feature .icon{

width:48px;
height:48px;

font-size:20px;

}

.why-card{

padding:28px 20px;

}

.why-card i{

width:60px;
height:60px;

font-size:24px;

}

}
/*=========================================
    OPEN POSITIONS
=========================================*/

.careers{
    padding:80px 0;
}

.career-layout{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:35px;
    align-items:start;
}

.jobs h2{
    font-size:38px;
    font-weight:800;
    margin-bottom:30px;
    color:#111827;
}

/*=========================================
    JOB CARD
=========================================*/

.job-card{
    background:#fff;
    border:1px solid #e8ece9;
    border-radius:16px;
    padding:24px 28px;
    margin-bottom:18px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    transition:.3s ease;
}

.job-card:hover{
    border-color:#16a34a;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transform:translateY(-3px);
}

.job-card h3{
    font-size:21px;
    font-weight:700;
    margin-bottom:12px;
    color:#111827;
}

.job-card span{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-right:18px;
    color:#6b7280;
    font-size:15px;
}

.job-card span i{
    color:#16a34a;
}

.job-card a{
    min-width:170px;
    text-align:center;

    padding:13px 24px;

    border:1px solid #16a34a;
    color:#16a34a;

    border-radius:12px;

    font-weight:700;

    transition:.3s;
}

.job-card a:hover{
    background:#16a34a;
    color:#fff;
}

/*=========================================
    RESUME BOX
=========================================*/

.resume-box{
    margin-top:28px;
    padding:22px 28px;

    border:1px dashed #cfd8d3;

    border-radius:16px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    background:#f8fcf9;
}

.resume-box div{
    display:flex;
    align-items:center;
    gap:12px;

    font-size:17px;
    font-weight:600;
}

.resume-box i{
    color:#16a34a;
    font-size:20px;
}

.resume-box a{
    color:#16a34a;
    font-weight:700;
}

.resume-box a:hover{
    text-decoration:underline;
}

/*=========================================
    SIDEBAR
=========================================*/

.career-sidebar{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.sidebar-card{
    background:#fff;

    border-radius:18px;

    border:1px solid #e9ecea;

    padding:26px;

    box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.sidebar-card h3{
    font-size:24px;
    margin-bottom:16px;
    color:#111827;
}

.sidebar-card p{
    color:#6b7280;
    line-height:1.8;
    margin-bottom:18px;
}

.sidebar-card img{
    width:100%;
    border-radius:14px;
}

/*=========================================
    CULTURE LIST
=========================================*/

.sidebar-card ul{
    list-style:none;
}

.sidebar-card li{
    padding:10px 0;
    border-bottom:1px solid #eef2ef;

    color:#4b5563;
    font-size:15px;
}

.sidebar-card li:last-child{
    border-bottom:none;
}

/*=========================================
    HIRING STEPS
=========================================*/

.steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
    margin-top:20px;
}

.steps div{
    text-align:center;
}

.steps i{

    width:60px;
    height:60px;

    border-radius:50%;

    background:#edf9f1;

    color:#16a34a;

    display:flex;
    justify-content:center;
    align-items:center;

    margin:auto auto 12px;

    font-size:24px;
}

.steps span{
    display:block;
    font-size:14px;
    font-weight:600;
}

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

@media(max-width:1100px){

    .career-layout{
        grid-template-columns:1fr;
    }

    .career-sidebar{
        margin-top:40px;
    }

}

@media(max-width:768px){

    .jobs h2{
        font-size:30px;
    }

    .job-card{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }

    .job-card a{
        width:100%;
    }

    .resume-box{
        flex-direction:column;
        gap:20px;
        text-align:center;
    }

    .steps{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:480px){

    .job-card{
        padding:20px;
    }

    .job-card h3{
        font-size:18px;
    }

    .job-card span{
        display:block;
        margin-bottom:8px;
    }

    .steps{
        grid-template-columns:1fr;
    }

}
/* ===========================
   MODAL OVERLAY
=========================== */
.gs-modal-overlay{
    position:fixed;
    inset:0;
    background:rgba(13,40,30,.55);
    backdrop-filter:blur(2px);
    display:none;
    justify-content:center;
    align-items:flex-start;
    overflow-y:auto;
    padding:40px 20px;
    z-index:9999;
}

.gs-modal-overlay.is-open{
    display:flex;
}


/* ===========================
   MODAL
=========================== */

.gs-modal{
    width:100%;
    max-width:620px;
    background:#fff;
    border-radius:18px;
    box-shadow:0 30px 80px rgba(0,0,0,.18);
    padding:28px;
    position:relative;
    animation:popup .25s ease;
}

@keyframes popup{
    from{
        transform:translateY(20px);
        opacity:0;
    }
    to{
        transform:translateY(0);
        opacity:1;
    }
}


/* ===========================
   CLOSE BUTTON
=========================== */

.gs-modal-close{
    position:absolute;
    right:18px;
    top:18px;
    width:34px;
    height:34px;
    border:none;
    border-radius:50%;
    background:#eef8f2;
    color:#0b7c45;
    font-size:15px;
    cursor:pointer;
    transition:.3s;
    z-index:99999;
      pointer-events:auto;
    cursor:pointer;
}

.gs-modal-close:hover{
    background:#0b7c45;
    color:#fff;
}


/* ===========================
   TITLE
=========================== */

.gs-modal h2{
    font-size:20px !important;
    font-weight:700 !important;
    margin-bottom:8px !important;
    color:#222 !important;
}

.gs-job-meta{
    display:flex;
    gap:18px;
    font-size:14px;
    color:#666;
    margin-bottom:18px;
}

.gs-job-meta i{
    color:#0b7c45;
    margin-right:4px;
}


/* ===========================
   DESCRIPTION
=========================== */

.gs-modal-desc{
    background:#edf8f1;
    border-radius:10px;
    padding:14px 16px;
    font-size:13px !important;
    line-height:1.6;
    color:#444;
    margin-bottom:22px  !important;
}


/* ===========================
   SUBTITLE
=========================== */

.gs-modal h4{
    font-size:17px;
    font-weight:700;
    margin-bottom:18px;
    color:#222;
}


/* ===========================
   FORM GRID
=========================== */

.gs-field-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.gs-field{
    margin-bottom:14px;
}

.gs-field label{
    display:block;
    margin-bottom:6px;
    font-size:13px;
    font-weight:600;
    color:#222;
}


/* ===========================
   INPUTS
=========================== */

.gs-field input,
.gs-field textarea{
    width:100%;
    border:1px solid #dfe6e2;
    border-radius:8px;
    padding:12px 14px;
    font-size:14px;
    font-family:inherit;
    transition:.3s;
    background:#fff;
}

.gs-field input{
    height:44px;
}

.gs-field textarea{
    height:100px;
    resize:none;
}

.gs-field input:focus,
.gs-field textarea:focus{
    outline:none;
    border-color:#0b7c45;
    box-shadow:0 0 0 3px rgba(16,124,69,.12);
}


/* ===========================
   FILE UPLOAD
=========================== */

.gs-file-input{
    border:1.5px dashed #cfd8d3;
    border-radius:8px;
    min-height:58px;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    font-size:14px;
    color:#666;
    cursor:pointer;
    transition:.3s;
}

.gs-file-input:hover{
    border-color:#0b7c45;
    background:#f8fcfa;
}

.gs-file-input.has-file{
    border-color:#0b7c45;
    color:#0b7c45;
    background:#edf8f1;
}

.gs-file-input input{
    position:absolute;
    inset:0;
    opacity:0;
    cursor:pointer;
}


/* ===========================
   BUTTON
=========================== */

.gs-submit-btn{
    width:100%;
    height:46px;
    border:none;
    border-radius:9px;
    background:#0b5137;
    color:#fff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
    margin-top:8px;
}

.gs-submit-btn:hover{
    background:#0a6a46;
}


/* ===========================
   SUCCESS / ERROR
=========================== */

.gs-form-msg{
    display:none;
    margin-top:15px;
    padding:12px;
    border-radius:8px;
    font-size:14px;
}

.gs-form-msg.is-success{
    display:block;
    background:#edf8f1;
    color:#0b7c45;
}

.gs-form-msg.is-error{
    display:block;
    background:#fdeceb;
    color:#d93025;
}


/* ===========================
   RESPONSIVE
=========================== */
/* ===========================
   Mobile Responsive
=========================== */
@media (max-width:768px){

    .gs-modal-overlay{
        padding:12px;
        align-items:flex-start;
        overflow-y:auto;
    }

    .gs-modal{
        width:100%;
        max-width:100%;
        max-height:95vh;
        margin-top:20px;
        padding:22px 18px 25px;
        border-radius:16px;
        overflow-y:auto;
    }

    .gs-modal-close{
        top:14px;
        right:14px;
        width:38px;
        height:38px;
        font-size:18px;
    }

    .gs-modal h2{
        font-size:30px;
        line-height:1.15;
        padding-right:55px;
        margin-bottom:15px;
    }

    .gs-job-meta{
        display:flex;
        flex-direction:column;
        gap:8px;
        font-size:15px;
        margin-bottom:18px;
    }

    .gs-modal-desc{
        padding:16px;
        font-size:15px;
        line-height:1.6;
        margin-bottom:25px;
    }

    .gs-modal h4{
        font-size:28px;
        margin-bottom:20px;
    }

    .gs-field-row{
        display:grid;
        grid-template-columns:1fr;
        gap:18px;
    }

    .gs-field{
        margin-bottom:18px;
    }

    .gs-field label{
        font-size:15px;
        margin-bottom:8px;
    }

    .gs-field input,
    .gs-field textarea{
        width:100%;
        font-size:16px;
        padding:14px 16px;
        border-radius:10px;
        box-sizing:border-box;
    }

    .gs-field textarea{
        min-height:140px;
    }

    .gs-file-input{
        padding:18px;
        font-size:15px;
    }

    .gs-submit-btn{
        padding:15px;
        font-size:17px;
        margin-top:12px;
    }

    .gs-form-msg{
        font-size:14px;
    }

}