 .no-vacancy-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #1f1c2c, #928dab);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  color: white;
  text-align: center;
}

.no-vacancy-box {
  background: rgba(0, 0, 0, 0.4);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  max-width: 600px;
  width: 100%;
  backdrop-filter: blur(6px);
}

.no-vacancy-box h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.no-vacancy-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* 📱 Mobile Responsive */
@media (max-width: 600px) {
  .no-vacancy-box {
    padding: 30px 20px;
  }

  .no-vacancy-box h1 {
    font-size: 1.5rem;
  }

  .no-vacancy-box p {
    font-size: 1rem;
  }
}

/* 🎯 Careers Page - Modern, Stylish, AdSense-Friendly */
.careers-section {
  background: linear-gradient(145deg, #ffffff, #f4f6f9);
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.careers-container {
  max-width: 1200px;
  margin: auto;
  animation: fadeInUp 1s ease forwards;
}

.careers-intro {
  font-size: 1.15rem;
  color: #444;
  max-width: 750px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.career-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 30px;
}

.career-card {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: left;
  border-left: 6px solid #ff3e3e;
  position: relative;
  overflow: hidden;
}

.career-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.career-card::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -60%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, #ff3e3e33 0%, transparent 60%);
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}

.career-card h3 {
  color: #102542;
  font-size: 1.35rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.career-card p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.btn-apply {
  display: inline-block;
  background: #ff3e3e;
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.btn-apply:hover {
  background: #c70039;
  text-decoration: none;
  transform: scale(1.05);
}

.careers-note {
  margin-top: 70px;
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.careers-note a {
  color: #ff3e3e;
  font-weight: 600;
  text-decoration: underline;
}

/* ✨ Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 📱 Responsive Enhancements */
@media (max-width: 768px) {
  .careers-section {
    padding: 60px 15px;
  }

  .btn-apply {
    width: 100%;
    text-align: center;
  }
}