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

html,body{
  width:100%;
  overflow-x:hidden;
}

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:#0b1b2c;
  color:#fff;
}



/* HERO */
.hero{
  height:78vh;
  min-height:560px;
  background:url('../images/agricultural.jpeg') center/cover no-repeat;
  display:flex;
  align-items:center;
  position:relative;
  padding-top:74px;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(11,27,44,.88) 0%, rgba(11,27,44,.65) 45%, rgba(11,27,44,.45) 100%),
    rgba(67,125,167,.20);
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:1100px;
  width:100%;
  margin:auto;
  padding:20px;
}

.small-title{
  letter-spacing:2px;
  color:#8ec1eb;
  font-size:14px;
  margin-bottom:12px;
}

.hero-content h1{
  font-size:clamp(42px, 6vw, 72px);
  line-height:1.05;
  margin-bottom:20px;
}

.hero-content p{
  max-width:680px;
  line-height:1.8;
  color:rgba(255,255,255,.86);
  font-size:17px;
  margin-bottom:24px;
}

/* COMMON */
.container{
  max-width:1200px;
  margin:auto;
  padding:90px 20px;
}

.section-head{
  margin-bottom:34px;
}

.mini-title{
  color:#8ec1eb;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:13px;
  margin-bottom:10px;
}

.section-head h2{
  font-size:clamp(28px, 4vw, 48px);
  line-height:1.2;
  max-width:760px;
}

/* BUTTON */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:160px;
  height:46px;
  padding:0 20px;
  border-radius:999px;
  text-decoration:none;
  color:#fff;
  font-weight:700;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.20);
  backdrop-filter:blur(8px);
  transition:.3s ease;
}

.btn:hover{
  background:rgba(255,255,255,.16);
}

.small-btn{
  min-width:130px;
  height:42px;
}

.secondary-btn{
  min-width:170px;
}

/* INTRO */
.career-intro{
  background:linear-gradient(180deg, #0b1b2c 0%, #0d2237 100%);
}

.intro-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:24px;
}

.intro-card{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  padding:30px;
  box-shadow:0 15px 40px rgba(0,0,0,.18);
}

.intro-card h3{
  font-size:24px;
  margin-bottom:16px;
}

.intro-card p{
  color:rgba(255,255,255,.82);
  line-height:1.85;
  margin-bottom:14px;
}

.intro-card ul{
  padding-left:18px;
}

.intro-card li{
  color:rgba(255,255,255,.82);
  line-height:1.8;
  margin-bottom:10px;
}

/* BENEFITS */
.benefits-section{
  background:#0d2237;
  padding-top:10px;
}

.benefits-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.benefit-box{
  text-align:center;
  padding:34px 24px;
  border-radius:24px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
}

.benefit-box i{
  font-size:30px;
  color:#8ec1eb;
  margin-bottom:14px;
}

.benefit-box h3{
  font-size:22px;
  margin-bottom:10px;
}

.benefit-box p{
  color:rgba(255,255,255,.82);
  line-height:1.7;
}

/* POSITIONS */
.positions-section{
  background:#0d2237;
  padding-top:10px;
}

.positions-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.position-card{
  padding:30px 26px;
  border-radius:24px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 15px 40px rgba(0,0,0,.18);
  transition:transform .3s ease, box-shadow .3s ease;
}

.position-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 45px rgba(0,0,0,.25);
}

.position-top{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.position-tag,
.position-location{
  font-size:12px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:#9fd1f2;
  letter-spacing:.8px;
  text-transform:uppercase;
}

.position-card h3{
  font-size:24px;
  margin-bottom:14px;
}

.position-card p{
  color:rgba(255,255,255,.82);
  line-height:1.8;
  margin-bottom:22px;
}

/* PROCESS */
.process-section{
  background:#0d2237;
  padding-top:10px;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.process-box{
  padding:32px 26px;
  border-radius:24px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
}

.process-number{
  font-size:34px;
  font-weight:800;
  color:#8ec1eb;
  margin-bottom:14px;
}

.process-box h3{
  font-size:22px;
  margin-bottom:12px;
}

.process-box p{
  color:rgba(255,255,255,.82);
  line-height:1.8;
}

/* CONTACT */
.contact-section{
  background:#0d2237;
  padding-bottom:90px;
}

.contact-box{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  padding:34px;
  border-radius:28px;
  background:
    linear-gradient(135deg, rgba(67,125,167,.22) 0%, rgba(115,179,223,.12) 100%);
  border:1px solid rgba(255,255,255,.08);
}

.contact-box h2{
  font-size:clamp(28px, 4vw, 42px);
  margin-bottom:10px;
}

.contact-box p{
  color:rgba(255,255,255,.82);
  line-height:1.8;
}

/* RESPONSIVE */
@media(max-width:1100px){
  .nav{
    display:none;
  }

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

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

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

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

  .contact-box{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media(max-width:768px){
  .topbar{
    padding:0 16px;
    gap:14px;
  }

  .right{
    gap:10px;
  }

  .phone{
    font-size:13px;
  }

  .hero{
    min-height:480px;
  }

  .hero-content h1{
    font-size:40px;
  }

  .hero-content p{
    font-size:16px;
  }

  .container{
    padding:70px 16px;
  }
}


/* APPLY FORM */

.apply-section{
background:#0d2237;
padding:40px 0 100px;
}

.career-form{
margin-top:30px;
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
padding:40px;
border-radius:24px;
}

.form-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

.form-group{
display:flex;
flex-direction:column;
gap:8px;
}

.form-group.full{
grid-column:1 / -1;
}

.form-group label{
font-size:14px;
color:#8ec1eb;
}

.form-group input,
.form-group textarea{
background:rgba(255,255,255,.06);
border:1px solid rgba(255,255,255,.1);
border-radius:10px;
padding:12px;
color:#fff;
font-size:14px;
outline:none;
}

.form-group textarea{
min-height:120px;
resize:none;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
color:rgba(255,255,255,.5);
}

.submit-btn{
margin-top:20px;
min-width:200px;
}

/* MOBILE */

@media(max-width:768px){

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

.career-form{
padding:25px;
}

}