@font-face {
  font-family: "francyfont";
  src: url("../fonts/FRANCY.OTF") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/SATOSHI-REGULAR.OTF") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/SATOSHI-MEDIUM.OTF") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/SATOSHI-BOLD.OTF") format("opentype");
  font-weight: 700;
  font-style: normal;
}
.heading--font {
  font-family: "francyfont", sans-serif;
  letter-spacing: 2px;
  line-height: normal;
}

.thinkbio--font, body {
  font-family: "Satoshi", sans-serif;
}

.py-6 {
  padding-top: 5.625rem !important;
  padding-bottom: 5.625rem !important;
} /* 80px */
.py-7 {
  padding-top: 7rem !important;
  padding-bottom: 7rem !important;
} /* 112px */
.py-8 {
  padding-top: 10rem !important;
  padding-bottom: 10rem !important;
} /* 160px */
.py-37 {
  padding-top: 3.7rem !important;
  padding-bottom: 3.7rem !important;
}

.py-23 {
  padding-top: 0.9rem !important;
  padding-bottom: 0.9rem !important;
}

.mt-52 {
  margin-top: 3.2rem !important;
}

.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: transparent;
  padding: 1rem 0;
}

.hero-video-section {
  position: relative;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
}
.hero-video-section .video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-video-section .video-container .bg-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-video-section .video-container .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(131deg, rgb(0, 113, 86) 0%, rgba(0, 113, 187, 0.45) 100%);
}
.hero-video-section .hero-content {
  position: relative;
  height: 100%;
  z-index: 2;
}

@media (max-width: 992px) {
  .hero-video-section {
    height: 75vh;
  }
}
/* Custom Badge Styling */
.badge-custom {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background-color: rgba(211, 211, 211, 0.2901960784);
  border-radius: 50rem !important; /* Force pill shape */
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px); /* Optional: Adds a nice frosted glass effect */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Highlighted Text Color */
.text-highlight {
  /* 1. Expand background size to allow movement */
  background: linear-gradient(90deg, #078CE3, #00E0AA, #078CE3);
  background-size: 200% auto;
  /* 2. Clip to text */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
  /* 3. Apply the animation */
  animation: gradient-move 3s linear infinite;
}

/* 4. Define the movement */
@keyframes gradient-move {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}
/* Custom Primary Button */
.btn-custom-teal {
  background-color: var(--bs-teal-highlight);
  border-color: var(--bs-teal-highlight);
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Hover state for the custom button (slightly darker teal) */
.btn-custom-teal:hover,
.btn-custom-teal:active {
  background-color: #00a88d; /* A slightly darker shade for hover */
  border-color: #00a88d;
  color: #fff;
}

/* Adjustments for the standard outline button */
.btn-outline-light {
  font-weight: 600;
  border-width: 2px; /* Slightly thicker border to match design */
  background-color: rgba(255, 255, 255, 0.05); /* Very faint background fill */
}

.btn-outline-light:hover {
  background-color: #fff;
  color: #000;
}

.lead {
  font-size: 1.125rem;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 992px) {
  .navbar-collapse {
    padding: 15px 15px;
    background-color: #ffffff;
    border-radius: 0px 0px 12px 12px;
  }
  .sm-text-black {
    color: black !important;
  }
  .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    padding-right: calc(var(--bs-gutter-x) * 0.79);
    padding-left: calc(var(--bs-gutter-x) * 0.79);
  }
}
@media (max-width: 768px) {
  .display-3 {
    font-size: 2.5rem; /* Smaller headline on mobile */
  }
  .lead {
    font-size: 1.1rem;
  }
}
@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}
@media (min-width: 1400px) {
  .display-3 {
    font-size: 4.6rem;
  }
}
.thinkbio-btn {
  background: linear-gradient(135deg, #0071BB -30%, #0CAA84 100%);
  border: 1px solid rgba(255, 255, 255, 0.2117647059);
  color: #ffffff;
  font-weight: 600;
  padding: 8px 14px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
}
.thinkbio-btn:hover {
  background: linear-gradient(135deg, #0CAA84 0%, #0071BB 130%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  color: #ffffff;
}

.features-section .feature-card {
  background-color: #ffffff;
  padding: 1.5rem 1.5rem;
  border-radius: 15px;
  border: none;
  text-align: left;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  min-height: 350px;
}
.features-section .feature-card .feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  transition: all 0.5s ease-in-out;
}
.features-section .feature-card .feature-text {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
  transition: all 0.5s ease-in-out;
}
.features-section .feature-card .featured-points__inner img {
  width: 15px;
  height: 15px;
}
.features-section .feature-card .featured-points__inner span {
  color: #6c757d;
  transition: all 0.5s ease-in-out;
  font-size: 0.92rem;
}
.features-section .feature-card .logo-box .logo-hover {
  display: none;
}
.features-section .feature-card .logo-box .logo-default {
  display: block;
}
.features-section .feature-card:hover {
  transition: all 0.5s ease-in-out;
  background: linear-gradient(135deg, #2b2d42 0%, #033025 100%);
  transform: translateY(-10px);
}
.features-section .feature-card:hover .logo-box .logo-default {
  display: none;
}
.features-section .feature-card:hover .logo-box .logo-hover {
  display: block;
}
.features-section .feature-card:hover .feature-title, .features-section .feature-card:hover .feature-text, .features-section .feature-card:hover .featured-points__inner span {
  color: #ffffff;
}

@media (max-width: 992px) {
  .feature-card {
    min-height: 250px !important;
  }
}
/* for hero buttons */
.action-capsule {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 12px;
  z-index: 1;
}
.action-capsule .sliding-bg {
  position: absolute;
  top: 6px;
  left: 6px;
  height: calc(100% - 12px);
  width: 178px;
  background: linear-gradient(135deg, #019a95 0%, #17b889 100%);
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  z-index: -1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.action-capsule .btn-nav {
  border: none;
  background: transparent;
  color: #ffffff;
  font-weight: 600;
  padding: 8px 14px;
  font-size: 0.875rem;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
  border-radius: 10px;
  white-space: nowrap;
}
.action-capsule .btn-nav:nth-child(3):hover ~ .sliding-bg {
  left: 235px;
  width: 180px;
}

/* for headings */
@keyframes gradient-move {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}
.header-section {
  max-width: 800px;
  margin: 0px auto 30px auto;
}
.header-section .section-title {
  color: #000000;
  font-size: 2.75rem;
}
.header-section .section-title .text-cyan {
  background: linear-gradient(90deg, #078CE3, #00E0AA, #078CE3);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
  animation: gradient-move 5s linear infinite;
}
.header-section .section-description {
  color: #777777;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 90%;
}
.header-section .header-divider {
  width: 45px;
  height: 3px;
  background-color: #00a8ff;
  border-radius: 2px;
}

/* for quantifiable section */
.value-section {
  background-color: #000;
  /* The container that hides the overflow */
  /* Each individual digit column */
}
.value-section p {
  color: #EEEEEE;
}
.value-section .text-cyan {
  background: linear-gradient(90deg, #078CE3, #00E0AA, #078CE3);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
  animation: gradient-move 5s linear infinite;
}
.value-section .feature-item {
  border-left: 3px solid #00a8ff;
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
  transition: transform 0.3s ease;
}
.value-section .feature-item:hover {
  transform: translateX(5px);
}
.value-section .feature-item p {
  margin-bottom: 0;
  line-height: 1.6;
  max-width: 290px;
}
.value-section .img-container img {
  width: 100%;
  height: 560px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .value-section .stats-container {
    padding-left: 24px;
  }
}
.value-section .stats-container .stat-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.value-section .stats-container .stat-item p {
  margin-top: 5px;
  text-transform: capitalize;
  font-size: 1rem;
  width: 100px;
}
.value-section .stats-container .stat-item.border-0 {
  border-bottom: 0;
}
.value-section .ticker-view {
  display: inline-flex;
  height: 1.2em;
  line-height: 1.2em;
  overflow: hidden;
  font-variant-numeric: tabular-nums; /* Keeps numbers aligned */
  font-size: 2rem;
}
.value-section .digit-col {
  display: flex;
  flex-direction: column;
  transition: transform 3s cubic-bezier(0.15, 0, 0.15, 1); /* Fast start, slow end */
}
.value-section .digit-col span {
  height: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767.98px) {
  .value-section .img-container {
    margin-bottom: 2rem;
  }
  .value-section .stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .value-section .stats-container .stat-item {
    border-bottom: none;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem !important;
    border-radius: 8px;
  }
}
/* for the certificate section */
.certificates-section .text-cyan {
  background: linear-gradient(90deg, #078CE3, #00E0AA, #078CE3);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
  animation: gradient-move 5s linear infinite;
}
.certificates-section .header-divider {
  width: 45px;
  height: 3px;
  background-color: #00a8ff;
  border-radius: 2px;
}
.certificates-section .cert-flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.certificates-section .cert-card {
  background-color: #f8f9fa;
  border-radius: 1rem;
  padding: 2rem 2rem;
  flex: 1 1 320px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
}
.certificates-section .cert-card:hover {
  transform: translateY(-8px);
}
.certificates-section .cert-card .cert-icon-wrapper {
  margin-bottom: 2rem;
}
.certificates-section .cert-card .cert-icon-wrapper img {
  max-width: 130px;
  height: auto;
}
.certificates-section .cert-card .cert-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0;
  text-transform: capitalize;
}

@media (max-width: 480px) {
  .cert-card {
    flex: 1 1 100%;
    aspect-ratio: auto;
    padding: 2rem 1rem;
  }
}
/* for the form section */
@media (min-width: 768px) {
  .p-md-32 {
    padding: 2rem !important;
  } /* 32px */
}
.audit-section {
  background-color: #F9F9FB;
}
.audit-section .text-cyan {
  background: linear-gradient(90deg, #078CE3, #00E0AA, #078CE3);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
  animation: gradient-move 5s linear infinite;
}
.audit-section .heading-divider {
  width: 40px;
  height: 3px;
  background-color: #00a8ff;
  border-radius: 2px;
}
.audit-section .illustration-container {
  max-width: 450px;
  opacity: 0.9;
}
@media (max-width: 500px) {
  .audit-section .illustration-container img.img-fluid {
    width: 80%;
    margin: 0px auto;
    display: block;
  }
}
.audit-section .form-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.02);
}
.audit-section .form-card .form-label {
  font-size: 0.9rem;
  font-weight: 400;
  color: #8b8b8b;
  margin-bottom: 0.4rem;
}
.audit-section .form-card .form-control, .audit-section .form-card .form-select {
  border: 1.5px solid #e0e0e0;
  padding: 0.6rem;
  border-radius: 8px;
  transition: border-color 0.2s;
}
.audit-section .form-card .form-control:focus, .audit-section .form-card .form-select:focus {
  border-color: #00bcd4;
  box-shadow: none;
}
.audit-section .btn-teal-submit {
  background: linear-gradient(135deg, #0071BB -30%, #0CAA84 100%);
  border: 1px solid rgba(255, 255, 255, 0.2117647059);
  color: #ffffff;
  font-weight: 600;
  padding: 8px 14px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  max-width: 290px;
  min-width: 290px;
}
.audit-section .btn-teal-submit:hover {
  background: linear-gradient(135deg, #0CAA84 0%, #0071BB 130%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  color: #ffffff;
}

/* for the footer */
.main-footer {
  background: linear-gradient(135deg, #01c9a7 0%, #0176bc 100%);
}
.main-footer .tracking-widest {
  letter-spacing: 0.15em;
}
.main-footer .footer-pattern-left {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}
.main-footer .footer-link {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.main-footer .footer-link:hover {
  opacity: 1;
  text-decoration: underline;
}
.main-footer .social-icons a {
  color: #fff;
  font-size: 1.4rem;
  transition: transform 0.2s ease;
  display: inline-block;
}
.main-footer .social-icons a:hover {
  transform: translateY(-3px);
}
@media (min-width: 992px) {
  .main-footer .border-start-md {
    border-left: 1px solid rgba(255, 255, 255, 0.2) !important;
  }
}
@media (max-width: 768px) {
  .main-footer .footer-pattern-left {
    display: none;
  }
}

.z-1 {
  z-index: 1;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

.btn-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0; /* Hidden by default */
  visibility: hidden; /* Prevents clicking when hidden */
  transition: transform 0.3s ease, background-color 0.3s ease;
  background: linear-gradient(90deg, #078CE3, #00E0AA); /* Using your cyan colors */
  border: none;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.btn-to-top:hover {
  transform: translateY(-5px);
  color: white;
}

.formSubmit__gradient {
  background: linear-gradient(90deg, #078CE3, #00E0AA, #078CE3);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
  animation: gradient-move 5s linear infinite;
}

.form__submit {
  max-width: 400px;
}
.form__submit .modal-content {
  border-radius: 16px;
}

.popup-divider {
  width: 80px;
  height: 4px;
  background-color: #00a8ff;
  border-radius: 2px;
}

.popupClose__btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: white;
  border: none;
}
.popupClose__btn img {
  width: 25px;
}

/* The dots container */
.dot-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 24px; /* Matches your button text height */
}

/* The individual dots */
.dot-loader div {
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  animation: dot-pulse 1.4s infinite ease-in-out both;
}

/* Staggering the animation for the "wave" effect */
.dot-loader div:nth-child(1) {
  animation-delay: -0.32s;
}

.dot-loader div:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes dot-pulse {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
.error-alert-wrapper {
  background-color: #fff5f5;
  border: 1px solid #f03e3e;
  width: 100%;
  max-width: 800px;
}
.error-alert-wrapper .error-icon-circle {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 2px solid #f03e3e;
  border-radius: 50%;
  color: #f03e3e;
  font-weight: bolder;
}
.error-alert-wrapper .error-icon-circle i {
  color: #f03e3e;
  font-size: 1.2rem;
  font-weight: bold;
}
.error-alert-wrapper .error-text {
  color: #333333;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.5;
}

label.error {
  color: #e11111;
  font-size: 13px;
}

.form-control.error, .form-select.error, textarea.form-control.error {
  border: 1px solid #ff8e8e !important;
}/*# sourceMappingURL=main.css.map */