/* ===== HERO SECTION ===== */
.ju-hero {
  position: relative;
  background: linear-gradient(135deg, #0d214f 0%, #0067da 100%);
  padding: 120px 0 80px;
  overflow: hidden;
}

.ju-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><circle cx="600" cy="100" r="300" fill="rgba(255,255,255,0.05)"/><circle cx="700" cy="400" r="200" fill="rgba(255,255,255,0.03)"/></svg>') no-repeat center;
  background-size: cover;
}

.ju-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ju-hero-left h1 {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
}

.ju-hero-left p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.8;
}

.ju-cta-btn {
  display: inline-block;
  background: #fff;
  color: #0d214f;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.ju-cta-btn:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  color: #0d214f;
}

.ju-hero-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ju-stat-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ju-stat-box h3 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 700;
}

.ju-stat-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin: 0;
}

/* ===== WHY JOIN US SECTION ===== */
.ju-why-join {
  padding: 80px 0;
  background: #f8f9fa;
}

.ju-section-title {
  text-align: center;
  margin-bottom: 60px;
}

.ju-badge {
  display: inline-block;
  background: linear-gradient(135deg, #29b9ed, #2563eb);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}

.ju-section-title h2 {
  font-size: 40px;
  color: #0f172a;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.15;
}

.ju-section-title p {
  font-size: 18px;
  color: #475569;
  line-height: 1.8;
}

.ju-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ju-feature-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.ju-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0067da, #0d214f);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.ju-feature-card:hover::before {
  transform: scaleX(1);
}

.ju-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 103, 218, 0.15);
  border-color: #0067da;
}

.ju-feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0067da, #0d214f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: #fff;
}

.ju-feature-card h3 {
  font-size: 22px;
  color: #0f172a;
  margin-bottom: 15px;
  font-weight: 700;
}

.ju-feature-card p {
  color: #475569;
  line-height: 1.8;
  font-size: 16px;
  margin: 0;
}

/* ===== BENEFITS SECTION ===== */
.ju-benefits {
  padding: 80px 0;
  background: #fff;
}

.ju-benefits-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ju-benefits-left h2 {
  font-size: 40px;
  color: #0f172a;
  margin: 15px 0;
  font-weight: 700;
}

.ju-benefits-left p {
  font-size: 18px;
  color: #475569;
  margin-bottom: 30px;
  line-height: 1.8;
}

.ju-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ju-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
}

.ju-benefits-list i {
  color: #0067da;
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.ju-benefits-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 103, 218, 0.15);
}

/* ===== OPENINGS SECTION ===== */
.ju-openings {
  padding: 80px 0;
  background: #f8f9fa;
}

.ju-openings-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ju-openings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.ju-job-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.ju-job-card:hover {
  border-color: #0067da;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 103, 218, 0.15);
}

.ju-job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
  gap: 15px;
}

.ju-job-title-wrap {
  flex: 1;
}

.ju-job-card h3 {
  font-size: 20px;
  color: #0f172a;
  margin-bottom: 8px;
  font-weight: 700;
}

.ju-job-type {
  display: inline-block;
  background: #e0f2fe;
  color: #0067da;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.ju-job-location {
  font-size: 14px;
  color: #64748b;
  white-space: nowrap;
}

.ju-job-location i {
  color: #0067da;
  margin-right: 5px;
}

.ju-job-desc {
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.ju-job-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.ju-job-exp {
  font-size: 14px;
  color: #64748b;
}

.ju-job-exp i {
  color: #0067da;
  margin-right: 6px;
}

.ju-apply-btn {
  background: linear-gradient(135deg, #0067da, #0d214f);
  color: #fff;
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.ju-apply-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 103, 218, 0.3);
  color: #fff;
}

/* ===== CTA SECTION ===== */
.ju-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d214f 0%, #0067da 100%);
  text-align: center;
}

.ju-cta-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.ju-cta-content h2 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
}

.ju-cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.8;
}

.ju-cta-btn-white {
  display: inline-block;
  background: #fff;
  color: #0d214f;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.ju-cta-btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  color: #0d214f;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .ju-hero-content,
  .ju-benefits-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .ju-hero-right {
    grid-template-columns: 1fr;
  }
  
  .ju-hero-left h1 {
    font-size: 36px;
  }
  
  .ju-section-title h2,
  .ju-benefits-left h2,
  .ju-cta-content h2 {
    font-size: 32px;
  }
  
  .ju-openings-grid {
    grid-template-columns: 1fr;
  }
}