.career-main {
  margin-top: 100px;
  background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
}

.career-hero {
  text-align: center;
  padding: 60px 20px 60px;
  position: relative;
  overflow: hidden;
}

.career-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 300"><path d="M0,100 C300,300 700,0 1000,100 L1000,300 L0,300 Z" fill="%2327aae1" opacity="0.08"/></svg>') center/cover no-repeat;
  z-index: 0;
}

.career-hero .section-label {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #27aae1;
  letter-spacing: 2px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.career-hero .section-label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -80px; right: -80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #27aae1, transparent);
  z-index: -1;
}

.career-hero h1 {
  font-size: 64px;
  font-weight: 800;
  background: linear-gradient(90deg, #262262 0%, #27aae1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 20px;
}

.career-hero .hero-subtitle {
  font-size: 20px;
  color: #555;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Job Listings */
.job-listings {
  padding: 60px 20px 140px;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.job-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(38, 34, 98, 0.1);
  border: 1px solid rgba(39, 170, 225, 0.12);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.job-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, #27aae1, #262262);
  opacity: 0;
  transition: opacity 0.3s;
}

.job-card:hover::before {
  opacity: 1;
}

.job-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(38, 34, 98, 0.18);
}

.job-tag {
  display: inline-block;
  background: #e3f9f0;
  color: #00a376;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.job-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #262262;
  margin: 0 0 12px;
}

.job-meta {
  font-size: 15px;
  color: #27aae1;
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.job-desc {
  color: #666;
  line-height: 1.7;
  margin-bottom: 28px;
  font-size: 15px;
}

.btn-view {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #27aae1;
  border: 2px solid #27aae1;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-view:hover {
  background: #27aae1;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(39, 170, 225, 0.3);
}

@media (max-width: 1024px) {
  .career-hero h1 {
    font-size: 52px;
  }

  .career-hero .hero-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .career-hero {
    padding: 60px 20px 50px;
  }

  .career-hero h1 {
    font-size: 44px;
  }

  .career-hero .hero-subtitle {
    font-size: 17px;
  }

  .no-jobs-message h2 {
    font-size: 2.2rem;
  }

  .no-jobs-message p {
    font-size: 1.1rem;
  }

  .job-listings {
    padding: 50px 20px 100px;
  }
}

@media (max-width: 480px) {
  .career-hero {
    padding: 50px 20px 40px;
  }

  .career-hero h1 {
    font-size: 36px;
  }

  .career-hero .hero-subtitle {
    font-size: 16px;
  }

  .no-jobs-message h2 {
    font-size: 1.9rem;
  }

  .no-jobs-message p {
    font-size: 1rem;
  }

  .no-jobs-message {
    padding: 30px 15px;
  }

  .job-listings {
    padding: 40px 20px 80px;
  }

  /* For future job cards on mobile */
  .jobs-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .job-card {
    padding: 30px 24px;
  }

  .job-card h3 {
    font-size: 22px;
  }
}