.hero-section {
  position: relative;
  background: #0a1931;
  color: #ffffff;
  overflow: hidden;
  padding: 140px 0 160px; 
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
}

.hero-section::before {
  top: -120px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(0,174,239,0.25) 0%, transparent 70%);
}

.hero-section::after {
  bottom: -100px;
  left: -60px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(0,255,234,0.2) 0%, transparent 70%);
}

.hero-section .container {
  position: relative;
  z-index: 5;
}

.hero-text {
  max-width: 520px;
}

.hero-text h1 {
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.3;
  color: #ffffff;
}

.hero-text .highlight {
  color: #00AEEF;
}

.hero-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin: 20px 0 30px;
}

.btn-hero {
  background: linear-gradient(90deg, #00AEEF, #007bff);
  color: #fff;
  padding: 14px 44px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(0,157,255,0.35);
  transition: 0.35s ease;
  border: none;
}

.btn-hero:hover {
  transform: translateY(-4px);
  background: linear-gradient(90deg, #00bfff, #0091ff);
  box-shadow: 0 12px 24px rgba(0,157,255,0.5);
}

.hero-image {
  position: relative;
  z-index: 6;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-anim-wrapper {
  position: relative;
  display: inline-block;
  transform: translateX(50px);
}

.hero-main {
  max-width: 85%;
  height: auto;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.4));
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

.float-box {
  position: absolute;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(22px) saturate(160%);
  color: #fff;
  font-size: 0.78rem;
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.22);
  white-space: nowrap;
  animation: floatBox 6s ease-in-out infinite;
  letter-spacing: 0.2px;
}

.left-box {
  left: -60px;
  top: 40%;
  animation-delay: .3s;
}

.right-box {
  right: -60px;
  top: 25%;
  animation-delay: 1.4s;
}

@keyframes floatBox {
  0%,100% { transform: translateY(0); opacity: .95; }
  50% { transform: translateY(-15px); opacity: 1; }
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  filter: blur(2px);
  animation: moveBubble 8s ease-in-out infinite;
}

.bubble-1 {
  width: 40px; height: 40px;
  top: 10%; left: 25%;
  animation-delay: 1s;
}

.bubble-2 {
  width: 25px; height: 25px;
  bottom: 20%; right: 30%;
  animation-delay: 2s;
}

.bubble-3 {
  width: 60px; height: 60px;
  bottom: 10%; left: 10%;
  animation-delay: .5s;
}

@keyframes moveBubble {
  0%,100% { transform: translateY(0); opacity: .85; }
  50% { transform: translateY(-20px); opacity: 1; }
}

@media (max-width: 992px) {

  .hero-section {
    text-align: center;
    padding: 150px 0 120px; 
  }

  .hero-row {
    display: flex;
    flex-direction: column-reverse;
  }

  .hero-anim-wrapper {
    transform: none;
    margin-bottom: 25px;
  }

  .hero-main {
    max-width: 78%;
    animation: floatMobile 4s ease-in-out infinite;
  }

  @keyframes floatMobile {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
  }

  .float-box {
    font-size: 0.75rem;
    padding: 8px 14px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .left-box { top: 68%; }
  .right-box { top: 50%; }

  .hero-text {
    margin-top: 35px;
  }

}
