/* === Floating Shape Container === */
.floating-shapes-advanced {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  display: none;
}

/* === Common Shape Base === */
.floating-shapes-advanced .shape {
  position: absolute;
  width: 80px;
  height: 80px;
  opacity: 0.8;
}

/* === Shape Positioning & Animation === */
.circle-outline { top: 15%; left: 15%; animation: float 6s ease-in-out infinite; }
.triangle-outline { top: 30%; right: 5%; animation: rotate 10s linear infinite; }
.square-outline { bottom: 20%; left: 10%; animation: scalae-n-rotate 8s ease-in-out infinite; }
.wave-outline { bottom: 10%; right: 10%; animation: drift 12s ease-in-out infinite; }

.circle-filled { top: 15%; left: 20%; animation: float 7s ease-in-out infinite; }
.triangle-filled { bottom: 15%; right: 20%; animation: scalae-n-rotate 10s ease-in-out infinite; }
.blob { top: 50%; left: 50%; transform: translate(-50%, -50%); animation: drift 14s ease-in-out infinite; }
.star { top: 70%; right: 40%; animation: rotate 16s linear infinite; }

/* === Spiral Wave (animated) === */
.spiral-wave {
  position: absolute !important;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 200px !important;
  z-index: 0;
  pointer-events: none;
  opacity: 1 !important;
}

/* === Animated Gradient Fill for Optional Text/Background === */
.dynamic-wave-gradient {
  background-image: linear-gradient(45deg, #9c00ff, #fc4d9c, #ffbf05, #9c00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* === Shape Appearance (styled via CSS vars) === */
.shape circle,
.shape rect,
.shape polygon,
.shape path {
  stroke-width: 2;
}

/* Outlined shapes */
.circle-outline circle
.wave-outline path {
  fill: none;
  stroke: #9c00ff;
}
/* Outlined shapes */
.triangle-outline polygon,
.wave-outline path {
  fill: none;
  stroke: #ffbf05;
}
/* Outlined shapes */

.square-outline rect,
.wave-outline path {
  fill: none;
  stroke: #fc4d9c;
}


/* Filled shapes */
.circle-filled circle,
.star polygon {
  fill: #fc4d9c;
  opacity: 0.15;
}

.triangle-filled polygon,
.blob path {
  fill: #ffbf05;
  opacity: 0.12;
}

/* === Animations === */
@keyframes float {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(-20px); opacity: 0.6; }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes scalePulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.6; }
}

@keyframes scalae-n-rotate {
  from { transform: rotate(0deg) scale(1); opacity: 0.3; }
  to { transform: rotate(360deg) scale(1.2); opacity: 0.6; }
}

@keyframes drift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-10px, 10px); }
  50% { transform: translate(10px, -10px); }
  75% { transform: translate(-5px, 5px); }
  100% { transform: translate(0, 0); }
}

/* === Section support === */
.hero,
.what-we-do,
.why-addwisery-parallax,
.lets-talk {
  position: relative;
  overflow: hidden;
}
