body {
  font-size: 16px;
}
header img {
    height: 100%;
    width: auto;
}
.hero-copy h1 {
  margin-bottom: 1rem;
}

.feature-panel img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}


.testimonial-slider {
  position: relative;
}

.testimonial-card {
  display: none;
}

.testimonial-card.active {
  display: block;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 rgba(29, 161, 242, 0.15);
  }
  50% {
    box-shadow: 0 0 24px rgba(29, 161, 242, 0.24);
  }
}

.button-primary {
  animation: pulseGlow 2.6s ease-in-out infinite;
}
