/* Demo Section Custom Animations and Effects */

@keyframes gentle-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(10px, -15px) scale(1.05); }
  66% { transform: translate(-8px, 10px) scale(0.95); }
}

@keyframes shimmer {
  0% { transform: translateX(-100%) skewX(-12deg); }
  100% { transform: translateX(200%) skewX(-12deg); }
}

/* Custom Animation Classes */
.animate-pulse-slow {
  animation: pulse 4s ease-in-out infinite;
}

.animate-pulse-slower {
  animation: pulse 6s ease-in-out infinite;
}

.animate-float {
  animation: gentle-float 10s ease-in-out infinite;
}

/* Glass Card Styling */
.glass-card-enhanced {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 100px rgba(10, 148, 104, 0.05);
}

/* Premium Glass Button */
.premium-glass-button {
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(10, 148, 104, 0.08) 25%,
    rgba(234, 136, 31, 0.06) 50%,
    rgba(255, 255, 255, 0.08) 75%,
    rgba(10, 148, 104, 0.1) 100%
  );
  backdrop-filter: blur(12px);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    0 12px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.15);
}

.premium-glass-button:hover {
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(10, 148, 104, 0.12) 25%,
    rgba(234, 136, 31, 0.1) 50%,
    rgba(255, 255, 255, 0.12) 75%,
    rgba(10, 148, 104, 0.15) 100%
  );
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15),
    0 16px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.25),
    0 0 60px rgba(10, 148, 104, 0.15);
}


/* Dynamic Gradient Text Effects */
.dynamic-gradient-text {
  font-size: clamp(2.75rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(168, 162, 158, 0.9) 25%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(168, 162, 158, 0.9) 75%,
    rgba(255, 255, 255, 0.95) 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-flow 8s ease-in-out infinite;
}

.accent-gradient {
  background: linear-gradient(45deg,
    #0a9468 0%,
    #14c484 25%,
    #0fb478 50%,
    #0a9468 75%,
    #14c484 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-flow 8s ease-in-out infinite;
  position: relative;
  text-shadow:
    0 0 30px rgba(10, 148, 104, 0.6),
    0 0 60px rgba(10, 148, 104, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.3);
  filter: drop-shadow(0 0 20px rgba(10, 148, 104, 0.3));
}

@keyframes gradient-flow {
  0%, 100% {
    background-position: 0% 20%;
  }
  25% {
    background-position: 100% 80%;
  }
  50% {
    background-position: 80% 100%;
  }
  75% {
    background-position: 20% 60%;
  }
}

