.elementor .hero-section{padding-block-start:150px;padding-block-end:40px;margin-block-start:-160px;margin-block-end:0px;margin-inline-start:0px;margin-inline-end:0px;/* Hero Background with Glow */
.hero-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 10%, rgba(201,162,39,0.16), transparent 60%),
              linear-gradient(160deg, #0F2A47 0%, #0A1F35 65%, #08192c 100%);
}

/* Glow Animation */
.hero-glow {
  position: absolute;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.24), transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  animation: pulseGlow 7s ease-in-out infinite;
  z-index: 1;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.55; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.9; transform: translateX(-50%) scale(1.08); }
}

/* Snow Balls / Floating Particles */
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: #C9A227;
  pointer-events: none;
  animation: floatUp linear infinite;
  z-index: 2;
}

@keyframes floatUp {
  0% {
      transform: translateY(100vh) scale(0);
      opacity: 0;
  }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% {
      transform: translateY(-100px) scale(1);
      opacity: 0;
  }
}\n}