@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse-slow {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

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

.animate-pulse-slow {
  animation: pulse-slow 2s ease-in-out infinite;
}

/* .zen-maru-font {
  font-family: "Zen Maru Gothic", sans-serif;
} */

.rounded-font {
  font-family: "Rounded Mplus 1c", sans-serif;
}

.hiragino-font {
  font-family: "Hiragino Maru Gothic Pro", sans-serif;
  font-weight: 400;
}

.shadow-3xl {
  box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.25);
}

/* Custom gradient backgrounds */
.bg-hero-gradient {
  background: linear-gradient(135deg, #ffe8cc 0%, #ffcccb 50%, #e8ccff 100%);
}

/* Smooth transitions for all interactive elements */
* {
  transition: all 0.3s ease;
}

/* Enhanced button hover effects */
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 164, 52, 0.3);
}

/* Swiper Custom Styles */
.reviews-swiper .swiper-button-next,
.reviews-swiper .swiper-button-prev {
  color: #3567bf;
  margin-top: -22px;
}

.reviews-swiper .swiper-button-next:after,
.reviews-swiper .swiper-button-prev:after {
  font-size: 20px;
  font-weight: 900;
}

.reviews-swiper .swiper-pagination-bullet {
  background: #3567bf;
  opacity: 0.3;
}

.reviews-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

.reviews-swiper .swiper-slide {
  height: auto;
}

.reviews-swiper .swiper-slide > div {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Feature Card Styles */
.feature-card {
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(135deg, #fdeec3 0%, #c8fff7 100%) border-box;
}

/* Review Card Styles */
.review-card {
  border-radius: 2rem;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(135deg, #fdeec3 0%, #c8fff7 100%) border-box;
  border: 8px solid transparent;
}

.gradient-border {
  background: linear-gradient(white, white) padding-box,
    linear-gradient(135deg, #fdeec3 0%, #c8fff7 100%) border-box;
  border: 8px solid transparent;
}

:root {
  --swiper-theme-color: #3567bf;
}

/* .speech-bubble:nth-child(1) { animation-delay: 0s; }
.speech-bubble:nth-child(2) { animation-delay: 1s; }
.speech-bubble:nth-child(3) { animation-delay: 2s; } */
