@charset "UTF-8";
/**
 * Why Choose Us — template-parts/sections/why-choose-us.php
 * Parallax: background-attachment fixed (desktop). URL via --why-choose-bg-image on .why-choose-us-bg.
 */
.why-choose-us-bg {
  background-image: var(--why-choose-bg-image);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

@media (min-width: 768px) {
  .why-choose-us-bg {
    background-attachment: fixed;
  }
}
@media (prefers-reduced-motion: reduce) {
  .why-choose-us-bg {
    background-attachment: scroll;
  }
}
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

/*# sourceMappingURL=why-choose-us.css.map*/