:root {
  --primary: #002ccd;
  --bs-primary-rgb: #002ccd;
  --bs-link-hover-color: #002ccd;
  --secondary: #eef3fb;
  --tertiary: #f1f1ff;
  --black: #000;
  --color: #292930;
  --bs-body-color: #292930;
  --bs-heading-color: #292930;
  --orange: #fc921f;
  --bs-navbar-toggler-icon: url("https://d1585q1wairh36.cloudfront.net/assets/Icon/navBtn.svg");
  --white: #ffffff;
  --accordion-btn-icon-close: url("https://d1585q1wairh36.cloudfront.net/assets/Icon/Accord-close.svg");
  --accordion-btn-icon: url("https://d1585q1wairh36.cloudfront.net/assets/Icon/Accord-open.svg");
  --bs-accordion-body-padding-y: 0rem;
  --bg-70: #e8e8ff;
  --bg-50: #e4e4ff80;
  --bg-30: #e4e4ff4d;
  --bg-20: #e4e4ff33;
  --bg-10: #e4e4ff1a;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}
.bg-primary {
  background-color: var(--primary) !important;
}
.bg-secondary {
  background-color: var(--secondary) !important;
}
.bg-secondary-70 {
  background-color: var(--bg-70) !important;
}
.bg-secondary-50 {
  background-color: var(--bg-50) !important;
}
.bg-secondary-30 {
  background-color: var(--bg-30) !important;
}
.bg-secondary-20 {
  background-color: var(--bg-20) !important;
}
.bg-secondary-10 {
  background-color: var(--bg-10) !important;
}
.bg-transparent {
  background-color: transparent !important;
}
.bg-gradient {
  background: linear-gradient(180deg, #002cce 0%, #000000 100%) !important;
}
a {
  text-decoration: none;
  color: inherit;
}
.text-white {
  color: var(--white) !important;
}
.text-orange {
  color: var(--orange) !important;
}
footer {
  border-bottom: 14px solid var(--primary);
}
.bordered {
  border-radius: 20px;
  overflow: hidden;
}
.text-primary {
  color: var(--primary) !important;
}
.text-light {
  color: var(--color) !important;
}
.minParra {
  margin-inline: auto;
  text-align: center;
}
.py-6 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}
.header-logo {
  max-width: 214px;
}
.navbar {
  border: 1px solid #eaeaea;
}
.navCTA {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  border-radius: 70px;
  color: var(--white);
  padding-inline: 32px;
  padding-block: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
}

.banner {
  position: relative;
}
.blueVec {
  position: absolute;
  top: 18%;
  left: 0;
  z-index: -1;
}
.pinkVec {
  position: absolute;
  top: 18%;
  right: 0;
  z-index: -1;
}
.bannerImg {
  /* width: min(900px, 90%); */
  /* margin-inline: 20px; */
}

.trust-slide {
  margin: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.3s ease;
}

.trusted-slider-logo {
  margin: auto;
  overflow: hidden;
  position: relative;
  width: auto;
}

.trusted-slider-logo .trusted-slide-track {
  animation: trustedScroll 40s linear infinite;
  display: flex;
  width: calc(350px * 14);
}
.trusted-slider-logo .trusted-slide-track-back {
  animation: trustedScrollR 40s linear infinite;
  display: flex;
  width: calc(350px * 14);
}

.trusted-slider-logo .trust-slide {
  height: 130px;
  border: none;
}

.serviceCard {
  border-radius: 20px;
  background-color: #ffffff;
  border: 1px solid #f3f3f3;
  padding: 44px 30px;
  border-bottom: 3px solid #f3f3f3;
  height: 100%;
  transition: all 1s ease-n;
  .imgDiv {
    border-radius: 6px;
    width: 75px;
    height: 75px;
    display: flex;
    justify-content: center;
    background-color: #eaf2fe;
  }
  &:hover {
    position: relative;
    top: -4px;
    box-shadow: 0px 25px 24px 0px #c8ccdc4f;
    border-bottom: 3px solid var(--primary);
    .imgDiv {
      border-radius: 6px;
      width: 75px;
      height: 75px;
      display: flex;
      justify-content: center;
      background-color: var(--primary);
      img {
        filter: brightness(0) invert(1);
        -webkit-filter: brightness(0) invert(1);
      }
    }
    h5 {
      color: var(--primary);
    }
  }
}
.indusCard {
  /* border-radius: 20px;
  background-color: #ffffff;
  border: 1px solid #f3f3f3;
  padding: 75px 20px 20px 20px;
  height: 100%;
  position: relative;
  z-index: 99; */
  border-radius: 20px;
  background-color: #ffffff;
  border: 1px solid #f3f3f3;
  padding: 75px 20px 20px 20px;
  height: 100%;
  position: relative;
  z-index: 99;
  display: flex;
  flex-direction: column;
  .imgDiv {
    position: absolute;
    right: 1.5rem;
    top: -2rem;
    border-radius: 50%;
    width: 75px;
    height: 75px;
    display: flex;
    justify-content: center;
    background-color: #d1d8f1;
    border: 2px solid #ffffff;
  }
  .imgDiv.left {
    right: auto;
    left: 1.5rem;
    top: -2rem;
  }
  &:hover {
    .imgDiv {
      width: 75px;
      height: 75px;
      display: flex;
      justify-content: center;
      background-color: var(--primary);
      img {
        filter: brightness(0) invert(1);
        -webkit-filter: brightness(0) invert(1);
      }
    }
    h5 {
      color: var(--primary);
    }
  }
}
.cardWrapper {
  position: relative;
  height: 100%;
}

.cardWrapper::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -9px;
  width: 102px;
  height: calc(100% - 5px);
  background: #e4e4e4a1;
  opacity: 0;
  border-radius: 20px 20px 20px;
  transform: rotateZ(359deg);
}
.cardWrapper:hover::before {
  opacity: 1;
}
.accordion-item {
  border-radius: 8px;
  margin-bottom: 10px;
  border: none;
  overflow: hidden;
}
.accordion-button {
  font-weight: 700;
}
.accordion-button:not(.collapsed) {
  color: var(--white);
  background-color: var(--primary);
  box-shadow: none;
}
.accordion-collapse.collapse.show,
.accordion-collapse.collapsing {
  color: var(--white);
  background-color: var(--primary);
  box-shadow: none;
}
.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

.features-card {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background: #fff;
  border: 1px solid #edf0f4;
  overflow: hidden;
  font: 14px/1.5 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #0f172a;
}
.features-card.fbspl {
  border: 2px solid var(--primary);
  .features-card__head {
    background-color: var(--primary);
    color: white;
    justify-content: space-between;
  }
}

.features-card__head {
  padding: 12px 16px;
  font-size: 20px;
  font-weight: 600;
  background: #eef3fb;
  border: 1px solid #002cce38;
}

.features-card__list {
  list-style: none;
  margin: 0;
  padding: 0 0 9px 0;
}

.features-card__list li {
  padding: 10px 16px;
  white-space: nowrap;
  font-size: 17px;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 1px solid #f0f2f6;
}

.features-card__list li:last-child {
  border-bottom: 0;
}

.features-card__list li:hover {
  background: #f9fafb;
}

#footerForm .form-control {
  padding: 12px 16px;
  font-size: 1.2rem;
}
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: var(--primary) !important;
  outline: 0;
  box-shadow: 4px 4px 8px 0px #ffffff59 inset;
  backdrop-filter: blur(64px);
}

#footerForm label {
  font-weight: 500;
}
.formCTA {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  border-radius: 70px;
  color: var(--white);
  padding-inline: 30px;
  padding-block: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
}
.formCTA.white {
  background-color: var(--white);
  color: var(--primary);
  text-align: center;
  padding-inline: inherit;
  width: min(600px, 95%);
}
.footercall {
  border: 1px solid #002cce38;
  background-color: #eef3fb;
  border-radius: 8px;
  padding: 20px;
}
.bluImg {
  filter: brightness(0) saturate(100%) invert(16%) sepia(87%) saturate(7492%)
    hue-rotate(250deg) brightness(93%) contrast(106%);
  -webkit-filter: brightness(0) saturate(100%) invert(16%) sepia(87%)
    saturate(7492%) hue-rotate(250deg) brightness(93%) contrast(106%);
}
.arrowCTA img {
  animation: moveArrow 1s infinite ease-in-out;
}

@keyframes moveArrow {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
.rotating-btn {
  position: relative;
  width: 120px;
  height: 120px;
  background: var(--primary);
  border-radius: 50%;
  cursor: pointer;
}

.rotating-btn svg {
  animation: rotateText 10s linear infinite;
  width: 100%;
  height: 100%;
}

@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon::before {
  content: "";
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent white;
  display: block;
  margin-left: 4px;
}

.bannerSpan {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 8px 24px;
  font-size: 16px;
  height: 47px;
  overflow: hidden;
  background-color: var(--secondary);
  border: 1px solid #002cce38;
  color: #1b2f43;
  font-weight: 600;
  width: min(520px, 90%);
  margin-inline: auto;
  border-radius: 100px;
  text-align: center;
  margin-block: 15px;
}

.bannerSpan span {
  position: absolute;
  white-space: nowrap;
  opacity: 0;
  align-self: center;
  transform: translateX(100%);
  animation: rotateLines 9s infinite;
}

.bannerSpan span:nth-child(1) {
  animation-delay: 0s;
}
.bannerSpan span:nth-child(2) {
  animation-delay: 3s;
}
.bannerSpan span:nth-child(3) {
  animation-delay: 6s;
}

@keyframes rotateLines {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  5% {
    transform: translateX(0);
    opacity: 1;
  }
  30% {
    transform: translateX(0);
    opacity: 1;
  }
  35% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
}
.bannerSpan {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f5f9ff;
  border: 1px solid #dce6f5;
  min-height: 47px; /* stable height baseline */
  width: min(560px, 92vw); /* responsive max width */
  overflow: hidden; /* hide sliding text edges */
}

/* Lines */
.bannerSpan span {
  position: absolute;
  left: 50%; /* base the centering on middle */
  transform: translateX(120%); /* start off to the right */
  opacity: 0;
  width: calc(100% - 20px); /* keep inside pill padding */
  max-width: 100%;
  white-space: normal; /* allow wrapping on mobile */
  overflow-wrap: anywhere; /* break long words if needed */
  text-align: center;
  line-height: 1.25;
  animation: rotateLines 9s infinite;
}

/* Stagger */
.bannerSpan span:nth-child(1) {
  animation-delay: 0s;
}
.bannerSpan span:nth-child(2) {
  animation-delay: 3s;
}
.bannerSpan span:nth-child(3) {
  animation-delay: 6s;
}

/* Slide in (centered), hold, slide out left */
@keyframes rotateLines {
  0% {
    transform: translateX(120%);
    opacity: 0;
  }
  8% {
    transform: translateX(-50%);
    opacity: 1;
  } /* centered (left:50% + -50%) */
  35% {
    transform: translateX(-50%);
    opacity: 1;
  }
  42% {
    transform: translateX(-220%);
    opacity: 0;
  } /* exit left */
  100% {
    transform: translateX(-220%);
    opacity: 0;
  }
}
.videoSection {
  background: url("https://d1585q1wairh36.cloudfront.net/assets/LP/AB1/Video Background.png")
    center center no-repeat;
  background-color: #e4e4e4;
  height: calc(100vh - 100px);
  max-height: 900px;
  min-height: 600px;
  background-size: cover;
}
.dashboard {
  background: url("https://d1585q1wairh36.cloudfront.net/assets/LP/AB1/background.png")
    center center no-repeat;
}

.wrapBTN {
  position: absolute;
  left: 50%;
  top: 50%;
  width: fit-content;
  transform: translate(-50%, -50%);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.video-modal[hidden] {
  display: none;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1050;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.video-modal__dialog {
  position: relative;
  max-width: min(900px, 92vw);
  margin: 6vh auto 0;
  background: #000;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.video-modal__close {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  font-size: 22px;
  cursor: pointer;
  z-index: 999999;
}

#demoVideo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.bluectaCont {
  background: url("https://d1585q1wairh36.cloudfront.net/assets/LP/AB1/Mask group1.png")
    no-repeat;
  background-color: var(--primary);
  border-radius: 20px;
  text-align: center;
  color: white;
  margin-inline: auto;
  padding: 4rem 1rem;
  position: relative;
  top: -8rem;
}
.lap-top {
  position: absolute;
  top: 1rem;
  right: 4rem;
}

.lap-top {
  position: absolute;
  width: 12%;
  pointer-events: none;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
  -webkit-filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
  animation: arrowInOut 3.5s ease-in-out infinite,
    arrowWiggle 1.2s ease-in-out infinite;
  transform-origin: 85% 50%;
}

@keyframes arrowInOut {
  0% {
    opacity: 0;
    transform: translateX(40px) rotate(6deg) scale(0.98);
  }
  12% {
    opacity: 1;
    transform: translateX(0) rotate(2deg) scale(1);
  }
  70% {
    opacity: 1;
    transform: translateX(0) rotate(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateX(-28px) rotate(-4deg) scale(0.98);
  }
}

@keyframes arrowWiggle {
  0%,
  100% {
    transform: translateX(0) rotate(0);
  }
  50% {
    transform: translateX(1.5px) rotate(2deg);
  }
}
.optin-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font: 14px/1.4 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #111827;
}

.toggle-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}

.toggle-wrap input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.toggle {
  width: 36px;
  height: 20px;
  border-radius: 999px;
  background: #eef2f7;
  box-shadow: inset 0 0 0 1px #d9e0ea;
  position: relative;
  transition: background 0.2s ease;
}

.toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

.toggle-wrap input:checked + .toggle::after {
  transform: translate(16px, -50%);
}

.toggle-wrap input:checked + .toggle {
  background: #002cce38;

  box-shadow: inset 0 0 0 1px #d6e4ff;
}

.toggle-wrap input:focus-visible + .toggle {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.optin-text {
  white-space: nowrap;
}

.privacy-link {
  color: #f59e0b;
  text-decoration: none;
  font-weight: 600;
}
.privacy-link:hover {
  text-decoration: underline;
}
.software div img {
  border: 1px solid transparent;
  &:hover {
    border: 1px solid var(--primary);
  }
}
/* Mobile tweaks */
@media (max-width: 576px) {
  .bannerSpan {
    padding: 8px 12px;
  }
  .bannerSpan span {
    font-size: 14px;
  }
  .videoSection {
    height: 700px;
  }
  .indusCard {
    padding: 49px 20px 20px 20px;
  }
  .bluectaCont {
    padding: 2rem 1rem;
  }
}
@media (min-width: 1750px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1620px;
  }
}
