.elementor-3412 .elementor-element.elementor-element-2c468ef{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-3412 .elementor-element.elementor-element-ba73607{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-036c373 *//* General styles for the banner */
.animated-wave-banner {
  position: relative;
  text-align: center;
  background: linear-gradient(60deg, #4f46e5 0%, #1d4ed8 100%); /* Example gradient: Purple to Blue */
  color: white;
  padding: 100px 20px 150px 20px; /* Adjust padding: top right bottom left. Bottom padding must be enough for waves */
  overflow: hidden; /* Important to hide the parts of the waves that move out */
}

.animated-wave-banner .banner-content {
  position: relative;
  z-index: 10; /* Ensure content is above waves */
}

.animated-wave-banner h1 {
  font-size: 4rem; /* Adjust as needed */
  font-weight: bold;
  margin: 0 0 10px 0;
  text-transform: capitalize; /* If needed */
}

.animated-wave-banner .breadcrumbs {
  font-size: 0.9rem; /* Adjust as needed */
  letter-spacing: 0.5px;
  opacity: 0.8;
  margin: 0;
}

/* Wave container and individual waves */
.waves-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px; /* Adjust based on your wave SVG and desired height */
  overflow: hidden; /* Optional, but good practice */
}

.wave {
  position: absolute;
  bottom: 0; /* Align to the bottom of the waves-container */
  left: 0;
  width: 100%;
  height: 100%; /* Make SVG fill its designated space in waves-container */
  background-repeat: repeat-x; /* Not strictly needed with current SVG setup but good for other methods */
}

/*
  The SVG setup uses a path that's effectively 4 times its viewBox width for seamless looping.
  The <use> element uses `x="48"` (an arbitrary offset within the large path).
  The animation then moves the <use> element.
*/

.wave .parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}

.wave.wave1 .parallax > use {
  animation-delay: -2s;
  animation-duration: 10s; /* Slower for topmost wave */
}

.wave.wave2 .parallax > use {
  animation-delay: -4s;
  animation-duration: 15s;
}

.wave.wave3 .parallax > use {
  animation-delay: -6s;
  animation-duration: 20s;
}

.wave.wave4 .parallax > use {
  animation-delay: -5s; /* Different delay for variety */
  animation-duration: 25s; /* Slowest for bottommost wave */
}


/* Keyframes for the wave animation */
@keyframes move-forever {
  0% {
    transform: translate3d(-90px,0,0); /* Start position of the wave slice */
  }
  100% { 
    transform: translate3d(85px,0,0);   /* End position of the wave slice */
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .animated-wave-banner {
    padding: 80px 15px 120px 15px;
  }
  .animated-wave-banner h1 {
    font-size: 2.5rem;
  }
  .waves-container {
    height: 80px; /* Adjust wave height for smaller screens */
  }
}/* End custom CSS */