.career-hero{
    padding:140px 8%;
    text-align:center;
    background:
    linear-gradient(rgba(12, 67, 88, 0.85),rgba(85, 131, 153, 0.85)),
    url("../assets/carrerImage.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    height:auto;
}
.career-hero h1{
    color:#0f0e0e;
    font-size:3.5rem;
    margin-bottom:20px;
}
.career-hero p{
    color:#fff;
    max-width:850px;
    margin:auto;
    line-height:1.8;
}
.career-btn{
    display:inline-block;
    margin-top:30px;
    padding:14px 35px;
    background:#0026ff;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:bold;
}
.career-btn:hover{
    background:#05b30d;
}
.career-about,
.benefits-section,
.apply-section{
    padding:60px 8%;
}
.job-section{
    padding:50px;
    width:100%;
    height:auto;

}
.career-title{
    text-align:center;
    margin-bottom:30px;
}
.career-title h2{
    color: black;
    font-size:38px;
    margin-bottom:15px;
}
.career-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}
.career-card h3{
    color: rgb(169, 169, 185);
    margin-bottom:15px;
}
.career-card p{
    line-height:1.8;
    color:#ccc;
}
.career-card{
    background:#1d2031;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}
.job-card{
    background:#fff;
    padding:25px;
    margin-bottom:20px;
    border-left:5px solid #ff6600;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}
.job-card h3{
    color:#01070a;
}
.job-card span{
    color:#ff6600;
    font-weight:600;
}
.benefits-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    height:auto;
}
.benefit-box{
    background:#025d86;
    color:#fff;
    padding:25px;
    text-align:center;
    border-radius:10px;
}
.apply-container{
    max-width:800px;
    margin:auto;
}
.job-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#fff;
    padding:25px;
    margin-bottom:20px;
    border-left:5px solid #ff6600;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}
.apply-btn{
    background:#0d61a5;
    color:#fff;
    border:none;
    padding:12px 25px;
    border-radius:8px;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}
.apply-btn:hover{
    background:#05b30d;
}

/* Popup */
.popup-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.7);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}
.popup-form{
    background:#fff;
    width:90%;
    max-width:550px;
    padding:30px;
    border-radius:15px;
    position:relative;
}
.popup-form h2{
    color:#025d86;
    margin-bottom:20px;
}
.popup-form form{
    display:flex;
    flex-direction:column;
    gap:15px;
}
.popup-form input,
.popup-form textarea{
    padding:12px;
    border:1px solid #ddd;
    border-radius:8px;
}
.popup-form button{
    background:#ff6600;
    color:#fff;
    border:none;
    padding:12px;
    border-radius:8px;
    cursor:pointer;
}
.close-btn{
    position:absolute;
    top:10px;
    right:15px;

    font-size:30px;
    cursor:pointer;
}
@media(max-width:768px){
    .job-card{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }
    .apply-btn{
        width:100%;
    }

}
.career-form input,
.career-form textarea{
    padding:15px;
    border:1px solid #ddd;
    border-radius:8px;
}

.career-form button{
    background:#ff6600;
    color:#fff;
    border:none;
    padding:15px;
    border-radius:8px;
    cursor:pointer;
}
@media(max-width:992px){
    .career-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .benefits-grid{
        grid-template-columns:repeat(2,1fr);
    }

}
@media(max-width:768px){
    .career-grid,
    .benefits-grid{
        grid-template-columns:1fr;
    }
    .career-hero h1{
        font-size:2.5rem;
    }
    .career-about,
    .job-section,
    .benefits-section,
    .apply-section{
        padding:60px 20px;
    }

}