.elementor-4930 .elementor-element.elementor-element-2fd7093{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-4930 .elementor-element.elementor-element-cb1fbc4{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-4930 .elementor-element.elementor-element-eeb7a0d{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;overflow:visible;}@media(max-width:767px){.elementor-4930 .elementor-element.elementor-element-ced036d > .elementor-widget-container{margin:0px 0px 0px 0px;}}/* Start custom CSS for html, class: .elementor-element-071d306 *//* Background Animation Styles */
body {
  position: relative;
  overflow-x: hidden;
  background-color: #f5f9ff;
}

.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  animation: float 15s infinite ease-in-out;
}

/* Color Variations */
.bg-shape:nth-child(1) {
  background: #4361ee;
  width: 300px;
  height: 300px;
  top: 20%;
  left: 5%;
  animation-delay: 0s;
}

.bg-shape:nth-child(2) {
  background: #4cc9f0;
  width: 400px;
  height: 400px;
  top: 60%;
  left: 80%;
  animation-delay: 3s;
}

.bg-shape:nth-child(3) {
  background: #7209b7;
  width: 250px;
  height: 250px;
  top: 30%;
  left: 70%;
  animation-delay: 6s;
}

.bg-shape:nth-child(4) {
  background: #f72585;
  width: 350px;
  height: 350px;
  top: 70%;
  left: 20%;
  animation-delay: 9s;
}

/* Pulsing Animation */
@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(-50px, -30px) scale(1.1);
  }
  50% {
    transform: translate(30px, 50px) scale(0.9);
  }
  75% {
    transform: translate(50px, -30px) scale(1.05);
  }
}

/* Moving Gradient Overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, 
              rgba(255,255,255,0) 0%, 
              rgba(255,255,255,0.3) 70%, 
              rgba(255,255,255,0) 100%);
  animation: pulse 20s infinite alternate;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.1;
  }
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
}

/* Floating Particles */
.bg-particle {
  position: absolute;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  animation: particle-float 15s infinite linear;
  opacity: 0;
}

@keyframes particle-float {
  0% {
    transform: translateY(100vh) scale(0.5);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}

/* Generate particles with different sizes and delays */
.bg-particle:nth-child(5) {
  width: 3px;
  height: 3px;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 15s;
}
.bg-particle:nth-child(6) {
  width: 5px;
  height: 5px;
  left: 25%;
  animation-delay: 2s;
  animation-duration: 18s;
}
.bg-particle:nth-child(7) {
  width: 2px;
  height: 2px;
  left: 50%;
  animation-delay: 4s;
  animation-duration: 12s;
}
.bg-particle:nth-child(8) {
  width: 4px;
  height: 4px;
  left: 75%;
  animation-delay: 6s;
  animation-duration: 20s;
}
.bg-particle:nth-child(9) {
  width: 3px;
  height: 3px;
  left: 90%;
  animation-delay: 8s;
  animation-duration: 16s;
}/* End custom CSS */