.jobs-section {
  padding: 120px 0;
  background: linear-gradient( 180deg, #f8fafc 0%, #ffffff 100% );
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-badge {
  display: inline-block;
  background: rgba(24,77,59,0.08);
  color: #184d3b;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
}

.section-title {
  font-size: 56px;
  font-weight: 800;
  color: #111827;
  margin: 20px 0 15px;
  letter-spacing: -1px;
}

.section-subtitle {
  max-width: 720px;
  margin: 0 auto;
  color: #64748b;
  font-size: 18px;
  line-height: 1.8;
}

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

.job-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 35px;
  border: 1px solid #edf2f7;
  position: relative;
  overflow: hidden;
  transition: all .35s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,.03), 0 1px 3px rgba(0,0,0,.02);
}

.job-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #184d3b;
  transform: scaleX(0);
  transition: .4s ease;
}

.job-card:hover::before {
  transform: scaleX(1);
}

.job-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,.08), 0 10px 25px rgba(0,0,0,.05);
}

.job-type {
  display: inline-block;
  background: #e8f5ee;
  color: #184d3b;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.job-card h4 {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 18px;
  line-height: 1.4;
}

.job-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #64748b;
  margin-bottom: 20px;
  font-size: 15px;
}

.job-card p {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 30px;
}

.apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #184d3b;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: .3s ease;
}

.apply-btn:hover {
  background: #5c0a0a !important;
  color: #ffffff;
}

.jobs-footer {
  text-align: center;
  margin-top: 70px;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  border-radius: 50px;
  background: #184d3b;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  transition: .3s ease;
}

.view-all-btn:hover {
  background: #0f3528;
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .section-title {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .jobs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .job-card {
    padding: 30px;
  }
}

