/* =====================================
   SCPM CAREERS PAGE CSS
===================================== */


.career-hero{

    min-height:360px;

    background:
    linear-gradient(
        135deg,
        rgba(225,96,15,.95),
        rgba(255,167,51,.85)
    ),
    url("../images/career-bg.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    color:white;

    position:relative;
    overflow:hidden;

}



.career-hero::after{

    content:"";

    position:absolute;

    width:300px;
    height:300px;

    background:rgba(255,255,255,.12);

    border-radius:50%;

    right:-100px;
    top:-80px;

}



.career-hero .container{

    position:relative;
    z-index:2;

}



.career-hero h1{

    font-size:52px;

    margin-bottom:15px;

    font-weight:700;

}



.career-hero p{

    font-size:21px;

}





/* ==============================
   CAREER SECTION
============================== */


.career-section{

    padding:90px 7%;

    background:#fff8f2;

}



.career-container{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    align-items:center;

}





/* LEFT CONTENT */


.career-content h2{

    font-size:38px;

    color:#8A3607;

    margin-bottom:20px;

}



.career-content p{

    color:#555;

    font-size:16px;

    line-height:1.8;

}



.career-content ul{

    list-style:none;

    padding:0;

    margin-top:30px;

}



.career-content ul li{

    background:white;

    padding:15px 20px;

    margin-bottom:15px;

    border-radius:12px;

    color:#333;

    box-shadow:
    0 8px 20px rgba(0,0,0,.06);

}





/* ==============================
   FORM
============================== */


.career-form{

    background:white;

    padding:40px;

    border-radius:25px;

    box-shadow:

    0 20px 45px rgba(0,0,0,.12);

}



.career-form h2{

    text-align:center;

    color:#E1600F;

    margin-bottom:30px;

    font-size:30px;

}




.career-form input,
.career-form select{

    width:100%;

    padding:15px 18px;

    margin-bottom:18px;

    border-radius:12px;

    border:1px solid #ddd;

    font-size:15px;

    outline:none;

    transition:.3s;

}



.career-form input:focus,
.career-form select:focus{

    border-color:#E1600F;

    box-shadow:
    0 0 0 3px rgba(225,96,15,.15);

}





.career-form button{

    width:100%;

    padding:15px;

    background:#E1600F;

    color:white;

    border:none;

    border-radius:30px;

    font-size:17px;

    cursor:pointer;

    transition:.3s;

}



.career-form button:hover{

    background:#8A3607;

    transform:translateY(-3px);

}





#msg{

    text-align:center;

    margin-top:15px;

    font-weight:600;

    color:#E1600F;

}





/* ==============================
   RESPONSIVE
============================== */


@media(max-width:900px){


.career-container{

    grid-template-columns:1fr;

}



.career-hero h1{

    font-size:38px;

}


.career-form{

    padding:25px;

}


}