* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}


/* ===== HEADER ===== */
.site-header {
  width: 100%;
  background: #568dd6;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  width: 45px;
  height: auto;
}

.logo span {
  font-size: 20px;
  font-weight: 600;
  color: #d64363;
}



/* HERO */
.career-hero {
  height: 90vh;
  background: url("https://images.examples.com/wp-content/uploads/2017/03/Career-Assessment-Examples-amp-Samples.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-btn {
  padding: 14px 30px;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #fff;
  color: #000;
}

/* INTRO */
.career-intro {
  background: #fff;
  max-width: 900px;
  margin: -80px auto 80px;
  padding: 50px;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.career-intro .tag {
  background: #22c55e;
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
}

.career-intro h2 {
  margin: 20px 0;
  font-size: 32px;
}

.career-intro p {
  color: #555;
  line-height: 1.7;
}

/* OPEN POSITIONS */
.open-positions {
  padding: 80px 8%;
  background: #f9fafb;
}

.section-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 60px;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* JOB CARD */
.job-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: 0.4s;
}

.job-card:hover {
  transform: translateY(-12px);
}

.job-icon {
  width: 70px;
  height: 70px;
  background: #d35637;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 28px;
}

.open-count {
  display: block;
  margin: 15px 0;
  color: red;
  font-size: 14px;
}

.job-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

.job-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 25px;
}

.job-card ul li {
  margin-bottom: 8px;
  color: #555;
  font-size: 14px;
}

.apply-btn {
  display: inline-block;
  padding: 10px 24px;
  border: 2px solid #1d4ed8;
  color: #1d4ed8;
  border-radius: 8px;
  transition: 0.3s;
}

.apply-btn:hover {
  background: #1d4ed8;
  color: #fff;
}

/* DISABLED */
.disabled {
  opacity: 0.6;
}

.disabled-btn {
  border-color: #aaa;
  color: #aaa;
  cursor: not-allowed;
}

.closed {
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 34px;
  }

  .career-intro {
    margin: -60px 20px 60px;
    padding: 35px;
  }
}
