/* HERO */

.hero {
  height: 70vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("/img/Nigerian\ central\ bank\ adds\ NFC\ upgrade\ to\ eNaira\ for\ contactless\ payments.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 18px;
}

.hero h1 {
  font-size: 45px;
  margin-bottom: 20px;
}

.hero p {
  max-width: 800px;
  margin: auto;
  font-size: 18px;
}

.hero button {
  margin-top: 15px;
  padding: 14px 30px;
  border: none;
  background: #00a651;
  color: white;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.hero button:hover {
  background: #008f45;
}

/* GENERAL */

.allcareer section{
  padding: 40px 5%;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 23px;
  color: #b7e903;
}

.section-title p {
  color: #666;
  margin-top: 10px;
}

/* WHY WORK */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  color: #b7e903;
  margin-bottom: 10px;
}

/* IMAGE SECTION */

.image-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.image-section img {
  width: 100%;
  border-radius: 10px;
}

/* BENEFITS */

.benefits {
  background: #043d04;
  color: white;
}

.benefits .card {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

/* JOB LIST */

.jobs {
  max-width: 800px;
  margin: auto;
}

.job {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid #ddd;
}

.job button {
  padding: 10px 14px;
  background: #00a651;
  border: none;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}

.job button:hover {
  background: #008f45;
}

/* DISCLAIMER */

.disclaimer {
  background: #fff8e1;
  border-left: 5px solid #ff9800;
  padding: 25px;
  border-radius: 6px;
}

/* FOOTER NOTE */

.closing {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #002147;
}

/* MOBILE */

@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .image-section {
    grid-template-columns: 1fr;
  }
}
