/* Audio Wave Animation for Solutions Section - Matching the image exactly */

.features {
  position: relative;
  /* background: linear-gradient(135deg, #f0f7ff 0%, #5796f5 100%); */
  background:#afd0ff;
  /* background: linear-gradient(#bae2ff); */
  /* animation: blueFlow 8s ease-in-out infinite; */
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
  /* position: relative; */
}

/* Feature card styling - exactly as shown in the image */
.features .feature-card {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px;
}

.features .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15);
}

/* Feature check mark styling - matching the image */
.features .feature-check {
  color: #2563EB;
  margin-right: 8px;
}

/* Ensure content is above the background */
.features .container {
  position: relative;
  z-index: 1;
}

/* Audio wave visualization at bottom - exactly as shown in the image */
.audio-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 350px;
  display: flex;
  align-items: flex-end;
  padding: 0;
  background: transparent;
  z-index: 0;
  overflow: visible;
  pointer-events: none;
}

.audio-bar {
  width: 2px;
  background: #2563eb;
  margin: 0 1px;
  border-radius: 0;
  animation: barAnimation 1.5s infinite ease-in-out;
  transform-origin: bottom;
  flex: 1;
}

@keyframes barAnimation {
  0% { height: var(--min-height, 50px); }
  50% { height: var(--max-height, 300px); }
  100% { height: var(--min-height, 50px); }
}
