@font-face {
  font-family: "mynerve";
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Mynerve-Regular.ttf");
}
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-display: swap;
  src: url("../fonts/PlusJakartaSans-VariableFont_wght.ttf");
}
* {
  box-sizing: border-box;
}

:root {
  /* PRIMARY COLORS */
  --primary-color: #26a2dc;
  --primary-light-color: #c2e0ed;
  --primary-dark: #0d3545;
  --primary-darker: #041c27;

  --light-blue: #f2f8fe;
  --dark-blue: #041c27;

  --white: #ffffff;
  --gray-lightest: #eeeeee;
  --gray-lighter: #cccccc;
  --gray-light: #aaaaaa;
  --gray: #666666;
  --gray-dark: #444444;
  --gary-darker: #222222;
  --black: #000000;

  --primary-color-shadow: #26a2dc33;

  /* primary-gradient */
  --primary-gradient: linear-gradient(
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  --primary-gradient-rotate: linear-gradient(
    var(--primary-dark) 0%,
    var(--primary-color) 100%
  );
  --primary-light-gradient: linear-gradient(
    -30deg,
    var(--white) 0%,
    var(--primary-light-color) 50%,
    var(--light-blue) 80%
  );
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p,
a,
.btn {
  font-family: "Plus Jakarta Sans";
  color: var(--black);
}

/* ---- HEADINGS (Desktop + Mobile merged with clamp) ---- */

/* H1: 56px desktop → 40px mobile */
h1,
.h1 {
  font-weight: 800;
  font-size: clamp(2.5rem, 2.3rem + 1vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 24px;
}

/* H2: 48px desktop → 36px mobile */
h2,
.h2 {
  font-weight: 800;
  font-size: clamp(2.25rem, 2.1rem + 0.75vw, 3rem);
  line-height: 1.2;
}

/* H3: 40px desktop → 32px mobile */
h3,
.h3 {
  font-weight: 800;
  font-size: clamp(2rem, 1.9rem + 0.5vw, 2.5rem);
  line-height: 1.2;
}

/* H4: 32px desktop → 24px mobile */
h4,
.h4 {
  font-weight: 700;
  font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
  line-height: 1.3;
}

/* H5: 24px desktop → 20px mobile */
h5,
.h5 {
  font-weight: 700;
  font-size: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
  line-height: 1.4;
}

/* H6: 20px desktop → 18px mobile */
h6,
.h6 {
  font-weight: 500;
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  line-height: 1.5;
}

/* ---------- BODY TEXT ---------- */

/* Large: 20px → 18px */
.text-large {
  font-size: clamp(18px, 1.8vw, 20px);
  line-height: 1.5;
  font-weight: 400;
}

/* Medium: 18px → 16px */
.text-medium {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.5;
  font-weight: 400;
}

/* Regular: 16px → 15px */
.text-regular {
  font-size: clamp(15px, 1.2vw, 16px);
  line-height: 1.5;
  font-weight: 400;
}

/* Small: 14px → 13px */
.text-small {
  font-size: clamp(13px, 1vw, 14px);
  line-height: 1.5;
  font-weight: 400;
}

/* Tiny: 12px → 11px */
.text-tiny {
  font-size: clamp(11px, 0.9vw, 12px);
  line-height: 1.5;
  font-weight: 400;
}

/* CTA links */
a {
  text-decoration: none;
  color: var(--black);
  &:hover {
    color: var(--primary-color);
  }
}
.btn-primary {
  position: relative;
  z-index: 0; /* creates stacking context */
  font-size: clamp(15px, 1.2vw, 16px);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 25px;
  color: var(--white) !important;
  border: none;
  display: inline-block;
  width: max-content;
  overflow: hidden;
  background: var(--primary-gradient);

  /* Hover gradient layer (behind text) */
  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--primary-gradient-rotate);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: -1;
  }

  &:hover::before,
  &:active::before,
  &:focus::before {
    opacity: 1;
  }

  &.btn-arrow {
    padding-right: 50px;

    &::after {
      position: absolute;
      content: "\279C";
      right: 24px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 1; /* arrow above everything */
      transition: all 0.5s ease-in-out;
    }
    &:hover {
      &::after {
        right: 18px;
      }
    }
  }
}

.btn-secondary {
  font-size: clamp(15px, 1.2vw, 16px);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 25px;
  color: var(--black) !important;
  border: 1px solid var(--gray-lighter);
  display: inline-block;
  width: max-content;
  background: transparent;
  transition: all 0.2s ease-in-out;
  &:hover,
  &:active,
  &:focus {
    background: var(--primary-light-color);
    color: var(--primary-color) !important;
    border-color: var(--primary-color);
  }
  &.btn-arrow {
    position: relative;
    padding-right: 50px;
    &::after {
      position: absolute;
      content: "\279C";
      right: 24px;
      top: 50%;
      transform: translatey(-50%);
      transition: all 0.5s ease-in-out;
    }
    &:hover {
      &::after {
        right: 18px;
      }
    }
  }
}

.dark-bg {
  h2,
  p,
  .h4 {
    color: var(--white);
  }
  &.btn-primary {
    background: var(--white);
    color: var(--black) !important;
    &:hover,
    &:active,
    &:focus {
      background: var(--primary-light-color);
      color: var(--primary-color) !important;
      border-color: transparent;
    }
    &::before {
      display: none;
    }
  }
  &.btn-secondary {
    color: var(--white) !important;
    border-color: var(--white);
    &:hover,
    &:active,
    &:focus {
      color: var(--primary-color) !important;
      border-color: var(--primary-color);
      background: transparent;
    }
  }
}

@media (max-width: 767px) {
  .btn-primary,
  .btn-secondary {
    padding: 8px 20px;
  }
}
.section-title {
  text-align: center;
  padding-bottom: 30px;
  h2 {
    margin-bottom: 24px;
  }
}
section {
  padding: 64px 0;
}
/* navigation */

.revampNavbar {
  background-color: var(--white);
}
.menuItem > li {
  height: 70px;
  padding: 0 8px;
  font-size: 15px;
  color: var(--black);
  font-weight: 600;
  display: flex;
  align-items: center;
  position: static;
  transition: color 0.3s cubic-bezier(0.5, 0, 0.5, 1);
}
.menuItem > li a {
  color: var(--black);
  font-weight: 600;
  text-decoration: none;
}
.menuItem li span::after,
.topmenulink::after,
.menuItem .dropdown-menu li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  display: block;
  margin-top: -2px;
  right: 0;
  background: var(--primary-color);
  transition: width 0.2s;
  -webkit-transition: width 0.2s ease;
}
.menuItem .dropdown-menu .dropdowncenter li a:hover::after,
.topmenulink:hover::after,
.menuItem li:hover span::after,
.menuItem .dropdown-menu .subMenuGroupList li a:hover::after {
  width: 100%;
  left: 0;
  background: var(--primary-color);
}
.dropdown .dropdown-menu {
  position: absolute !important;
  padding: 0 !important;
  top: 70px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  border: none !important;
  width: 100%;
  max-width: 800px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.menuItem .dropdown-menu li a {
  position: relative;
  font-size: 14px;
  color: var(--black);
  line-height: 25px;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdownSection.dropdownRight a .solutionPlaystore img {
  max-width: 50%;
  height: auto;
  padding-top: 1rem;
  display: flex;
  margin: 0 auto;
}
.dropdownLeft::before {
  content: "";
  height: 100%;
  width: 33.33333333%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--primary-dark);
  z-index: -1;
}
.subMenudropdownRow .dropdowncenter {
  padding: 2rem 20px;
}
.dropdownLeft.subMenudropdown .subMenu {
  max-width: 1340px;
  transform: translate3d(0, 0%, 0);
  overflow: visible;
  padding: 20px 0;
  transition: none;
}
.dropdownLeft.subMenudropdown .subMenu .solutionImage {
  max-width: 250px;
  margin-left: 25px;
}
.dropdownLeft.subMenudropdown .subMenu .nav-macro-menulist {
  max-width: 26.39%;
  margin: 0 0;
  padding: 0 0 0 10px;
  width: 100%;
}
.dropdownLeft.subMenudropdown
  .subMenu
  .nav-macro-menulist.active
  .nav-macro-name.active {
  border-radius: 6px 0 0 6px;
  background: #fff;
  color: var(--black);
}
.dropdownLeft.subMenudropdown .subMenu .nav-macro-menulist .nav-macro-name a {
  pointer-events: auto;
  display: inline-block;
  width: 100%;
  color: var(--white);
  font-size: 14px;
  padding: 10px 25px;
  text-transform: uppercase;
  transition: opacity 200ms ease-out 150ms;
  font-weight: 500;
}
.dropdownLeft.subMenudropdown .subMenu .nav-macro-menulist .nav-micro-menu {
  display: none;
  height: 100%;
  overflow-y: auto;
  position: absolute;
  left: 25%;
  max-width: 100%;
  top: 0;
  min-width: 620px;
  background: var(--white);
  transition: none;
  padding-top: 15px;
  padding-left: 15px;
  width: 75%;
}
.dropdownLeft.subMenudropdown
  .subMenu
  .nav-macro-menulist.active
  .nav-micro-menu.active {
  display: flex;
}
.dropdownLeft.subMenudropdown
  .subMenu
  .nav-macro-menulist.active
  .nav-micro-menu
  .subMenuGroupList {
  white-space: normal;
}
.dropdownLeft.subMenudropdown .subMenu li {
  color: var(--black);
  width: max-content;
}
.dropdownLeft.subMenudropdown .subMenu li i {
  padding-right: 8px;
  font-size: 16px;
}
.dropdownLeft.subMenudropdown
  .subMenu
  .nav-macro-menulist.active
  .nav-macro-name.active
  a,
.dropdownLeft.subMenudropdown .subMenu li:hover,
.topmenulink:hover,
.menuItem .dropdown-menu .dropdowncenter li a:hover,
.menuItem > li:hover span,
.nav-micro-menu .subMenuGroupList li a:hover {
  color: var(--primary-dark);
}
.dropdownLeft.subMenudropdown .subMenu .nav-macro-menulist.active {
  background: #fff0;
}
#header.header-scrolled,
#header.header-inner-pages {
  background: rgb(40 58 90 / 0.9);
}
.headerbar {
  background-color: var(--white);
  padding: 30px 70px;
  box-shadow: 0 0 5px 1px var(--shadow);
}
.navbarContainer {
  padding: 5px 0px;
}
.logo-nav {
  height: 45px;
}
.sidebar-navigation {
  position: absolute;
  width: 100%;
  left: -100%;
  top: 55px;
  height: 100vh;
  background-color: var(--white);
  transition: all 0.2s ease-in-out;
  overflow: auto;
}
.sidebar-navigation.active {
  left: 0;
  transition: all 0.2s ease-in-out;
}
.sidebar-navigation > ul > li > a {
  text-transform: unset;
}
.sidebar-navigation ul {
  margin: 0;
  padding: 0;
}
.sidebar-navigation ul li {
  display: block;
}
.sidebar-navigation ul li a {
  position: relative;
  display: block;
  font-size: 14px;
  font-weight: 600;
  padding: 7px 5px;
  text-decoration: none;
  color: var(--black);
  letter-spacing: 0.02em;
  border-bottom: 1px solid #eee;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.sidebar-navigation ul li a em {
  font-size: 14px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  padding: 5px;
  border-radius: 50%;
}
.sidebar-navigation ul li:hover > a,
.sidebar-navigation ul li.selected > a {
  background-color: var(--white);
  color: var(--primary-color);
  border-color: rgb(255 255 255 / 0.1);
}
.sidebar-navigation ul li ul {
  display: none;
}
.sidebar-navigation ul li ul.open {
  display: block;
}
.sidebar-navigation ul li ul li a {
  color: var(--black);
  border-color: rgb(255 255 255 / 0.1);
}
.sidebar-navigation ul li ul li:hover > a,
.sidebar-navigation ul li ul li.selected > a {
  background-color: var(--white);
}
.sidebar-navigation ul li ul li:hover > a:before,
.sidebar-navigation ul li ul li.selected > a:before {
  margin-right: 10px;
}
.sidebar-navigation ul li ul li.selected.selected--last > a {
  background-color: var(--primary-color);
  color: var(--white);
}
.sidebar-navigation ul li ul li.selected.selected--last > a:before {
  background-color: var(--white);
}
.subMenuColor1,
.subMenuColor2 {
  background-color: var(--primary-bg-light);
}
.mobile-menu .btn:focus,
.mobile-menu .btn:active {
  outline: none !important;
  border: none;
}
a.btn.close .fa-bars::before {
  content: "\f00d";
}
@media (min-width: 1366px) and (max-width: 1400px) {
  .menuItem > li {
    font-size: 14px;
    padding: 0 6px;
  }
  .header-stripe .hline {
    background-image: url(../images/Independence-strip2024.html) !important;
    background-size: cover !important;
    width: 100%;
    background-color: #fff;
    background-position: center;
    font-size: 13px;
    line-height: 2;
  }
  .logo-nav {
    height: 38px;
  }
}

@media (max-width: 1024px) {
  .logo-nav {
    height: 40px;
  }
  .menuItem > li {
    padding: 0 6px;
    height: 60px;
    font-size: 12px;
  }
  .dropdown .dropdown-menu {
    top: 60px !important;
  }
  .sidebar-navigation {
    top: 63px;
  }
}
@media (max-width: 991px) {
  .menuItem,
  .menu-cta {
    display: none !important;
  }
  .navbarContainer {
    padding: 10px 0px;
  }
}
@media (min-width: 1000px) and (max-width: 1199px) {
  .header-lp {
    .menuItem > li {
      padding: 0 6px;
      height: 60px;
      font-size: 12px;
    }
  }
}
@media (max-width: 1199px) and (min-width: 1000px) {
  .menuItem > li {
    padding: 0 6px;
    height: 60px;
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  section {
    padding: 48px 0;
  }
}
@media (max-width: 767px) {
  .sidebar-navigation {
    top: 65px;
  }
  section {
    padding: 32px 0;
  }
}
@media (max-width: 480px) {
  section {
    padding: 24px 0;
  }
}
@media (max-width: 420px) {
  .logo-nav {
    height: 30px;
  }
  .revampNavbar {
    .navbarContainer {
      .btn-primary {
        padding: 10px;
        font-size: 12px;
      }
    }
  }
  .sidebar-navigation {
    top: 58px;
  }
}

/* cookie */

#cookie {
  position: fixed;
  bottom: 15px;
  z-index: 999;
  left: 50%;
  transform: translateX(-50%);
  .position-relative {
    background-color: var(--primary-color);
  }
}
#cookies-btn {
  position: absolute;
  right: -7px;
  top: -7px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  height: 21px;
  width: 21px;
  text-align: center;
  border: 2px solid var(--white);
  line-height: 17px;
}
#cookies-btn i {
  font-size: 13px;
}
@media (min-width: 1600px) {
  #cookies-btn {
    position: absolute;
    right: -7px;
    top: -9px;
    background-color: var(--primary-dark);
    color: var(--white);
    border-radius: 50%;
    height: 25px;
    width: 25px;
    text-align: center;
    border: 2px solid var(--white);
    line-height: 17px;
  }
}
@media (max-width: 992px) {
  #cookie {
    left: 11%;
    width: 78%;
    transform: translateX(0%);
  }
}
@media (max-width: 767px) {
  #cookie {
    left: 3%;
    width: 94%;
    transform: translateX(0%);
  }
}
/* footer */

#footer {
  background: linear-gradient(
    30deg,
    var(--primary-light-color) 0%,
    var(--light-blue) 30%,
    var(--light-blue) 50%,
    var(--primary-light-color) 80%,
    var(--light-blue) 100%
  );
  overflow: hidden;
  position: relative;
  .container {
    position: relative;
    z-index: 2;
  }
}
.footer-shape {
  padding: 45px 0px;
}

.footer-top .footer-links {
  margin-bottom: 30px;
  &:first-child {
    ul {
      width: 110%;
    }
  }
  &:nth-child(2) {
    ul {
      width: 90%;
      margin-left: 10%;
    }
  }
}
.footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--primary-dark);
  font-size: 10px;
  line-height: 1;
  margin-right: 5px;
}
.footer-top .footer-links ul h5 {
  margin-bottom: 24px;
}
.footer-top .footer-links ul li {
  padding-bottom: 15px;
  display: flex;
  align-items: center;
}
.footer-top .footer-links ul a {
  color: var(--gray);
  transition: 0.3s;
  font-size: clamp(15px, 1.2vw, 16px);
  display: inline-block;
}
.footer-top .footer-links ul a:hover {
  color: var(--black);
}
.footer-top .social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.footer-top .social-links a {
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-color);
  color: var(--white);
  line-height: 1;
  padding: 6px 0;
  border-radius: 50px;
  text-align: center;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}
.footer-top .social-links a:hover {
  background: var(--primary-dark);
  color: var(--white);
  text-decoration: none;
}
.footer-top .social-links a:hover svg {
  fill: #fff !important;
}
.border-right {
  border-right: 1px solid var(--black);
}
.play-store {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0px;
  gap: 20px;
  a {
    width: 100%;
    text-align: center;
  }
}
.footer-menubar .position-absolute {
  bottom: 10%;
  left: 30%;
}
.footer-contact {
  img {
    max-width: 180px;
  }
}
.certificate img {
  height: 70px;
}
.footer-bottom {
  padding: 20px 40px 20px 40px;
  border-top: 1px solid var(--primary-dark);
}
.footer-bottom a {
  color: var(--gray);
}
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 5px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 18px;
  color: var(--white);
  line-height: 0;
}
.back-to-top:hover {
  background: var(--primary-color);
  color: var(--white);
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1365px) {
  .menuItem > li {
    font-size: 12px;
    padding: 0 6px;
  }
  .footer-top .social-links a {
    margin-right: 0;
  }
}

@media (max-width: 1200px) {
  .footer-top .social-links {
    gap: 5px;
  }
}

@media (max-width: 991px) {
  .footer-top .social-links {
    gap: 12px;
  }
  .footer-shape {
    padding: 45px 0px 32px;
  }
  .play-store {
    flex-wrap: nowrap;
    margin: 16px 0px 0px;
  }
  .footer-bottom {
    padding: 20px 12px 65px;
  }
  .footer-top .footer-links ul h5 {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .footer-shape {
    padding: 25px 0px;
  }
  .play-store {
    flex-wrap: wrap;
    gap: 16px;
    a {
      text-align: start;
    }
  }
  .footer-top .footer-links {
    margin-bottom: 10px;
  }
  .footer-bottom {
    padding: 20px 12px 35px;
  }
  .footer-top .footer-links ul li {
    padding-bottom: 5px;
  }
  .footer-top .footer-links ul h5 {
    margin-bottom: 10px;
  }
}
/* coming soon page */
.coming-soon-main {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 10px 0px;
  .wrapper {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    .logo {
      max-width: 270px;
      img {
        width: 100%;
      }
    }
    .title {
      text-align: center;
      h1 {
        font-size: 120px;
        font-weight: 500;
        font-family: "Plus Jakarta Sans";
        margin: 12px 0px 15px;
        position: relative;
        color: #000000;
        span {
          font-size: 44px;
          font-weight: 400;
          font-family: "mynerve";
          position: absolute;
          bottom: -20px;
          right: -5%;
        }
        &::before {
          content: "";
          position: absolute;
          height: 35px;
          width: 35px;
          background-image: url("../images/eye.png");
          background-position: center;
          background-repeat: no-repeat;
          background-size: contain;
          right: 21%;
          top: 50%;
        }
        &::after {
          content: "";
          position: absolute;
          height: 35px;
          width: 35px;
          background-image: url("../images/eye.png");
          background-position: center;
          background-repeat: no-repeat;
          background-size: contain;
          right: 13%;
          top: 50%;
        }
      }
      p {
        font-size: 25px;
        font-weight: 400;
        font-family: "Plus Jakarta Sans", sans-serif;
        color: #3f454c;
        margin: 15px 0px 30px;
      }
    }
    form {
      width: 60%;
      .email {
        padding: 15px 50px 15px 30px;
        border: 0px;
        border-radius: 30px;
        box-shadow: 0px 5px 2px -2px #00000030;
        margin-right: 22px;
        width: 60%;
        font-size: 18px;
        font-weight: 400;
      }
      button {
        background-color: #41464a;
        color: #ffffff;
        padding: 15px 50px;
        font-size: 16px;
        font-weight: 500;
        border: 0px;
        border-radius: 40px;
        box-shadow: 0px 5px 2px -2px #00000030;
        cursor: pointer;
        transition: all 0.5s;
        &:hover {
          background-color: #000000;
        }
      }
    }
  }
}
.fix-image {
  width: 100%;
  position: fixed;
  bottom: 0px;
  z-index: -1;
}
.image-mobile {
  display: none;
}
/* media query */
@media (max-width: 1150px) {
  .coming-soon-main {
    .wrapper {
      .title {
        h1 {
          font-size: 90px;
          span {
            bottom: -30px;
            right: 5%;
          }
          &::before {
            height: 28px;
            width: 28px;
            right: 28.2%;
            top: 48%;
          }
          &::after {
            height: 28px;
            width: 28px;
            right: 22.4%;
            top: 48%;
          }
        }
        p {
          font-size: 20px;
        }
      }
      form {
        button {
          font-size: 14px;
        }
      }
    }
  }
}

@media (max-width: 991px) {
  .coming-soon-main {
    .wrapper {
      max-width: 700px;
      .title {
        h1 {
          font-size: 80px;
          span {
            right: -3%;
            font-size: 30px;
            bottom: -15px;
          }
          &::before {
            height: 25px;
            width: 25px;
            right: 22.4%;
          }
          &::after {
            height: 25px;
            width: 25px;
            right: 15%;
          }
        }
        p {
          font-size: 18px;
        }
      }
      form {
        width: 70%;
        .email {
          font-size: 13px;
        }
      }
    }
  }
}

@media (max-width: 767px) {
  .coming-soon-main {
    .wrapper {
      max-width: 480px;
      .logo {
        max-width: 150px;
      }
      .title {
        h1 {
          font-size: 50px;
          span {
            right: 5%;
            font-size: 25px;
            bottom: -20px;
          }
          &::before {
            height: 15px;
            width: 15px;
            right: 24.8%;
            top: 50%;
          }
          &::after {
            height: 15px;
            width: 15px;
            right: 18.1%;
            top: 50%;
          }
        }
        p {
          font-size: 16px;
        }
      }
      form {
        width: 90%;
        .email {
          padding: 15px 30px 15px 20px;
        }
        button {
          padding: 15px 30px;
        }
      }
    }
  }
}

@media (max-width: 500px) {
  .coming-soon-main {
    .wrapper {
      max-width: 300px;
      .logo {
        max-width: 120px;
      }
      .title {
        h1 {
          font-size: 30px;
          span {
            font-size: 15px;
            bottom: -15px;
          }
          &::before {
            height: 8px;
            width: 8px;
            right: 26%;
          }
          &::after {
            height: 8px;
            width: 8px;
            right: 19.5%;
          }
        }
        p {
          font-size: 13px;
        }
      }
      form {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;

        .email {
          padding: 10px 20px 10px 10px;
          margin-right: 0px;
          width: 100%;
        }
        button {
          padding: 10px 20px;
          font-size: 12px;
          width: max-content;
        }
      }
    }
  }
  .image-desktop {
    display: none;
  }
  .image-mobile {
    display: block;
  }
}

@media (min-height: 800px) {
  .coming-soon-main {
    padding-top: 100px;
  }
}
/* coming soon page */

/* home page */
/* banner */
.banner-main {
  padding: 90px 0px;
  background-color: var(--light-blue);
  overflow: hidden;
  position: relative;
  .banner-main-wrapper {
    padding: 90px 5px;
  }
  .banner-slider {
    position: relative;
    z-index: 2;
  }
  .banner-text {
    h1,
    .h1 {
      span {
        color: var(--primary-color);
      }
    }
    .banner-cta {
      margin-top: 50px;
      display: flex;
      gap: 16px;
    }
  }
  .slick-dots {
    bottom: 15px;
    position: absolute;
    left: 50%;
    display: flex !important;
    transform: translatex(-50%);
    margin: 0px;
    padding: 0px;
  }
  /* Hide numbers and show clean dots */
  .slick-dots li {
    list-style-type: none;
    button {
      font-size: 0px;
      border: none;
      background: none;
      &:before {
        font-family: "slick";
        font-size: 30px;
        line-height: 20px;
        color: var(--gray-lightest);
        opacity: 1;
        content: "•"; /* Dot symbol */
      }
    }
  }
  .slick-dots li.slick-active button:before {
    color: var(--primary-color);
  }
}

/* airplane animation */
.airplane-animation-image {
  position: absolute;
  top: 50px;
  width: 450px;
  z-index: 1;
  animation-duration: 40s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

/* 1: Right-top → Left-top */
@keyframes move_rtop_ltop {
  from {
    transform: translate(calc(100vw + 150px), 0vh) rotate(-10deg);
  }
  to {
    transform: translate(-800px, 80vh);
  }
}

/* 2: Left-top → Right-bottom */
@keyframes move_ltop_rbottom {
  from {
    transform: translate(-400px, 0vh) rotateY(180deg);
  }
  to {
    transform: translate(calc(100vw + 150px), 10vh) rotateY(180deg);
  }
}

@media (max-width: 991px) {
  .banner-main {
    padding: 70px 5px;
    .banner-text {
      .banner-cta {
        margin: 20px 0px 30px;
      }
    }
  }
  .airplane-animation-image {
    max-width: 400px;
  }
}
@media (max-width: 500px) {
  .banner-main {
    padding: 30px 0px;
    .banner-text {
      .banner-cta {
        flex-wrap: wrap;
        gap: 10px;
      }
    }
  }
  .airplane-animation-image {
    max-width: 230px;
  }
}
/* Horizontal Tab Section */
.horizontal-tab-main {
  .buildBusinessSection {
    ul {
      display: grid;
      grid-template-columns: auto auto auto auto;
      gap: 25px;
      border: none;
      li {
        .nav-link {
          border: 1px solid var(--gray-lighter);
          border-radius: 12px;
          padding: 16px;
          height: 100%;
          width: 100%;
          color: var(--black);
          &.active,
          &:hover,
          &:focus {
            background: var(--primary-gradient);
            color: var(--white);
          }
        }
      }
    }
  }
  .tab-content {
    .text-wrapper {
      padding: 50px;
      border-radius: 20px;
      border: 1px solid var(--gray-lighter);
      height: 100%;
      display: flex;
      align-items: center;
      h4 {
        margin-bottom: 12px;
      }
      a {
        margin-top: 24px;
      }
    }
    .buildBusinessImg {
      background: radial-gradient(
        circle,
        var(--primary-dark) 30%,
        var(--primary-darker) 100%
      );
      position: relative;
      height: 500px;
      border-radius: 10px;
      img {
        position: absolute;
        bottom: 0px;
        right: 0px;
        border-radius: 10px 0px;
        padding: 10px 0px 0px 10px;
        background: linear-gradient(
          -60deg,
          var(--gray-light) 30%,
          var(--white) 90%
        );
        max-width: 80%;
      }
    }
  }
}
@media (max-width: 1399px) {
  .horizontal-tab-main {
    .tab-content {
      .buildBusinessImg {
        height: 450px;
      }
    }
  }
}

@media (max-width: 991px) {
  .horizontal-tab-main {
    .buildBusinessSection {
      ul {
        gap: 20px;
        li {
          .nav-link {
            padding: 15px 10px;
          }
        }
      }
    }
    .tab-content {
      .text-wrapper {
        padding: 30px;
        a {
          margin-top: 10px;
        }
      }
    }
  }
}
@media (max-width: 767px) {
  .horizontal-tab-main {
    .buildBusinessSection {
      ul {
        display: flex;
        flex-wrap: nowrap;
        overflow-y: scroll;
        li {
          .h6 {
            text-wrap-mode: nowrap;
          }
        }
      }
    }
    .tab-content {
      .text-wrapper {
        margin-top: 20px;
      }
      .buildBusinessImg {
        img {
          max-width: 75%;
        }
      }
    }
  }
}
@media (max-width: 500px) {
  .horizontal-tab-main {
    .buildBusinessSection {
      ul {
        gap: 10px;
        li {
          .nav-link {
            padding: 8px;
            font-size: 16px;
          }
        }
      }
    }
  }
}
@media (max-width: 450px) {
  .horizontal-tab-main {
    .tab-content {
      .buildBusinessImg {
        height: 400px;
      }
    }
  }
}
@media (max-width: 400px) {
  .horizontal-tab-main {
    .tab-content {
      .buildBusinessImg {
        height: 300px;
      }
    }
  }
}
/* Vertical Tab Section */
.vertical-tab-main {
  position: relative;
  overflow: hidden;
  .buildBusinessSection {
    ul {
      border: none;
      gap: 20px;
      overflow-y: scroll;
      max-height: 800px;
      &::-webkit-scrollbar {
        display: none;
      }
      li {
        width: 100%;
        .nav-link {
          border: 1px solid var(--gray-lighter);
          border-radius: 10px;
          padding: 16px 20px;
          height: 100%;
          width: 100%;
          color: var(--black);
          text-align: start;
          img {
            margin-right: 24px;
            border: 1px solid var(--gray-lighter);
            border-radius: 10px;
          }
          &.active,
          &:hover,
          &:focus {
            background: var(--primary-gradient);
            color: var(--white);
          }
        }
      }
    }
    position: relative;
    i {
      font-size: 20px;
      position: absolute;
      cursor: pointer;
      background: var(--primary-gradient);
      padding: 10px 20px;
      color: var(--white);
      &:first-child {
        top: -50px;
        left: 50%;
        transform: translateX(-50%);
      }
      &:last-child {
        bottom: -30px;
        left: 50%;
        transform: rotate(180deg);
      }
    }
  }
  .tab-content {
    .buildBusinessImg {
      img {
        width: 100%;
      }
    }
    .buildBusinessDetail {
      border: 1px solid var(--gray-lighter);
      border-radius: 20px;
      padding: 24px;
      margin-top: 40px;
      a {
        margin: 10px 0px 50px;
      }
    }
  }
  .accordion {
    .accordion-header {
      .accordion-button {
        &:not(.collapsed) {
          background: var(--primary-gradient);
          color: var(--white);
          &::after {
            filter: brightness(17);
          }
        }
        img {
          margin-right: 10px;
          border: 1px solid var(--gray-lighter);
          border-radius: 10px;
        }
        &::after {
          color: var(--primary-gradient);
        }
        &:focus {
          box-shadow: none;
        }
      }
    }
  }
}
@media (max-width: 1400px) {
  .vertical-tab-main {
    .buildBusinessSection {
      i {
        &:last-child {
          bottom: -50px;
        }
      }
    }
  }
}
/* Vertical Mobile Tab Section */
.vertical-mobile-tab-main {
  .logo-wrapper {
    max-width: 150px;
    margin-top: 50px;
  }
  .buildBusinessSection {
    position: relative;
    &::after {
      content: "";
      position: absolute;
      height: 1px;
      width: 22%;
      background: var(--gray-lighter);
      top: 54%;
      left: -18%;
    }
    &::before {
      content: "";
      position: absolute;
      height: 80%;
      width: 20%;
      border: 1px solid var(--gray-lighter);
      border-right: none;
      top: 10%;
      left: -26px;
      z-index: -1;
    }
    ul {
      border: none;
      gap: 60px;
      li {
        width: 100%;
        .nav-link {
          border: 1px solid var(--gray-lighter);
          border-radius: 10px;
          padding: 24px;
          height: 100%;
          width: 90%;
          color: var(--black);
          background: var(--white);
          &.active,
          &:hover,
          &:focus {
            background: var(--primary-gradient);
            color: var(--white);
            p {
              color: var(--white);
            }
          }
          p {
            margin-top: 12px;
            margin-bottom: 0px;
          }
        }
      }
    }
  }
}
@media (max-width: 1399px) {
  .vertical-mobile-tab-main {
    .buildBusinessSection {
      &::after {
        width: 30%;
        left: -39%;
      }
    }
  }
}
@media (max-width: 1199px) {
  .vertical-mobile-tab-main {
    .buildBusinessSection {
      &::after {
        width: 16%;
        left: -24%;
      }
    }
  }
}
@media (max-width: 991px) {
  .vertical-mobile-tab-main {
    .logo-wrapper {
      margin: 0px auto 70px;
    }
    .buildBusinessSection {
      ul {
        flex-wrap: nowrap;
        gap: 20px;
        li {
          .nav-link {
            width: 100%;
          }
        }
      }
      &::before {
        height: 30%;
        width: 70%;
        border-bottom: none;
        border-right: 1px solid var(--gray-lighter);
        top: -15%;
        left: 15%;
      }
      &::after {
        height: 20%;
        width: 1px;
        top: -35%;
        left: 50%;
        transform: translateX(-50%);
      }
    }
    .tab-content {
      .tab-pane {
        text-align: center;
        margin-top: 20px;
      }
    }
  }
}
@media (max-width: 767px) {
  .vertical-mobile-tab-main {
    .logo-wrapper {
      margin-bottom: 50px;
    }
    .buildBusinessSection {
      ul {
        li {
          .nav-link {
            padding: 15px;
          }
        }
      }
      &::after {
        height: 12%;
        top: -22%;
      }
      &::before {
        top: -10%;
      }
    }
  }
}
@media (max-width: 450px) {
  .vertical-mobile-tab-main {
    .buildBusinessSection {
      ul {
        gap: 10px;
        li {
          .nav-link {
            padding: 10px;
            &.h6 {
              font-size: 14px;
            }
            p {
              font-size: 12px;
              margin-top: 5px;
            }
          }
        }
      }
    }
  }
}
/* integration CTA Section */
.integrations-cta-main {
  .cta-wrapper {
    background: var(--primary-light-gradient);
    border: 1px solid var(--gray-lighter);
    border-radius: 25px;
    padding: 43px;
    p {
      margin: 24px 0px 32px;
    }
    .cta {
      display: flex;
      gap: 16px;
      justify-content: center;
    }
  }
}

@media (max-width: 767px) {
  .integrations-cta-main {
    .cta-wrapper {
      padding: 20px;
      border-radius: 20px;
    }
  }
}
@media (max-width: 550px) {
  .integrations-cta-main {
    .cta-wrapper {
      .col-12 {
        text-align: start;
      }
      .cta {
        flex-direction: column;
      }
      p {
        margin: 14px 0px 12px;
      }
    }
  }
}

/* Animated cards Section */
.animated-cards-main {
  .card-wrapper {
    border: 1px solid var(--gray-lighter);
    border-radius: 13px;
    padding: 24px;
    text-align: center;
    margin-bottom: 24px;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
    h6 {
      margin-top: 16px;
    }
    &:hover {
      box-shadow: 8px 8px 24px var(--primary-color-shadow);
    }
  }
}
@media (max-width: 991px) {
  .animated-cards-main {
    .card-wrapper {
      height: 280px;
    }
  }
}
@media (max-width: 767px) {
  .animated-cards-main {
    .card-wrapper {
      height: auto;
      h5 {
        font-size: 18px;
      }
    }
  }
}
@media (max-width: 500px) {
  .animated-cards-main {
    .card-wrapper {
      height: 180px;
      padding: 10px;
      img {
        width: 120px;
      }
      h5 {
        font-size: 16px;
      }
    }
  }
}
/* Timeline Section */
.timeline-main {
  overflow: hidden;
  position: relative;
  .container {
    position: relative;
    z-index: 2;
  }
  .timeline-wrapper {
    .timeline-line-wrapper {
      margin: 20px 0px;
      position: relative;
    }
  }

  .timeline-line {
    width: 100%;
    height: 4px;
    background: var(--gray-lighter);
    position: absolute;
    top: 50%;
  }

  .timeline-progress {
    width: 0%;
    height: 4px;
    background: var(--primary-color);
    position: absolute;
    top: 50%;
    transition: width 2s linear;
  }

  .timeline-step {
    width: 57px;
    height: 57px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gray-lighter);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    position: relative;
    z-index: 5;
    transition: 0.3s;
    margin: 0px;
  }

  .timeline-step.active-step {
    border-color: var(--primary-color);
    background: var(--gray-lightest);
    animation: stepGlow 1s ease-in-out 1;
  }

  .work-card {
    padding: 22px 19px;
    border-radius: 25px;
    background: var(--primary-light-gradient);
    /* opacity: 0.8; */
    transition: 0.4s;
    width: 90%;
    margin: 0 auto;
    text-align: start;
    p {
      margin: 0px;
    }
  }

  .work-card.active-card {
    opacity: 1;
    animation: blinkCard 1s ease-in-out 1;
  }
}
@keyframes stepGlow {
  0% {
    box-shadow: 0 0 5px var(--primary-dark);
  }
  50% {
    box-shadow: 0 0 15px var(--primary-color);
  }
  100% {
    box-shadow: 0 0 5px var(--primary-dark);
  }
}
@keyframes blinkCard {
  0% {
    box-shadow: 0 0 0px var(--primary-dark);
  }
  50% {
    box-shadow: 0 0 20px var(--primary-color);
  }
  100% {
    box-shadow: 0 0 0px var(--primary-dark);
  }
}

@media (max-width: 991px) {
  .timeline-main {
    .timeline-line,
    .timeline-progress {
      width: 4px !important;
      height: 100%;
      top: 0px;
    }

    .timeline-progress {
      height: 0%;
      width: 4px !important;
      transition: height 2s linear;
    }

    .timeline-step {
      margin: 40px auto;
      left: -25px;
      width: 50px;
      height: 50px;
    }

    .d-flex.justify-content-around.position-relative.mt-2 {
      flex-direction: column;
      gap: 35px;
    }

    .work-card {
      width: 100%;
      margin-bottom: 20px;
      text-align: center;
      padding: 15px;
    }

    .timeline-wrapper {
      display: flex;
      .timeline-line-wrapper {
        height: 100%;
        width: 4px;
        margin: 40px auto;
        position: relative;
        top: 10%;
        left: -4%;
      }
      .row {
        &:first-child {
          gap: 100px;
          margin-top: 180px;
        }
      }
    }
  }
}
@media (max-width: 767px) {
  .timeline-main {
    .timeline-wrapper {
      .timeline-line-wrapper {
        left: -5%;
      }
    }
    .timeline-step {
      width: 40px;
      height: 40px;
      left: -20px;
    }
    .d-flex.justify-content-around.position-relative.mt-2 {
      gap: 50px;
    }
  }
}
@media (max-width: 500px) {
  .timeline-main {
    .work-card {
      padding: 10px;
      border-radius: 10px;
      h5 {
        font-size: 13px;
      }
      p {
        font-size: 11px;
      }
    }
    .d-flex.justify-content-around.position-relative.mt-2 {
      gap: 20px;
    }
    .timeline-step {
      width: 30px;
      height: 30px;
      left: -14px;
      &.h4 {
        font-size: 15px;
      }
    }
  }
}
@media (max-width: 450px) {
  .timeline-main {
    .d-flex.justify-content-around.position-relative.mt-2 {
      gap: 40px;
    }
  }
}
@media (max-width: 400px) {
  .timeline-main {
    .d-flex.justify-content-around.position-relative.mt-2 {
      gap: 50px;
    }
  }
}
@media (max-width: 360px) {
  .timeline-main {
    .d-flex.justify-content-around.position-relative.mt-2 {
      gap: 80px;
    }
    .timeline-wrapper {
      .row {
        &:first-child {
          gap: 160px;
        }
      }
    }
  }
}
/* Client story */
.client-story-main {
  .client-story {
    position: relative;
    padding-bottom: 70px;
    .slider-wrapper {
      background: var(--primary-darker);
      border-radius: 12px;
      padding: 48px 40px;
      display: flex;
      align-items: center;
      gap: 52px;
      position: relative;
      overflow: hidden;
      .client-video {
        position: relative;
        .video-play-button {
          position: absolute;
          color: var(--white);
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          i::before {
            font-size: 100px;
          }
        }
      }
      .client-detail {
        width: 60%;
        display: flex;
        flex-direction: column;
        gap: 24px;
        .client-starts {
          background-color: #ffcc00;
          border-radius: 25px;
          padding: 10px 25px;
          width: max-content;
          color: var(--white);
        }
      }
      &::after {
        position: absolute;
        content: "";
        background: radial-gradient(
          circle,
          transparent 10%,
          var(--primary-color) 30%,
          var(--primary-color) 50%,
          transparent 70%
        );
        height: 500px;
        width: 500px;
        right: -230px;
        bottom: -230px;
        filter: blur(20px);
      }
    }
    .swiper-pagination {
      width: max-content;
      left: 0;
      bottom: 0px;
      .swiper-pagination-bullet-active {
        background: var(--primary-color);
      }
    }
    .swiper-button-next {
      position: absolute;
      top: 95%;
      right: 0;
      height: 48px;
      width: 48px;
      border-radius: 50px;
      border: 1px solid var(--black);
      color: var(--black);
      &::after {
        display: none;
      }
      &:hover {
        background-color: var(--black);
        color: var(--white);
      }
    }
    .swiper-button-prev {
      position: absolute;
      top: 95%;
      left: 91%;
      height: 48px;
      width: 48px;
      border-radius: 50px;
      border: 1px solid var(--black);
      color: var(--black);
      &::after {
        display: none;
      }
      &:hover {
        background-color: var(--black);
        color: var(--white);
      }
    }
  }
}

.video-overlay {
  position: fixed;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(0 0 0 / 0.8);
  opacity: 0;
  transition: all ease 500ms;
  width: 100%;
}
.video-overlay.open {
  position: fixed;
  z-index: 9999;
  opacity: 1;
}
.video-overlay-close {
  position: absolute;
  z-index: 1000;
  top: 15px;
  right: 20px;
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
  transition: all 200ms;
}
.video-overlay iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-shadow: 0 0 15px rgb(0 0 0 / 0.75);
}

@media (max-width: 1400px) {
  .client-story-main {
    .client-story {
      .swiper-button-prev {
        left: 90%;
      }
      .slider-wrapper {
        &::after {
          height: 400px;
          width: 400px;
          right: -200px;
          bottom: -200px;
        }
      }
    }
  }
}
@media (max-width: 1199px) {
  .client-story-main {
    .client-story {
      .swiper-button-prev {
        left: 88%;
      }
      .slider-wrapper {
        &::after {
          height: 200px;
          width: 200px;
          right: -100px;
          bottom: -100px;
          filter: blur(10px);
        }
      }
    }
  }
}
@media (max-width: 991px) {
  .client-story-main {
    .client-story {
      .swiper-button-prev,
      .swiper-button-next {
        top: 94%;
      }
      .swiper-button-prev {
        left: 84%;
      }
      .slider-wrapper {
        padding: 30px;
        gap: 20px;
        .client-detail {
          width: 80%;
          gap: 10px;
        }
        .client-detail {
          .client-starts {
            padding: 0px 20px 6px;
            i {
              font-size: 10px;
            }
          }
        }
        .client-video {
          .video-play-button {
            i::before {
              font-size: 60px;
            }
          }
        }
      }
    }
  }
  .video-overlay iframe {
    width: 80% !important;
    height: 33% !important;
  }
}

@media (max-width: 767px) {
  .client-story-main {
    .client-story {
      padding-top: 70px;
      padding-bottom: 0px;
      .swiper-pagination {
        display: none;
      }
      .swiper-button-next {
        top: 3%;
      }
      .swiper-button-prev {
        top: 3%;
        left: 79%;
      }
      .slider-wrapper {
        flex-direction: column;
        align-items: flex-start;
        .client-detail {
          width: 100%;
        }
        &::after {
          height: 200px;
          width: 200px;
          right: -100px;
          bottom: -100px;
          filter: blur(10px);
        }
      }
    }
  }
  .video-overlay iframe {
    height: 22% !important;
  }
}
@media (max-width: 550px) {
  .client-story-main {
    .client-story {
      .slider-wrapper {
        padding: 20px;
        border-radius: 0px;
      }
      .swiper-button-prev {
        left: 76%;
      }
    }
  }
}
@media (max-width: 450px) {
  .client-story-main {
    .client-story {
      .swiper-button-next {
        width: 40px;
        height: 40px;
      }
      .swiper-button-prev {
        width: 40px;
        height: 40px;
      }
      .slider-wrapper {
        flex-direction: column;
        align-items: flex-start;
        .client-detail {
          width: 100%;
        }
        &::after {
          height: 150px;
          width: 150px;
          right: -80px;
          bottom: -80px;
          filter: blur(5px);
          background: radial-gradient(
            circle,
            transparent 10%,
            var(--primary-color) 40%,
            transparent 70%
          );
        }
      }
    }
  }
}
@media (max-width: 380px) {
  .client-story-main {
    .client-story {
      .swiper-button-prev {
        left: 72%;
      }
    }
  }
}
@media (max-width: 350px) {
  .client-story-main {
    .client-story {
      .swiper-button-prev {
        left: 68%;
      }
    }
  }
}
/* Success CTA Section */
.success-cta-main {
  .cta-wrapper {
    /* background: url("../images/success-cta-bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    background: linear-gradient(
      30deg,
      var(--primary-light-color) 0%,
      var(--light-blue) 30%,
      var(--light-blue) 50%,
      var(--primary-light-color) 80%,
      var(--light-blue) 100%
    );
    border: 1px solid var(--gray-lighter);
    padding: 53px 0px;
    border-radius: 20px;
    p {
      margin: 24px 0px 32px;
    }
    .cta {
      display: flex;
      gap: 16px;
      justify-content: center;
    }
  }
}
@media (max-width: 767px) {
  .success-cta-main {
    .cta-wrapper {
      padding: 20px;
      border-radius: 20px;
    }
  }
}
@media (max-width: 550px) {
  .success-cta-main {
    .cta-wrapper {
      .col-12 {
        text-align: start;
      }
      .cta {
        flex-direction: column;
      }
      p {
        margin: 14px 0px 12px;
      }
    }
  }
}

/* Animated small cards Section */
.animated-small-cards-main {
  .cards-wrapper {
    display: flex;
    gap: 32px;
    .card-wrapper {
      border: 1px solid var(--gray-lighter);
      border-radius: 13px;
      padding: 24px;
      align-items: center;
      display: flex;
      flex-direction: column;
      justify-content: space-evenly;
      text-align: center;
      width: 20%;
    }
  }
}
@media (max-width: 991px) {
  .animated-small-cards-main {
    .cards-wrapper {
      flex-wrap: wrap;
      justify-content: center;
      .card-wrapper {
        width: 30%;
      }
    }
  }
}
@media (max-width: 767px) {
  .animated-small-cards-main {
    .cards-wrapper {
      .card-wrapper {
        width: 45%;
        h5 {
          font-size: 18px;
        }
      }
    }
  }
}
@media (max-width: 450px) {
  .animated-small-cards-main {
    .cards-wrapper {
      gap: 14px;
      .card-wrapper {
        padding: 15px;
        img {
          width: 120px;
        }
        h5 {
          font-size: 15px;
        }
      }
    }
  }
}

/* Business CTA Section */
.business-cta-main {
  .cta-wrapper {
    background: url("../images/cta-bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 53px 0px;
    border-radius: 20px;
    p {
      margin: 24px 0px 32px;
    }
    .cta {
      display: flex;
      gap: 16px;
      justify-content: center;
    }
  }
}
@media (max-width: 767px) {
  .business-cta-main {
    .cta-wrapper {
      padding: 20px;
      border-radius: 20px;
    }
  }
}
@media (max-width: 550px) {
  .business-cta-main {
    .cta-wrapper {
      .col-12 {
        text-align: start;
      }
      .cta {
        flex-direction: column;
      }
      p {
        margin: 14px 0px 12px;
      }
    }
  }
}
/* home page */

/* client section */
.splide {
  padding: 0;
  height: 120px;
}
.splide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}
.splide__track {
  height: 100% !important;
}
.splide__pagination {
  display: none;
}
.splide__arrow {
  display: none;
}
.splide__slide img {
  height: 100%;
  width: 100%;
  padding: 10px 18px;
  border-radius: 10px;
  border: 2px solid var(--gray-lighter);
}
.client-section-main {
  #merchants {
    position: relative;
    &::after {
      content: "";
      position: absolute;
      height: 100%;
      background: linear-gradient(
        90deg,
        rgb(255 255 255) 0%,
        rgb(255 255 255 / 0.83) 50%,
        #fff0 100%
      );
      width: 5%;
      top: 0;
      left: 11px;
    }
    &::before {
      content: "";
      position: absolute;
      height: 100%;
      background: linear-gradient(
        270deg,
        rgb(255 255 255) 0%,
        rgb(255 255 255 / 0.83) 50%,
        #fff0 100%
      );
      width: 5%;
      top: 0;
      right: 11px;
      z-index: 1;
    }
  }
}

@media (max-width: 400px) {
  .splide {
    height: 120px;
  }
  .splide__slide {
    height: 100px;
  }
  .splide__slide img {
    width: 100%;
    height: 90%;
    padding: 0 10px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgb(0 0 0 / 0.12);
  }
}
@media (max-width: 320px) {
  .splide {
    height: 110px;
  }
  .splide__slide {
    height: 100px;
  }
  .splide__slide img {
    width: 100%;
    height: 90%;
    padding: 0 5px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgb(0 0 0 / 0.12);
  }
}
/* client section */

/* integrations section */
.integrations-logo-main {
  overflow: hidden;
  .integrations-wrapper {
    height: 1100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    position: relative;

    .circle {
      position: absolute;
      border-radius: 50%;
      border: 2px solid var(--gray-lightest);
    }

    /* Circle sizes + rotation directions */
    #circle-inner {
      width: 400px;
      height: 400px;
      animation: cw 24s linear infinite;
      .item.logo {
        height: 55%;
        width: 55%;
        border: none;
        margin: -28%;
        animation: ccw 24s linear infinite;
      }
      .item {
        .image-wrapper {
          animation: ccw 24s linear infinite;
        }
      }
      .item:nth-child(1) {
        transform: rotate(0deg) translate(192px) !important;
      }
      .item:nth-child(2) {
        transform: rotate(180deg) translate(192px) !important;
      }
    }

    #circle-outer {
      width: 700px;
      height: 700px;
      animation: ccw 26s linear infinite;
      .item {
        .image-wrapper {
          animation: cw 26s linear infinite;
        }
      }
      .item:nth-child(1) {
        transform: rotate(0deg) translate(338px) !important;
      }
      .item:nth-child(2) {
        transform: rotate(60deg) translate(338px) !important;
      }
      .item:nth-child(3) {
        transform: rotate(120deg) translate(338px) !important;
      }
      .item:nth-child(4) {
        transform: rotate(180deg) translate(358px) !important;
      }
      .item:nth-child(5) {
        transform: rotate(240deg) translate(358px) !important;
      }
      .item:nth-child(6) {
        transform: rotate(300deg) translate(348px) !important;
      }
    }

    #circle-3 {
      width: 1000px;
      height: 1000px;
      animation: cw 34s linear infinite;
      .item {
        .image-wrapper {
          animation: ccw 34s linear infinite;
        }
      }
      .item:nth-child(1) {
        transform: rotate(0deg) translate(500px) !important;
      }
      .item:nth-child(2) {
        transform: rotate(36deg) translate(500px) !important;
      }
      .item:nth-child(3) {
        transform: rotate(108deg) translate(500px) !important;
      }
      .item:nth-child(4) {
        transform: rotate(144deg) translate(500px) !important;
      }
      .item:nth-child(5) {
        transform: rotate(216deg) translate(500px) !important;
      }
      .item:nth-child(6) {
        transform: rotate(252deg) translate(500px) !important;
      }
      .item:nth-child(7) {
        transform: rotate(288deg) translate(500px) !important;
      }
    }

    .item img {
      width: 100%;
      padding: 10px;
    }

    /* Sizes for each circle's items */
    .item {
      display: flex;
      justify-content: center;
      align-items: center;
      border: 2px solid var(--gray-lightest);
      background-color: var(--white);
      position: absolute;
      top: 50%;
      left: 50%;
      border-radius: 50%;
      overflow: hidden;
    }
    #circle-inner .item {
      width: 32%;
      height: 32%;
      margin: -16%;
    }

    #circle-outer .item {
      width: 19%;
      height: 19%;
      margin: -8%;
    }

    #circle-3 .item {
      width: 13%;
      height: 13%;
      margin: -6%;
    }
  }
}

/* Clockwise and counter-clockwise animations */
@keyframes cw {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes ccw {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}
/* integrations section */

@media (max-width: 1200px) {
  .integrations-logo-main {
    .integrations-wrapper {
      height: 800px;
      #circle-3 {
        width: 700px;
        height: 700px;
        .item:nth-child(1) {
          transform: rotate(0deg) translate(350px) !important;
        }
        .item:nth-child(2) {
          transform: rotate(36deg) translate(350px) !important;
        }
        .item:nth-child(3) {
          transform: rotate(108deg) translate(350px) !important;
        }
        .item:nth-child(4) {
          transform: rotate(144deg) translate(350px) !important;
        }
        .item:nth-child(5) {
          transform: rotate(216deg) translate(350px) !important;
        }
        .item:nth-child(6) {
          transform: rotate(252deg) translate(350px) !important;
        }
        .item:nth-child(7) {
          transform: rotate(288deg) translate(350px) !important;
        }
      }
      #circle-outer {
        width: 500px;
        height: 500px;
        .item:nth-child(1) {
          transform: rotate(0deg) translate(248px) !important;
        }
        .item:nth-child(2) {
          transform: rotate(60deg) translate(248px) !important;
        }
        .item:nth-child(3) {
          transform: rotate(120deg) translate(248px) !important;
        }
        .item:nth-child(4) {
          transform: rotate(180deg) translate(248px) !important;
        }
        .item:nth-child(5) {
          transform: rotate(240deg) translate(248px) !important;
        }
        .item:nth-child(6) {
          transform: rotate(300deg) translate(248px) !important;
        }
      }
      #circle-inner {
        width: 300px;
        height: 300px;
        .item:nth-child(1) {
          transform: rotate(0deg) translate(142px) !important;
        }
        .item:nth-child(2) {
          transform: rotate(180deg) translate(142px) !important;
        }
      }
    }
  }
}
@media (max-width: 991px) {
  .integrations-logo-main {
    .integrations-wrapper {
      height: 600px;
      .item img {
        padding: 5px;
      }
      #circle-3 {
        width: 600px;
        height: 600px;
        .item {
          width: 14%;
          height: 14%;
        }
        .item:nth-child(1) {
          transform: rotate(0deg) translate(290px) !important;
        }
        .item:nth-child(2) {
          transform: rotate(36deg) translate(290px) !important;
        }
        .item:nth-child(3) {
          transform: rotate(108deg) translate(290px) !important;
        }
        .item:nth-child(4) {
          transform: rotate(144deg) translate(300px) !important;
        }
        .item:nth-child(5) {
          transform: rotate(216deg) translate(300px) !important;
        }
        .item:nth-child(6) {
          transform: rotate(252deg) translate(305px) !important;
        }
        .item:nth-child(7) {
          transform: rotate(288deg) translate(305px) !important;
        }
      }
      #circle-outer {
        width: 400px;
        height: 400px;

        .item:nth-child(1) {
          transform: rotate(0deg) translate(188px) !important;
        }
        .item:nth-child(2) {
          transform: rotate(60deg) translate(188px) !important;
        }
        .item:nth-child(3) {
          transform: rotate(120deg) translate(188px) !important;
        }
        .item:nth-child(4) {
          transform: rotate(180deg) translate(198px) !important;
        }
        .item:nth-child(5) {
          transform: rotate(240deg) translate(198px) !important;
        }
        .item:nth-child(6) {
          transform: rotate(300deg) translate(198px) !important;
        }
      }
      #circle-inner {
        width: 230px;
        height: 230px;
        .item:nth-child(1) {
          transform: rotate(0deg) translate(110px) !important;
        }
        .item:nth-child(2) {
          transform: rotate(180deg) translate(110px) !important;
        }
      }
    }
  }
}
@media (max-width: 767px) {
  .integrations-logo-main {
    .integrations-wrapper {
      height: 600px;
      #circle-3 {
        width: 500px;
        height: 500px;

        .item:nth-child(1) {
          transform: rotate(0deg) translate(240px) !important;
        }
        .item:nth-child(2) {
          transform: rotate(36deg) translate(240px) !important;
        }
        .item:nth-child(3) {
          transform: rotate(108deg) translate(240px) !important;
        }
        .item:nth-child(4) {
          transform: rotate(144deg) translate(250px) !important;
        }
        .item:nth-child(5) {
          transform: rotate(216deg) translate(250px) !important;
        }
        .item:nth-child(6) {
          transform: rotate(252deg) translate(255px) !important;
        }
        .item:nth-child(7) {
          transform: rotate(288deg) translate(255px) !important;
        }
      }
      #circle-outer {
        width: 350px;
        height: 350px;

        .item:nth-child(1) {
          transform: rotate(0deg) translate(168px) !important;
        }
        .item:nth-child(2) {
          transform: rotate(60deg) translate(168px) !important;
        }
        .item:nth-child(3) {
          transform: rotate(120deg) translate(168px) !important;
        }
        .item:nth-child(4) {
          transform: rotate(180deg) translate(178px) !important;
        }
        .item:nth-child(5) {
          transform: rotate(240deg) translate(178px) !important;
        }
        .item:nth-child(6) {
          transform: rotate(300deg) translate(178px) !important;
        }
      }
      #circle-inner {
        width: 200px;
        height: 200px;
        .item {
          width: 34%;
          height: 34%;
        }
        .item:nth-child(1) {
          transform: rotate(0deg) translate(90px) !important;
        }
        .item:nth-child(2) {
          transform: rotate(180deg) translate(90px) !important;
        }
      }
    }
  }
}
@media (max-width: 600px) {
  .integrations-logo-main {
    .integrations-wrapper {
      height: 270px;

      .item,
      .circle {
        border: 1px solid var(--gray-lightest);
      }
      .item img {
        padding: 2px;
      }
      #circle-3 {
        width: 280px;
        height: 280px;
        animation: none;
        .item {
          width: 16%;
          height: 16%;
          .image-wrapper {
            animation: none;
          }
        }
        .item:nth-child(1) {
          transform: rotate(-30deg) translate(140px) !important;
          img {
            transform: rotate(30deg);
          }
        }
        .item:nth-child(2) {
          transform: rotate(36deg) translate(136px) !important;
        }
        .item:nth-child(3) {
          transform: rotate(108deg) translate(136px) !important;
        }
        .item:nth-child(4) {
          transform: rotate(144deg) translate(136px) !important;
        }
        .item:nth-child(5) {
          transform: rotate(216deg) translate(146px) !important;
        }
        .item:nth-child(6) {
          transform: rotate(252deg) translate(146px) !important;
        }
        .item:nth-child(7) {
          transform: rotate(288deg) translate(146px) !important;
        }
      }
      #circle-outer {
        width: 200px;
        height: 200px;
        animation: none;
        .item {
          width: 22%;
          height: 22%;
          .image-wrapper {
            animation: none;
          }
        }
        .item:nth-child(1) {
          transform: rotate(0deg) translate(92px) !important;
        }
        .item:nth-child(2) {
          transform: rotate(60deg) translate(92px) !important;
        }
        .item:nth-child(3) {
          transform: rotate(120deg) translate(92px) !important;
        }
        .item:nth-child(4) {
          transform: rotate(180deg) translate(98px) !important;
        }
        .item:nth-child(5) {
          transform: rotate(240deg) translate(98px) !important;
        }
        .item:nth-child(6) {
          transform: rotate(300deg) translate(98px) !important;
        }
      }
      #circle-inner {
        width: 100px;
        height: 100px;
        animation: none;

        .item.logo {
          animation: none;
          height: 35%;
          width: 35%;
          border: none;
          margin: -18%;
        }
        .item {
          width: 40%;
          height: 40%;
          .image-wrapper {
            animation: none;
          }
        }
        .item:nth-child(1) {
          transform: rotate(0deg) translate(47px) !important;
        }
        .item:nth-child(2) {
          transform: rotate(180deg) translate(47px) !important;
        }
      }
    }
  }
}

/* Thank for schedule */
.thanks-for-schedule-main {
  position: absolute;
  display: table;
  width: 100%;
  height: 100%;
  background: var(--primary-color-shadow);
  .inner-container {
    display: table-cell;
    vertical-align: middle;
  }
  .wrapper {
    /* background: var(--primary-gradient); */
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    &::before {
      content: "";
      position: absolute;
      inset: 0;
      animation: rotateBg 6s linear infinite;
      background: var(--primary-gradient);
      z-index: -1;
      height: 100vh;
      width: 100vw;
      left: -24%;
      top: -21%;
    }

    .btn-primary {
      width: auto;
    }
    .image-wrapper {
      position: absolute;
      bottom: 1rem;
    }
  }
}

@keyframes rotateBg {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 991px) {
  .thanks-for-schedule-main {
    .wrapper {
      .image-wrapper {
        position: relative;
        bottom: -1.5rem;
      }
    }
  }
}

/* popup */
.modal-body {
  .new-form-ui {
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: none;
    h5,
    h6 {
      color: var(--white);
      text-align: left;
    }
    .form-control {
      background: transparent;
      border-radius: 50px;
      border: 1px solid var(--white);
      padding: 10px 20px;
      color: var(--white);
      &::placeholder {
        color: var(--white);
      }
      &:focus {
        box-shadow: none;
      }
    }
    .form-group {
      margin-bottom: 15px;
      &:nth-child(3) {
        color: var(--white);
      }
      .acceptterms {
        p {
          color: var(--white);
        }
      }
      .col-4.ps-0 {
        .btn-secondary {
          padding: 13px 10px;
        }
      }
      .iti.iti--show-flags {
        width: 100%;
      }
    }
  }
  .iti__flag-box,
  .iti__country-name,
  .iti__dial-code {
    color: var(--black);
  }
}
button.close {
  position: absolute;
  right: -13px;
  top: -13px;
  padding: 5px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  text-align: center;
  opacity: 1;
  z-index: 99;
  border: none;
  line-height: 10px;
}
@media (max-width: 767px) {
  #scheduleademo {
    .modal-content {
      .modal-body {
        h4 {
          margin-bottom: 30px;
          &:after {
            height: 60px;
            width: 50px;
          }
        }

        .careersectioncard {
          border-radius: 5px;
          padding: 10px;
          .form-control {
            border-radius: 25px;
            padding: 5px 10px;
            font-size: 14px;
          }

          .btn-brand {
            padding: 10px 10px;
            border-radius: 50px;
          }
        }
      }

      button.close {
        background-color: var(--primary-dark);
      }
    }
  }
  #pricingform,
  #scheduleademo,
  #brochureform {
    .modal-body {
      padding: 10px 10px 15px !important;
    }
  }
  .modal-dialog {
    padding: 10px;
  }
}
@media (max-width: 400px) {
  .modal-body {
    .new-form-ui {
      .form-group {
        .col-4.ps-0 {
          .btn-secondary {
            font-size: 12px;
          }
        }
      }
    }
  }
}
/* retail-erp-demo-overview page */
.outer-container {
  position: absolute;
  display: table;
  width: 100%;
  height: 100%;
}
.inner-container {
  display: table-cell;
  vertical-align: middle;
}
iframe#player,
iframe#player2 {
  width: 100%;
  height: 390px;
  border-radius: 10px;
  border: 4px solid var(--primary-color);
}
.mute {
  position: absolute;
  right: 5px;
  top: 5px;
  display: none;
  height: 30px;
  width: 30px;
  text-align: center;
  padding: 5px;
}
.lang-tab {
  border-bottom: none !important;
}
.lang-tab a {
  border: 3px solid var(--primary-color) !important;
  border-bottom: none !important;
  font-size: 14px;
  padding: 5px 10px;
}
.lang-tab a.active {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
}
.lang-tab li:first-child a {
  border-top-right-radius: 0px !important;
}
.lang-tab li:last-child a {
  border-top-left-radius: 0px !important;
}

/* faq */
.faq-main .accordion-button:not(.collapsed) {
  background: none;
  box-shadow: none;
  color: var(--black);
}
.faq-main .accordion-button:not(.collapsed)::after {
  filter: brightness(0);
}
.faq-main .accordion-button {
  border-top: 1px solid var(--gray-light);
}
.accordion-item:first-of-type .accordion-button {
  border-radius: 0px;
}
.accordion-item .accordion-button {
  padding: 20px 0px;
  gap: 24px;
}
.accordion-body {
  padding: 0px;
  p {
    margin: 0px;
  }
}
.accordion-item {
  margin-bottom: 24px;
}
.demo-banner-main {
  background: linear-gradient(#f1f7fe 0%, var(--white) 100%);
  .h6 {
    font-weight: 700;
  }
  .left-side {
    ul {
      margin-top: 16px;
      padding-left: 36px;
      li {
        list-style-type: none;
        position: relative;
        margin-bottom: 12px;
        &::before {
          content: "";
          position: absolute;
          left: -36px;
          top: 0px;
          width: 20px;
          height: 28px;
          background-image: url(../images/listing.svg);
          background-position: center;
          background-repeat: no-repeat;
        }
      }
    }
    .video {
      position: relative;
      margin-top: 82px;
      .video-play-button {
        position: absolute;
        color: var(--white);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        i::before {
          font-size: 64px;
        }
      }
      ul {
        li {
          margin: 0px;
          &::before {
            display: none;
          }
        }
      }
    }
  }
  .right-side {
    padding: 12px;
    border-radius: 15px;
    background: var(--gray-lightest);
    .wrapper {
      background: var(--white);
      border-radius: 15px;
      padding: 24px;
      .iti {
        width: 100%;
      }
    }
    .careerform {
      gap: 20px;
    }
    .btn {
      color: var(--white);
      background-color: var(--primary-color);
      padding: 12px;
    }
    .acceptterms {
      .fa-pull-left {
        margin-top: 5px;
      }
    }
  }
}
.abut-us-main {
  .cards-main {
    .card {
      border: none;
      .card-body-wrapper {
        padding: 24px;
        transition: all 0.3s ease-in-out;
        border: 1px solid var(--gray-light);
        border-radius: 12px;
        text-align: center;
        height: 100%;
        .h3 {
          color: var(--primary-color);
          margin-bottom: 8px;
        }
        p {
          margin: 0px;
        }
        &:hover {
          border-color: var(--white);
          box-shadow: 0px 5px 25px -10px var(--primary-light-color);
        }
      }
    }
  }
}
@media (max-width: 991px) {
  .demo-banner-main {
    .left-side {
      .video {
        margin: 30px 0px;
      }
    }
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .abut-us-main {
    .cards-main {
      .card {
        .card-body-wrapper {
          .h3 {
            font-size: 26px;
          }
        }
      }
    }
  }
}
