h1,
h2 {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
}

h3,
h4,
p,
ul,
li,
span,
a,
blockquote,
input,
textarea,
label,
button,
address,
cite {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  line-height: 26px;
}

p {
  font-weight: 400;
}

@keyframes glowPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(1, 80, 123, 0.4);
  }

  50% {
    transform: scale(1.03);
    box-shadow: 0 0 12px rgba(1, 80, 123, 0.5);
  }
}

.animate-glow-pulse {
  animation: glowPulse 2.2s infinite ease-in-out;
}

.wave {
  transform: rotate(180deg);
}

/* Larger and spaced-out pagination dots */
.swiper-pagination-bullet {
  width: 22px !important;
  height: 22px !important;
  background: #3b82f6;
  /* Tailwind's blue-500 */
  opacity: 0.5;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.3);
}

/* Move pagination down below the content */
.swiper-pagination {
  position: relative;
  margin-top: 1.5rem;
  /* Push below the slides */
  margin-top: 2rem !important;
  display: flex !important;
  justify-content: center !important;
}


@keyframes slide-border {
  0% {
    width: 0%;
    left: 0;
  }

  100% {
    width: 100%;
    left: 0;
  }
}

.border-slide-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  background-color: #3b82f6;
  /* Tailwind blue-500 */
  width: 0;
  border-radius: 4px 4px 0 0;
  transition: width 0.4s ease;
}

.border-slide-top:hover::before {
  width: 100%;
  animation: slide-border 0.4s forwards;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.pop-in {
  animation: popIn 0.4s ease forwards;
}

.underline-anim:hover span {
  transform: scaleX(1);
}


@keyframes bounce-slow {

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

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

.animate-bounce-slow {
  animation: bounce-slow 3s ease-in-out infinite;
}


.underline-animate::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 4px;
  width: 100%;
  background-color: #fd0276;
  /* Your underline color */
  transform-origin: left;
  transform: scaleX(0);
  animation: underline-grow .75s forwards ease-out;
  border-radius: 2px;
}

@keyframes underline-grow {
  to {
    transform: scaleX(1);
  }
}

.swiper-pagination-bullet {
  background-color: #01507b;
  /* brand blue */
  opacity: 0.5;
  margin: 0 6px !important;
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
}









/* Basic input styles (unchanged) */
.cf7-input,
.cf7-textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  outline: none;
  transition: all 0.2s;
}

.cf7-input:focus,
.cf7-textarea:focus {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
  border-color: #3b82f6;
}

/* Label styling */
.cf7-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #374151;
}

/* Improved submit button styling via wrapper */
.cf7-submit-wrapper input[type="submit"] {
  display: inline-block;
  width: 100%;
  max-width: 12rem;
  padding: 1rem 1.5rem;
  font-weight: 700;
  color: white;
  background-color: #01507b!important;
  border: none;
  border-radius: 9999px;
  transition: background-color 0.3s, transform 0.2s;
  cursor: pointer;
}

.cf7-submit-wrapper input[type="submit"]:hover {
  background-color: #1d4ed8;
  transform: translateY(-1px);
}
