*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
}

body{
background:#f7f9fc;
color:#222;
}

section{
padding:90px 8%;
}

h2{
text-align:center;
font-size:40px;
color:#08276d;
margin-bottom:60px;
}

h2::after{
content:"";
display:block;
width:80px;
height:4px;
background:#08a6df;
margin:15px auto;
border-radius:50px;
}

/* HERO */

.career-hero{

height:70vh;

background:url("../Images/career-banner.jpg") center/cover;

position:relative;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

color:#fff;

}

.hero-overlay{

position:absolute;

inset:0;

background:rgba(0,0,0,.55);

}

.hero-content{

position:relative;

z-index:2;

max-width:700px;

}

.hero-content h1{

font-size:60px;

margin-bottom:20px;

}

.hero-content span{

color:#08a6df;

}

.hero-content p{

font-size:20px;

margin-bottom:35px;

}

.btn{

display:inline-block;

padding:16px 35px;

background:#08a6df;

color:#fff;

border-radius:40px;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.btn:hover{

background:#08276d;

}

/* WHY */

.why-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.card{

background:#fff;

padding:35px;

border-radius:20px;

text-align:center;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:.3s;

}

.card:hover{

transform:translateY(-8px);

}

.icon{

font-size:45px;

margin-bottom:20px;

}

/* JOBS */

.jobs{

background:#eef5ff;

}

.job-card{

background:#fff;

padding:30px;

margin-bottom:25px;

border-left:6px solid #08a6df;

border-radius:15px;

box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.job-card h3{

color:#08276d;

margin-bottom:15px;

}

.job-card p{

margin:8px 0;

}

.job-card a{

display:inline-block;

margin-top:15px;

text-decoration:none;

background:#08276d;

color:#fff;

padding:12px 25px;

border-radius:30px;

}

/* BENEFITS */

.benefit-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:20px;

}

.benefit-grid div{

background:#fff;

padding:25px;

text-align:center;

border-radius:15px;

box-shadow:0 10px 20px rgba(0,0,0,.08);

}

/* APPLY */

.apply form{

max-width:800px;

margin:auto;

background:#fff;

padding:40px;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.apply input,
.apply textarea{

width:100%;

padding:15px;

margin-bottom:20px;

border:1px solid #ddd;

border-radius:10px;

font-size:16px;

}

.apply button{

width:100%;

padding:16px;

border:none;

background:#08276d;

color:#fff;

font-size:18px;

border-radius:10px;

cursor:pointer;

transition:.3s;

}

.apply button:hover{

background:#08a6df;

}

/* RESPONSIVE */

@media(max-width:992px){

.why-grid{

grid-template-columns:repeat(2,1fr);

}

.benefit-grid{

grid-template-columns:repeat(2,1fr);

}

.hero-content h1{

font-size:45px;

}

}

@media(max-width:768px){

section{

padding:70px 20px;

}

.hero-content h1{

font-size:35px;

}

.hero-content p{

font-size:16px;

}

.why-grid{

grid-template-columns:1fr;

}

.benefit-grid{

grid-template-columns:1fr;

}

h2{

font-size:30px;

}

}

@media(max-width:480px){

.hero-content h1{

font-size:30px;

line-height:40px;

}

.hero-content p{

font-size:15px;

}

.btn{

display:block;

width:100%;

text-align:center;

}

}