.career-hero {
  height: 95vh;
  background: linear-gradient(rgba(28, 42, 64, 0.75), rgba(28, 42, 64, 0.75)),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?q=80")
      center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 20px;
}

.career-hero h1 {
  font-size: clamp(36px, 5vw, 70px);
  margin-bottom: 10px;
  font-weight: bold;
}

.career-hero p {
  font-size: 18px;
  max-width: 500px;
  margin: 0 auto 20px;
}

/* .btn-primary {
  background: var(--accent);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
} */

/* WHY WORK WITH US */
.why-work {
  padding: 80px 20px;
}

.why-work .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.work-grid {
  margin-top: 40px;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.work-card {
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* JOB LIST */
.job-section {
  padding: 80px 20px;
  background: var(--primary-light-3);
}

.job-section .container {
  max-width: 1200px;
  margin: auto;
}

.job-list {
  margin-top: 40px;
  display: grid;
  gap: 25px;
}

.job-card {
  background: var(--white);
  padding: 25px;
  border-left: 6px solid var(--accent);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.job-card h3 {
  margin: 0 0 5px;
}

.btn-secondary {
  background: var(--secondary);
  padding: 10px 20px;
  color: var(--white);
  border-radius: 6px;
  text-decoration: none;
}

/* CULTURE SECTION */
.culture-section {
  display: flex;
  flex-wrap: wrap;
  min-height: 70vh;
  background: var(--white);
}

.culture-content {
  flex: 1;
  padding: 60px;
}

.culture-image {
  flex: 1;
  background: url("https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?q=80")
    center/cover;
}

.why-join {
  padding: 80px 10%;
  background: #fafafa;
}

.why-join h2 {
  font-size: 2.3rem;
  margin-bottom: 40px;
  text-align: center;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.why-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
}

.why-card i {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.why-card h3 {
  margin-bottom: 12px;
}
