:root {
  --primary: #b4fffa;
  --accent: #0e2d3d;
  --light-gray: #f3f3f3;
  --text-dark: #06242e;
  --font-primary: 'Open Sans', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
}

body {
  font-family: var(--font-primary);
  background-color: var(--light-gray);
  color: var(--text-dark);
}

.hero {
  background-color: #c5edff7d;
  color: var(--text-dark);
  text-align: center;
  padding: 2rem 1rem;
  letter-spacing: .1em;
  font-weight: bold;
}

.hero img {
  filter: drop-shadow(0 0 3px #00aeff);
}

.logo {
  max-width: 100px;
  margin-bottom: 1rem;
}

.why i {
  color: var(--text-dark);
}

section {
  padding-bottom: 2.75em;
}

.section-title {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-size: 1.75rem;
  text-align: center;
  margin: 2rem 0;
}

.card {
  border: none;
  border-radius: 0.75rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.cta {
  background-color: var(--accent);
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

.cta a {
  background: white;
  color: var(--accent);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
}

footer {
  background: #eee;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

footer a {
  color: var(--text-dark);
  text-decoration: none;
}

.testimonial {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.testimonial img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.transition-hover {
  transition: all 0.3s ease-in-out;
}

.transition-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08) !important;
}

.icon-bounce {
  display: inline-block;
  animation: unset;
}

.transition-hover:hover .icon-bounce {
  animation: bounce 2.5s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.hero-bg-decor .bg-sparkles::before {
  content: '';
  background-image: url('../img/sparkles-bg.png');
  background-size: contain;
  background-repeat: repeat;
  opacity: 1;
  position: absolute;
  filter: contrast(0.7);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: scroll-bg 60s linear infinite;
}

.animate-fadein {
  animation: fadein 1.2s ease-in-out both;
}

@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

  @keyframes scroll-bg {
    0% { background-position: 0 0; }
    100% { background-position: 200px 200px; }
  }