* {
  margin: 0;
  padding: 0;
  list-style: none;
}
body {
  font-family: 'Public Sans', serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Darker Grotesque', serif;
  font-weight: 700;
  margin: 0;
  padding: 0;
  color: #000;
}
p {
  margin: 0;
  color: #221f1f;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
}
.rounded-custom {
  border-top-left-radius: 50px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 50px;
}
.rounded-custom2 {
  border-radius: 10px;
}
.rounded-custom3 {
  border-top-left-radius: 10px;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 10px;
}

.hidden {
  display: none;
}
.header-wrapper,
.form-section {
  margin: 0;
  overflow: hidden;
  background: black; /* Ensure no white space shows */
  position: relative;
}

.background-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    #92c2f5,
    #368bf2,
    #0657ae,
    #091b4f
  );
  background-size: 300% 300%; /* Larger size for smooth transition */
  animation: gradient-move 30s linear infinite;
  z-index: 0;
}

@keyframes gradient-move {
  0% {
    background-position: 50% 0%; /* Start at the top-center */
  }
  25% {
    background-position: 100% 50%; /* Move to right-center */
  }
  50% {
    background-position: 50% 100%; /* Move to bottom-center */
  }
  75% {
    background-position: 0% 50%; /* Move to left-center */
  }
  100% {
    background-position: 50% 0%; /* Back to top-center */
  }
}

.header-main,
.banner,
.form-wrapper {
  position: relative;
  z-index: 1;
}
.site-logo img {
  max-width: 120px;
}
.header {
  background: linear-gradient(
    to right,
    rgba(214, 242, 249, 0.15) 30%,
    rgba(160, 206, 217, 0.15) 100%
  );
}
.top-cta a {
  color: #000;
}
.top-cta a:hover {
  color: #fff;
}
.header-main {
  position: relative;
  transition: all 0.3s ease-in-out;
  width: 100%;
  z-index: 10;
}
.header-main * {
  transition: all 0.3s ease-in-out;
}
.header-main.sticky {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff; /* Optional: change background when sticky */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Optional shadow for effect */
}

.header-main.sticky .site-logo img {
  max-width: 90px;
}
.header-main.sticky .py-3 {
  padding-top: 0.85rem !important;
  padding-bottom: 0.85rem !important;
}
.header-main.sticky .btn-outline-light {
  border-color: #000 !important;
  color: #000 !important;
}
.header-main.sticky .btn-outline-light:hover {
  background-color: #000 !important;
  color: #fff !important;
}
.header-main.sticky .top-cta a:hover {
  color: #0d6efd;
}

.price-box {
  width: 350px;
  margin: 25px auto;
  border: 2px solid #fff;
  text-align: center;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-box p {
  color: #fff;
  font-size: 50px;
  font-weight: 600;
  line-height: 1em;
  text-align: center;
}
.price-box p span.price-fr {
  font-size: 32px;
}
.price-box p span.price {
  font-size: 100px;
  font-weight: 700;
}

.hCard-image {
  background: radial-gradient(
    circle at 50% 50%,
    #92c2f5,
    #368bf2,
    #0657ae,
    #091b4f
  );
  height: 300px;
  padding: 30px;
}
.hCard-image img {
  object-fit: contain;
}

.icon-image {
  padding: 20px;
  border: 2px solid #2376a7;
  border-radius: 50%;
  margin: 30px 35px 20px 35px;
}
.icon-wrap,
.icon-wrap * {
  transition: all 0.3s ease-in-out;
}
.icon-wrap:hover .icon-image,
.icon-wrap:hover .icon-text {
  transform: scale(1.15);
}

.processing-bg {
  background-image: url('images/payment-processing.jpg');
  background-size: cover;
  background-position: left bottom;
  min-height: 420px;
}
.support {
  background-image: url('images/support.jpg');
  background-size: cover;
  background-color: rgba(6, 87, 174, 0.4);
  background-blend-mode: color;
  padding: 100px 0;
}

.footer-card a,
.footer-cta a {
  color: #fff;
}
.footer-card a:hover,
.footer-cta a:hover {
  color: #0a58ca;
}


form.was-validated input:invalid,
form.was-validated select:invalid,
form.was-validated textarea:invalid {
  border: 1px solid red !important;
}

form.was-validated input:valid,
form.was-validated select:valid,
form.was-validated textarea:valid {
  border: 1px solid green !important;
}


@media (max-width: 768px) {
  .site-logo {
    text-align: center;
  }
  .field-wrap .col-md-6:first-child {
    margin-bottom: 15px;
  }
  .icon-image {
    margin: 30px auto 20px auto;
    width: 150px;
  }
  .support-card {
    margin-bottom: 30px;
  }
}
