.bootcamp-hero-banner {
  position: relative;
  width: 100%;
  background: #020d2b;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 36px;
  min-height: 220px;
  display: flex;
  align-items: center;
}

.bootcamp-hero-banner svg.wave-bg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 55%;
  opacity: 0.85;
}

.bootcamp-hero-banner .banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2, 13, 43, 0.95) 45%,
    rgba(2, 13, 43, 0.2) 100%
  );
}

.bootcamp-hero-banner .banner-text {
  position: relative;
  z-index: 2;
  padding: 40px 44px;
}

.bootcamp-hero-banner .banner-label {
  font-size: 13px;
  font-weight: 600;
  color: #7dd0ff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.bootcamp-hero-banner h1 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 6px;
}

.bootcamp-hero-banner h1 span {
  color: #2a8fff;
}

.bootcamp-hero-banner .banner-sub {
  font-size: 14px;
  color: #c8d8f0;
  margin-top: 14px;
  max-width: 480px;
  line-height: 1.7;
}

.bootcamp-program-card {
  background: #fff;
  border-left: 4px solid #1a56db;
  border-radius: 10px;
  padding: 22px 26px;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(26, 86, 219, 0.07);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.bootcamp-program-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26, 86, 219, 0.13);
}

.bootcamp-program-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0d1b3e;
  margin-bottom: 6px;
}

.bootcamp-program-card p {
  font-size: 14px;
  color: #4a5a72;
  margin: 0;
  line-height: 1.6;
}

.bootcamp-program-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(26, 86, 219, 0.1);
  border-radius: 8px;
  margin-bottom: 10px;
  color: #1a56db;
  font-size: 18px;
}

.bootcamp-cta-box {
  background: linear-gradient(135deg, #0f2d6e 0%, #1a56db 60%, #2a8fff 100%);
  border-radius: 16px;
  padding: 44px 48px;
  margin-top: 40px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.bootcamp-cta-box::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.bootcamp-cta-box::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 30%;
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.bootcamp-cta-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.bootcamp-cta-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.bootcamp-cta-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.bootcamp-cta-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
  line-height: 1.65;
}

.bootcamp-cta-btn-wrap {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.bootcamp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #1a56db;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.bootcamp-cta-btn:hover {
  background: #0f2d6e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.bootcamp-tags {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bootcamp-tags .tag {
  background: rgba(26, 86, 219, 0.08);
  color: #1a56db;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .bootcamp-hero-banner .banner-text {
    padding: 34px 26px;
  }

  .bootcamp-hero-banner svg.wave-bg {
    width: 80%;
  }

  .bootcamp-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
    gap: 24px;
  }

  .bootcamp-cta-btn-wrap {
    width: 100%;
    text-align: center;
  }
}
