/* Custom styles for Approachable Fit */
body {
  font-family: 'Poppins', sans-serif;
}

.bg-navy {
  background-color: #1e3a8a;
}

.text-navy {
  color: #1e3a8a;
}

#reviews-carousel .transition-transform {
  transition: transform 0.5s ease-in-out;
}

button:focus {
  outline: none;
}

.transform {
  transition: transform 0.3s ease;
}

section {
  opacity: 0;
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Carousel slide container */
#reviews-carousel .slide {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Ensure carousel quotes wrap */
#reviews-carousel .quote {
  white-space: normal !important;
  overflow-wrap: break-word !important;
  word-break: break-word !important;
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  padding: 0 2rem;
}