/* ===== Job Hero ===== */
.job-hero {
  padding: 70px 0px;
  background: rgb(0, 35, 72);
  background: linear-gradient(90deg, rgba(0, 35, 72, 1) 0%, rgba(3, 78, 57, 1) 35%, rgba(55, 95, 135, 1) 75%, rgba(0, 35, 72, 1) 100%);
  position: relative;
  overflow: hidden;
}

.job-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(135, 206, 250, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.job-badge {
  background: linear-gradient(135deg, var(--accent), #66b0ff);
  color: #121212;
}

.job-title {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .job-title {
    font-size: 3rem;
  }
}

.job-dept {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.job-glass-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.job-glass-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #f8f9fa;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.job-glass-badge svg {
  color: var(--accent);
  flex-shrink: 0;
}

@media (max-width: 575.98px) {
  .job-glass-badge {
    font-size: 0.7rem;
    padding: 5px 12px;
    gap: 0.3rem;
  }
}

.job-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* ===== Job Buttons ===== */
.job-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.job-btn-primary {
  background: linear-gradient(135deg, #ff8c00, #ff4500);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 69, 0, 0.3);
}

.job-btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 69, 0, 0.4);
}

.job-btn-ghost {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
}

.job-btn-ghost:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* ===== Job Details ===== */
.job-details {
  padding: 60px 0 40px;
  background: var(--bg-secondary);
}

.job-section-heading {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
}

.job-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 24px 22px;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.job-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glass);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.job-card-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 10px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.job-card-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.job-card-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0;
}

/* ===== Job Description ===== */
.job-body {
  padding: 60px 0 80px;
  background: var(--bg-primary);
}

.job-description {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px 28px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.job-description p {
  margin-bottom: 1rem;
}

.job-subheading {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--accent);
  margin: 1.75rem 0 0.75rem;
}

.job-description ul,
.job-description ol {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

.job-description li {
  margin-bottom: 0.5rem;
}

.job-description ul li::marker {
  content: '•';
  font-size: 1.15em;
  line-height: 1;
  color: var(--accent);
}

.job-description ol {
  padding-left: 1.75rem;
  counter-reset: job-item;
  list-style: none;
}

.job-description ol li {
  counter-increment: job-item;
  position: relative;
  padding-left: 1.9rem;
}

.job-description ol li::before {
  content: counter(job-item);
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.4rem;
  height: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #121212;
  background: linear-gradient(135deg, var(--accent), #66b0ff);
  border-radius: 50%;
}

.job-email {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.job-email:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.job-contact-line {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
  font-weight: 500;
  color: var(--text-primary);
}

/* ===== Apply CTA ===== */
.job-apply {
  padding: 70px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
}

.job-apply-title {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
}

.job-apply-text {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 1.75rem;
}

