.hero-banner {
  background: linear-gradient(135deg, #eef3ff 0%, #f8f9fb 100%);
  position: relative;
  overflow: hidden;
}
.hero-bg-gradient {
  content: "";
  position: absolute;
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, rgba(13,110,253,0.25), transparent 70%);
  filter: blur(100px);
  z-index: 1;
}
.hero-text h1 {
  background: linear-gradient(90deg, #0d6efd, #6610f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-image img {
  width: 90%;
  border-radius: 25px;
  animation: floatY 6s ease-in-out infinite;
  z-index: 2;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Floating decorative shapes */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  z-index: 0;
}
.shape1 {
  width: 120px;
  height: 120px;
  background: #0d6efd;
  top: -20px;
  left: -40px;
  animation: floatX 7s ease-in-out infinite;
}
.shape2 {
  width: 180px;
  height: 180px;
  background: #6610f2;
  bottom: -30px;
  right: -50px;
  animation: floatX 9s ease-in-out infinite reverse;
}
@keyframes floatX {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(25px); }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-banner {
    text-align: center;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-image img {
    width: 75%;
    margin-top: 30px;
  }
}