body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #1c1c1e;
  background: #f5f7fa;
}

#loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #ccc;
  border-top-color: #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


.hero {
  position: relative;
  background-image: url('../imgs/backgroundImg.webp');
  height: 100vh;
  background-size: cover;
  background-position: center;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* #00000080 */
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: max-content;
  padding: 4px 12px;
  border-radius: 9999px;
  background: #005EC4;
}

.breadcrumb-link {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 24px;
}

.breadcrumb-separator {
  font-size: 16px !important;
  /* opacity: 0.8; */
  color: #fff !important;
}

/* .hero-title {
  line-height: 60px;
  letter-spacing: -1.5px;
  margin-bottom: 1rem;
  color: white;
} */

/* .hero-subtitle {
  font-size: 18px;
  color: #FFFFFFCC; 
  width: 100%;
  max-width: 652px;
  margin-bottom: 1rem;
} */

.hero-btn {
  font-size: 14px;
  font-weight: 500;
  /* background: linear-gradient(to right, #005EC4, #03448B); */
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
}

.gradient-hover-effect {
  background: linear-gradient(90deg, #3f51b5, transparent) #2196f3;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s;
  place-content: center;
}

.gradient-hover-effect:hover,
.gradient-hover-effect:focus {
  background-color: #e91e63;
  color: #fff;
}

.contact-card {
  background-color: #fff;
  border-radius: 16px;
  width: 362px;
  height: 337px;
  margin: auto;
}

.contact-card h4 {
  font-size: 19px;
  font-weight: 700 !important;
  color: #000;
}

.disabled-link {
  pointer-events: none;
  cursor: default;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  margin: 0 auto;
  max-width: 100%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.section.timeline {
  /* padding: 80px 0; */
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 1px);
  width: 2px;
  background: #e0e0e0;
  z-index: 0;
}

.timeline-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  max-height: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  row-gap: 80px;
}

.content_bottom {
  margin-bottom: 100px;
}

.timeline-line {
  grid-column: 2;
  background-color: #ddd;
  width: 2px;
  height: 100%;
  margin: auto;
}

.timeline-block {
  max-width: 600px;
  text-align: center;
}

.timeline-block img {
  width: 110px;
  height: 110px;
  margin-bottom: 12px;
}

.timeline-block h3 {
  font-size: 24px;
  font-weight: 700;
  color: #005EC4;
  margin-bottom: 10px;
}

.timeline-block p {
  font-size: 18px;
  color: #000000;
  line-height: 1.5;
}

.timeline-block.left {
  grid-column: 1;
  justify-self: end;
}

.timeline-block.right {
  grid-column: 3;
  justify-self: start;
}

.left {
  grid-column: 1 / 3;
  padding-right: 80px;
}

.right {
  grid-column: 3 / 4;
  padding-left: 80px;
}

.timeline-number {
  grid-column: 2 / 3;
  width: 32px;
  height: 32px;
  background-color: #fff;
  border: 2px solid #ccc;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  font-weight: bold;
  color: #000;
  margin: auto;
  z-index: 10;
  position: absolute;
  left: 4px;
}

.one {
  top: 0;
}

.two {
  top: 25%;
}

.three {
  top: 50%;
}

.four {
  top: 75%;
}

.five {
  top: 100%;
}

.item1 {
  margin-top: -14%;
}

.item3 {
  margin-top: -6%;
}

.item2 {
  margin-top: 30%;
}

.item4 {
  margin-top: 50%;
}

.item5 {
  margin-top: -10%;
}

.features {
  padding: 4rem 0;
  background: #fff;
  text-align: center;
  margin-top: 250px;
}

.features .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
}

.features .feature-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

.features .feature-row.reverse {
  flex-direction: row-reverse;
}

.features .text {
  flex: 1;
  padding: 1rem 2rem;
  text-align: left;
}

.features img {
  flex: 1;
  max-width: 100%;
  height: auto;
  padding: 1rem 2rem;
}

.faq-container {
  max-width: 768px;
  /* height: 418px; */
  background-color: #F9FAFB;
  border: 1px solid #E3F1FF;
  border-radius: 16px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

.cta-footer {
  background: linear-gradient(to right, #005EC4, #5EABFF);
  min-height: 689px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.badge-offer {
  background-color: rgba(255, 255, 255, 0.12);
  /* translucent white */
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  padding: 8px 16px;
  border-radius: 9999px;
  /* pill shape */
  display: inline-block;
  text-align: center;
}

.cta-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: -1.2px;
  color: #FFFFFF;
}

.cta-footer h2 {
  font-size: 2.5rem;
}

.cta-footer .lead {
  font-size: 1.125rem;
}

.btn-free-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 8px 24px;
  min-height: 40px;
  min-width: 225px;

  background-color: #ffffff;
  color: #005EC4;
  font-weight: 600;
  font-size: 14px;

  border: none;
  border-radius: 8px;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.12);

  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.btn-free-footer:hover {
  background-color: #f1f8ff;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.18);
  color: #0044a3;
}

.btn-demo-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 8px 24px;
  min-height: 40px;
  min-width: 211px;

  background-color: transparent;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;

  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.btn-demo-footer:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-footer .material-symbols-outlined,
.cta-footer .material-icons {
  vertical-align: middle;
}

@media only screen and (max-width: 992px) {
  /* .hero-title{
    font-size: 40px;
  } */

  .contact-card {
    width: 100%;
  }

  .timeline::before {
    display: none;
  }

  .timeline-block.left {
    grid-column: 1;
    justify-self: end;
  }

  .timeline-block.right {
    grid-column: 1;
    justify-self: start;
  }

  .item1,
  .item2,
  .item3,
  .item4,
  .item5 {
    margin-top: 0;
  }

  .timeline-wrapper {
    max-height: max-content;
    display: flex;
    justify-content: center;
  }

  .left,
  .right {
    padding: 0 20px;
  }

  .content_bottom {
    margin-bottom: 50px;
  }

  .features {
    margin-top: 100px;
  }

}