/*!
Theme Name: Flowcfo

--------------------------------------------------------------*/
@import url("assets/css/variables.css");
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*,
::before,
::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-secondary-text);
  font-weight: 400;
  background-color: var(--color-site-white);
}

:focus-visible {
  outline: none;
}
::selection {
  background-color: #6669ff; /* Highlight background color */
  color: #ffffff; /* Highlighted text color */
}
.container {
  width: 100%;
  max-width: 100%;
  padding: 0 12px;
  margin: 0 auto;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

dl,
ol,
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Typography */
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-secondary);
  margin-bottom: 12px;
}
h1,
.heading-one {
  font-size: 28px;
  line-height: 32px;
  font-weight: 700;
  color: var(--color-primary);
}

h2,
.heading-two {
  font-size: 22px;
  line-height: 26px;
  font-weight: 700;
  color: var(--color-primary);
}

h3,
.heading-three {
  font-size: 20px;
  line-height: 22px;
  font-weight: 600;
  color: var(--color-primary);
}

h4,
.heading-four {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  color: var(--color-primary);
}

h5,
.heading-five {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: var(--color-primary);
}

h6,
.heading-six {
  font-size: 16px;
  line-height: 18px;
  font-weight: 600;
  color: var(--color-primary);
}

.text-md {
  font-size: 14px;
  line-height: 18px;
}

.text-base {
  font-size: 14px;
  line-height: 18px;
}

.text-xs {
  font-size: 12px;
  line-height: 14px;
}

p {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: var(--color-secondary-text);
}

a,
p > a {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: var(--color-primary);
  transition: color var(--transition-base) ease-in-out;
}

a:hover,
p > a:hover {
  color: var(--color-primary);
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 600;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}
.text__primary-text {
  color: var(--color-primary-text);
}
/* Typography End */
/* Spacing Start */
.pb-120 {
  padding-bottom: 50px;
}
.pb-100 {
  padding-bottom: 40px;
}
.pt-120 {
  padding-top: 50px;
}

.py-100 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.pt-80 {
  padding-top: 30px;
}

.pb-80 {
  padding-bottom: 30px;
}

.p-60 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.pt-60 {
  padding-top: 30px;
}

.pb-60 {
  padding-bottom: 30px;
}

.pt-50 {
  padding-top: 20px;
}

.pb-50 {
  padding-bottom: 20px;
}

.p-40 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.pt-40 {
  padding-top: 20px;
}

.pb-30 {
  padding-bottom: var(--space-7);
}

.pt-20 {
  padding-top: 20px;
}

.pb-40 {
  padding-bottom: 20px;
}

.pt-30 {
  padding-top: var(--space-7);
}

.mb-80 {
  margin-bottom: 30px;
}

.mb-60 {
  margin-bottom: 30px;
}

.mb-50 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: var(--space-7);
}

.mt-30 {
  margin-top: var(--space-7);
}

.mb-24 {
  margin-bottom: 16px;
}

.mb-20 {
  margin-bottom: var(--space-8);
}

.mt-40 {
  margin-top: 20px;
}

.mt-05 {
  margin-top: 2px;
}

.mb-05 {
  margin-bottom: 2px;
}

.mb-12 {
  margin-bottom: 12px;
}

.section-padding {
  padding-top: 20px;
  padding-bottom: 18px;
}

/* Spacing End */
/* Form start */
label {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: var(--color-input-label);
  margin: 0 0 6px;
  display: block;
}

::placeholder {
  color: var(--color-input-placeholder);
}

textarea {
  display: block;
  resize: none;
}

/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

input,
select,
textarea {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: var(--color-input-placeholder);
  background: var(--color-input-bg);
  border: 1px solid var(--color-input-border);
  border-radius: var(--radius-8);
  width: 100%;
  padding: 9px 15px;
  box-shadow: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-border);
  outline: none;
}

input.error,
select.error,
textarea.error,
input.error-msg,
select.error-msg,
textarea.error-msg {
  border-color: #ff6b6b;
  color: #ff6b6b;
}

input.error::placeholder,
select.error::placeholder,
textarea.error::placeholder,
input.error-msg::placeholder,
textarea.error-msg::placeholder {
  color: var(--color-input-label);
}

input.input-error,
select.input-error,
textarea.input-error {
  border-color: #ff6b6b;
  color: var(--color-primary-text) !important;
}

input.input-error::placeholder {
  color: var(--color-input-label) !important;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: url(./assets/images/icon-chevron.svg) !important;
  background-repeat: no-repeat !important;
  background-position: right 6px center !important;
  cursor: pointer;
  padding-inline-end: 34px;
}
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  line-height: 19px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 9px 16px;
  border: none;
  text-decoration: none;
  border-radius: var(--radius-8);
  transition: transform 0.3s ease-in-out;
}
.button.button-sm {
  padding: 9px 16px;
}
.gradient-button {
  color: var(--color-site-white);
  box-shadow:
    0px 0px 4px 0px #00000033,
    0px 4px 4px 0px #ffffff40 inset;
  border-radius: var(--radius-8);
  background: var(--color-secondary);
}

.gradient-button:hover {
  color: var(--color-primary-text);
  transform: scale(1.05);
  background: linear-gradient(90deg, #abf1fd 6%, #6669ff 100%);
}
.gradient-button::after,
.white-button::after {
  content: "🚀";
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.25s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  inset: 0% 0% auto auto;
  font-size: 18px;
}
.gradient-button:hover::after,
.white-button:hover::after {
  opacity: 1;
  transform: translate3d(0.15rem, -0.4rem, 0);
}
.white-icon-button,
.white-button {
  position: relative;
  color: var(--color-secondary-text);
  background: var(--color-site-white);
  box-shadow:
    0px 0px 4px 0px #00000029,
    0px 0px 6px 0px #00000029 inset,
    0px 4px 4px 0px #ffffff40 inset;
  cursor: pointer;
}
.white-button:hover,
.white-button:focus {
  box-shadow:
    0px 0px 0px 0px #00000029,
    0px 0px 6px 0px #66666629 inset,
    0px 0px 6px 0px #4b4b4b40 inset;
  transform: scale(1.05);
  color: var(--color-primary);
}
.white-icon-button {
  overflow: hidden;
}
.button.white-icon-button {
  padding-left: 50px;
}

.white-icon-button .icon_wrapper {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s ease;
}

.white-icon-button span {
  display: inline-block;
  transition: all 0.5s ease;
}

.white-icon-button:hover .icon_wrapper {
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}

.white-icon-button:hover span {
  opacity: 0;
  transform: translateX(100%);
}

/* Fly animation on the icon itself */
.white-icon-button:hover .icon_wrapper i {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}

.white-icon-button:active {
  transform: scale(0.95);
}

@keyframes fly-1 {
  from {
    transform: translateY(2px);
  }
  to {
    transform: translateY(-2px);
  }
}

@keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }

  to {
    transform: translateY(-0.1em);
  }
}
/* Icons Start */

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  transition: 0.3s ease-in-out;
}
.icon-play {
  mask-image: url(assets/images/icon-play.svg);
  -webkit-mask-image: url(assets/images/icon-play.svg);
  background: var(--color-secondary-text);
  height: 20px;
  width: 20px;
  mask-size: 20px;
}
.icon-arrow-left {
  mask-image: url(assets/images/icon-left-arrow.svg);
  -webkit-mask-image: url(assets/images/icon-left-arrow.svg);
  background: var(--color-secondary-text);
}
.icon-arrow-right {
  mask-image: url(assets/images/icon-right-arrow.svg);
  -webkit-mask-image: url(assets/images/icon-right-arrow.svg);
  background: var(--color-secondary-text);
}
/* Icon End */
/* Header Start */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--color-site-white);
  z-index: 9;
  transition:
    backgroundColor 0.3s ease,
    top 0.3s ease;
}
.header_main-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  transition: backgroundColor 0.3s ease;
}
/* header .logo_container {
  flex: 1;
} */
.custom-logo-link {
  display: flex;
}
.header--sticky .header_main-container {
  padding: 12px 18px;
  border-radius: var(--radius-8);
  background-color: rgba(251, 250, 249, 0.85);
  backdrop-filter: blur(10px);
}
.header--sticky .button.button-sm {
  padding: 6px 14px;
}
[data-color-mode="dark"] .header--sticky .header_main-container {
  border-color: rgba(73, 72, 70, 0.85);
  background: rgba(39, 38, 37, 0.85);
}

[data-color-mode="light"] .header--sticky .header_main-container {
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.85);
}
header .logo_container img {
  width: 130px;
}
.menu {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.menu a {
  display: flex;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  /* color: var(--color-primary-text); */
  text-decoration: none;
  position: relative;
  background-image: linear-gradient(
    to right,
    var(--color-primary-text),
    var(--color-primary-text) 50%,
    var(--color-primary-text) 50%
  );
  background-size: 200% 100%;
  background-position: -100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
}
/* .menu a::after,
.menu a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    180deg,
    #ffffff 13.74%,
    #abf1fd 41.83%,
    #6669ff 100%
  );

  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-out;
} */

/* .menu a::before {
  top: -5px;
  transform-origin: left;
}

.menu a:hover::after,
.menu a:hover::before {
  transform: scaleX(1);
} */

.menu a:before {
  content: "";
  background: linear-gradient(
    90deg,
    #abf1fd calc(var(--stop-pos) - 15%),
    #6669ff 100%
  );
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  transition: all 0.3s ease-in-out;
}

.menu a:hover {
  background-position: 0;
}

.menu a:hover::before,
.menu a.active::before {
  width: 100%;
}
.header--sticky {
  max-width: 1140px;
  left: 50%;
  top: 12px;
  transform: translateX(-50%);
  background-color: transparent;
  z-index: 100000;
}
.header--sticky .header_main-container {
  padding: 8px 12px;
  border-radius: var(--radius-8);
  backdrop-filter: blur(10px);
}
.header--sticky .button.button-sm {
  padding: 6px 14px;
}
[data-color-mode="dark"] .header--sticky .header_main-container {
  background: rgb(15 23 42 / 75%);
}
[data-color-mode="light"] .header--sticky .header_main-container {
  background-color: rgba(251, 250, 249, 0.85);
  backdrop-filter: blur(10px);
}
[data-color-mode="dark"] .header--sticky .logo_container img {
  filter: brightness(0) invert(1);
  width: 120px;
}
[data-color-mode="dark"] .header--sticky .menu a {
  background-image: linear-gradient(
    to right,
    var(--color-site-white),
    var(--color-site-white) 50%,
    var(--color-site-white) 50%
  );
}
[data-color-mode="light"] .header--sticky .menu a:before {
  background: linear-gradient(
    90deg,
    var(--color-primary) calc(var(--stop-pos) - 66%),
    #6669ff 100%
  );
}
.desktop-menu {
  display: none;
}
/* Mobile header Start */

.hamburger_button {
  cursor: pointer;
  border: none;
  background-color: transparent;
  padding: 0;
}

.hamburger_button svg {
  height: 32px;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition:
    stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  stroke: var(--color-primary);
}

.line-top-bottom {
  stroke-dasharray: 12 63;
}

.hamburger_button.active svg {
  transform: rotate(-45deg);
}

.hamburger_button.active svg .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}
.offcanvas-header .btn-close {
  cursor: pointer;
  border: none;
  background-color: transparent;
  padding: 0;
  background: none;
  padding: 0;
  height: 24px;
  width: 24px;
  margin: 0;
  flex-shrink: 0;
  opacity: 1;
}

.offcanvas-header .btn-close svg {
  height: 24px;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
  transform: rotate(-45deg);
}
[data-color-mode="dark"] .offcanvas-header,
[data-color-mode="dark"] .offcanvas-footer {
  border-color: var(--color-input-border);
}
.offcanvas-header .btn-close .line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition:
    stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  stroke: var(--color-primary);
}

.offcanvas-header .btn-close .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}

.offcanvas-header .btn-close.active svg {
  transform: none;
}

.offcanvas-header .btn-close.active svg .line-top-bottom {
  stroke-dasharray: 12 63;
  stroke-dashoffset: unset;
}
.btn-close:focus {
  box-shadow: none;
}
[data-color-mode="dark"] .header--sticky .line,
[data-color-mode="dark"] .offcanvas-header .btn-close .line {
  stroke: var(--color-site-white);
}
[data-color-mode="light"] .header--sticky .line,
[data-color-mode="dark"] .offcanvas-header .btn-close .line {
  stroke: var(--color-primary);
}
.mobile_header .offcanvas.offcanvas-start {
  background: var(--color-site-white);
  height: 100%;
  width: 100%;
  border: none;
  height: 100%;
  width: 100%;
  border: none;
}
.header--sticky .mobile_header .offcanvas.offcanvas-start {
  top: -12px;
  left: -13px;
  background: var(--color-site-white);
  height: 100dvh;
  width: 101vw;
  max-width: 101vw;
}
[data-color-mode="light"]
  .header--sticky
  .mobile_header
  .offcanvas.offcanvas-start {
  background: var(--color-site-white);
}
[data-color-mode="dark"]
  .header--sticky
  .mobile_header
  .offcanvas.offcanvas-start {
  background: var(--color-primary);
}
.offcanvas-backdrop {
  top: -20px;
  height: 120vh;
}
.offcanvas-header {
  padding: 18px;
  border-bottom: 1px solid var(--color-border-light);
  justify-content: space-between;
}

.offcanvas-body {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offcanvas-body li {
  width: 100%;
}
.offcanvas-body li a {
  font-size: 16px;
  padding: 18px 0;
  justify-content: center;
  line-height: 24px;
}

[data-color-mode="light"] .header--sticky .offcanvas-header .btn-close {
  filter: none;
}
[data-color-mode="dark"] .header--sticky .offcanvas-header .btn-close {
  filter: brightness(0) invert(1);
  box-shadow: none;
}
.offcanvas-footer {
  padding: 18px;
  border-top: 1px solid var(--color-border-light);
}
.offcanvas-footer .button.button-sm {
  width: 100%;
}
.white-button.desktop-view {
  display: none;
}
/* Header End */

/* All Platform Start */
.platform__section {
  background-color: var(--color-card-bg-100);
  overflow: hidden;
}
.platform-slider {
  position: relative;
}
.platform-slider::before {
  content: "";
  display: block;
  background: url(assets/images/platform-bg.svg) no-repeat center / contain;
  width: 1126px;
  height: 1046px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: var(--radius-round);
  z-index: 0;
}
.platform-tabs {
  position: relative;
  z-index: 10;
}
.platform-tab {
  background: #fafafa;
  border-radius: 14px;
  padding: 12px 15px;
  margin: 0 auto -8px;
  position: relative;
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: none;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
}
.platform-tab p {
  font-size: 14px;
  line-height: 22px;
}
.platform-tab.active {
  z-index: 999;
  transform: translateY(-5px);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
}
.platform-tab.active p {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-primary-text);
}
.shape-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 2px;
}
.diamond-shape {
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
}
.platform-content {
  position: relative;
  min-height: 360px; /* adjust as needed */
}
.platform-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  transform: translateY(15px);
}
.platform-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.platform-slide-block {
  display: flex;
  padding: 12px;
  box-shadow: 0px 0px 50px 8px #0000000d;
  border-radius: 0 0 16px 16px;
  border: 1px solid transparent;
  gap: 80px;
  background-color: #ffffff;
}
.platform-left {
  width: 100%;
  flex-shrink: 0;
}
.platform-left p {
  line-height: 22px;
}
.platform-left p:last-child {
  margin-bottom: 0;
}
.platform-right {
  display: none;
  box-shadow: 0px 0px 20px 10px #0000000f;
}
.click-me-svg {
  display: block;
  animation: floatArrow 2.5s ease-in-out infinite;
  transform-origin: center;
  margin: -30px auto;
  text-align: center;
  z-index: 99999;
  position: relative;
  padding-left: 60px;
}

@keyframes floatArrow {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(-3deg);
  }
}

.click-me-svg path {
  animation: pulseStroke 2s ease-in-out infinite;
}

@keyframes pulseStroke {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}
.platform-desktop {
  display: none;
}
.platform-mobile {
  display: block;
  overflow: hidden;
  margin-top: 10px;
}

/* All Platform End */

/* CTA Section Start */
.cta__section--box-wrapper {
  background: url(./assets/images/gradient-bg.svg) no-repeat center;
  background-size: cover;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-16);
  position: relative;
  overflow: hidden;
}
.cta__section--box {
  padding: 20px;
  height: 100%;
}
.cta__btn--wrapper {
  margin-top: 15px;
  flex-direction: column;
  align-items: center;
  align-items: center;
}

/* CTA Section End */

/* Testimonials & Contact Us Start */
.testimonial__item {
  background: linear-gradient(180deg, #f4f4ff 0%, #e8fcff 100%);
  padding: 16px;
  backdrop-filter: blur(20px);
  margin-top: 10px;
  border-radius: var(--radius-16);
}
.contact__us--inner-left .testimonial__author p {
  font-size: 14px;
  line-height: 20px;
}
.testimonial__author-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  flex-wrap: wrap;
  gap: 10px;
}
.testimonial__navigation .testimonial__prev,
.testimonial__navigation .testimonial__next {
  position: static;
  margin: 0;
}
.testimonial__navigation {
  display: flex;
  align-items: center;
  gap: 8px;
}
.testimonial__navigation .swiper-button {
  border-radius: var(--radius-round);
  background: rgb(15 23 42 / 6%);
  width: 26px;
  height: 26px;
}
.testimonial__navigation .swiper-button .icon {
  width: 14px;
  height: 14px;
}
.testimonial__navigation .swiper-button svg {
  display: none;
}
.contact__us--section {
  background-color: var(--color-primary);
}
/* Contact Us Start */

.contact__us--section,
footer {
  background-color: var(--color-primary);
}
.contact__us--inner {
  background-color: var(--color-dark-blue);
  border: 1px solid var(--color-dark-blue-200);
  padding: 12px;
  border-radius: var(--radius-16);
}
.contact__us--inner-left {
  background: var(--color-gradient-2);
  border-radius: var(--radius-8);
  height: 100%;
  padding: 16px 16px 20px 16px;
}
.contact__us--inner-left p {
  color: var(--color-primary-text);
  line-height: 20px;
}
.contact-form br {
  display: none;
}
.form-group {
  margin-bottom: 16px;
}
.contact-form .row > div {
  padding: 0;
}
.contact__form--block h2 {
  margin-bottom: 16px;
}
.contact-form p {
  margin-bottom: 0;
}
.contact-form label .required {
  color: #ff6b6b;
}
.contact-form select option {
  color: var(--color-primary-text);
}
/* Privacy Checkbox */
.privacy-check .wpcf7-list-item {
  margin: 0;
}
.contact-form .form-check {
  min-height: inherit;
  padding-left: 0;
}
.contact-form .form-check p {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
}
.privacy-check label {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0;
  cursor: pointer;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}
.privacy-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.privacy-check .wpcf7-list-item-label {
  position: relative;
  padding-left: 24px;
  font-size: 12px;
}
.privacy-check .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-4);
  background: var(--color-dark-blue);
  transition: all 0.3s ease;
}
/* Check Icon */
.privacy-check .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 10px;
  height: 6px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg) scale(0);
  transition: all 0.25s ease;
}
/* Checked State */
.privacy-check input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
  background: linear-gradient(135deg, #5b5ef7, #7b61ff);
  border-color: #5b5ef7;
  box-shadow: 0 0 15px rgba(91, 94, 247, 0.4);
}
.privacy-check input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  transform: rotate(-45deg) scale(1);
}
/* Link */
.form-check a {
  color: #5357ff;
  text-decoration: underline;
  transition: 0.3s ease;
}
.form-check a:hover {
  color: #8b84ff;
  transition: 0.3s ease;
}
.contact-form-submit p {
  margin-bottom: 0;
  display: inline-block;
  position: relative;
}
.wpcf7-spinner {
  opacity: 1;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  background: var(--color-secondary);
  color: var(--color-site-white);
  width: 100%;
  height: 100%;
  border-radius: var(--radius-8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  box-shadow:
    0px 0px 4px 0px #00000033,
    0px 4px 4px 0px #ffffff40 inset;
}
.wpcf7-spinner::before {
  content: "Loading...";
  animation: none;
  color: var(--color-site-white);
  background-color: transparent;
  position: static;
  width: auto;
  height: auto;
  font-size: 14px;
  line-height: 19px;
  font-weight: 600;
}
.wpcf7 form .wpcf7-response-output {
  margin: 16px 0 0 0;
  padding: 6px 16px;
  border: 1px solid var(--color-site-white);
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  color: var(--color-site-white);
  border-radius: var(--radius-8);
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--color-green);
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ff6b6b;
}
.wpcf7-not-valid-tip {
  color: #ff6b6b;
  font-size: 12px;
  font-weight: normal;
  display: block;
}
/* Testimonials & Contact Us End */
.form-check a {
  color: #6c63ff;
  text-decoration: underline;
  transition: 0.3s ease;
  position: absolute;
  right: -85px;
  top: 0;
  font-size: 13px;
  line-height: 18px;
}

.form-check a:hover {
  color: #8b84ff;
}
/* Contact Us End */
/* Footer Start */
.footer_main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
footer .logo_container img {
  max-width: 140px;
}
.social_links-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
footer .menu {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
footer .menu a {
  background-image: linear-gradient(
    to right,
    var(--color-site-white),
    var(--color-site-white) 50%,
    var(--color-site-white) 50%
  );
}
.social_link {
  transform: none;
  transition: var(--transition-base);
}
.social_link:hover {
  transform: translateY(-5px);
}
.copy__container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid #212e4c;
  margin-bottom: 0;
}
.copy__container p,
.copy__container p a {
  font-size: 12px;
  line-height: 16px;
  color: #67728d;
  margin-bottom: 0;
}
.copy__container a {
  text-decoration: none;
}
.copy__container a:hover {
  color: var(--color-site-white);
}
.site-footer {
  position: relative;
  overflow: hidden;
  padding-bottom: 50px;
}

.footer-text {
  font-size: 75px;
  line-height: 98px;
  font-weight: 600;
  color: #0f172a;
  -webkit-text-stroke: 1px #ffffff33;
  text-shadow:
    1px 1px 0 #ffffff33,
    -1px -1px 0 #ffffff33,
    1px -1px 0 #ffffff33,
    -1px 1px 0 #ffffff33,
    1px 1px 0 #ffffff33;
  margin-bottom: 0;
  text-align: center;
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
}
.mask {
  display: block;
  overflow: hidden;
}

.content {
  display: inline-block;
  will-change: transform;
}
/* Footer End */

/* Thank You */
.thank-you-section {
  padding-top: 70px;
  padding-bottom: 70px;
}
.thank-you-hero {
  position: relative;
  background: rgb(102 105 255 / 10%);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-16);
  padding: 50px 24px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}
/* Home Page start */
.site-content {
  margin-top: 56px;
}
/* Banner start */
.banner--section {
  position: relative;
}
.banner-bg {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
/* 1. Register the custom property so CSS knows how to animate the percentage numbers */
@property --stop-pos {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 50%;
}
.banner-bg span {
  display: block;
  height: 100%;
  width: 100%;
  animation: waveMotion 3s ease-in-out infinite alternate;
}

.banner-bg span:first-of-type,
.banner-bg span:last-of-type {
  background: linear-gradient(
    180deg,
    #ffffff 13.74%,
    #abf1fd calc(var(--stop-pos) - 15%),
    #6669ff 100%
  );
  animation-delay: 0s;
}
.banner-bg span:nth-of-type(2),
.banner-bg span:nth-last-of-type(2) {
  background: linear-gradient(
    180deg,
    #ffffff 13.74%,
    #abf1fd calc(var(--stop-pos) - 10%),
    #6669ff 100%
  );
  animation-delay: 0.2s; /* Staggering the delays creates the wave wave movement */
}
.banner-bg span:nth-of-type(3),
.banner-bg span:nth-last-of-type(3) {
  background: linear-gradient(
    180deg,
    #ffffff 13.74%,
    #abf1fd calc(var(--stop-pos) - 5%),
    #6669ff 100%
  );
  animation-delay: 0.4s;
}
.banner-bg span:nth-of-type(4),
.banner-bg span:nth-last-of-type(4) {
  background: linear-gradient(
    180deg,
    #ffffff 13.74%,
    #abf1fd var(--stop-pos),
    #6669ff 100%
  );
  animation-delay: 0.6s;
}
.banner-bg span:nth-of-type(5),
.banner-bg span:nth-last-of-type(5) {
  background: linear-gradient(
    180deg,
    #ffffff 13.74%,
    #abf1fd calc(var(--stop-pos) + 5%),
    #6669ff 100%
  );
  animation-delay: 0.8s;
}
.banner-bg span:nth-of-type(6) {
  background: linear-gradient(
    180deg,
    #ffffff 13.74%,
    #abf1fd calc(var(--stop-pos) + 10%),
    #6669ff 100%
  );
  animation-delay: 1s;
}

@keyframes waveMotion {
  0% {
    --stop-pos: 45%;
  }
  100% {
    --stop-pos: 85%;
  }
}
.banner--content {
  padding-top: 30px;
  padding-bottom: 24px;
  max-width: 670px;
  margin: auto;
}
.banner__title {
  margin-bottom: 12px;
}
.banner__text {
  color: var(--color-primary-text);
}
.btn-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.banner-img--container {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-img--container img {
  margin-bottom: -20px;
  border: 1px solid #ffffff8a;
  border-radius: 8px;
  width: 100%;
  border-radius: 8px;
  width: 100%;
}
#videoModal .modal-dialog {
  max-width: 100%;
}
#videoModal .modal-content {
  max-width: 90%;
  margin: auto;
}
#videoModal .modal-content {
  background-color: transparent;
  border: none;
}
#videoModal .modal-body,
#videoModal .modal-header {
  padding: 0;
  background: transparent;
  border: none;
}
#videoModal .btn-close {
  position: absolute;
  right: 0;
  background-color: rgb(255 255 255 / 75%);
  backdrop-filter: blur(8px);
  opacity: 1;
  z-index: 2;
  border-radius: 50%;
  padding: 3px;
  background-size: 8px;
}
#videoModal video,
#videoModal iframe {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-8);
}
/* Banner End */
/* Partner Strat */

.partner-section {
  padding: 30px 0;
}
.partner-slider {
  overflow: hidden;
}

.partner-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}
.partner-slider_logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Partner End */

/* Enterprise Section start */
.enterprise--section {
  padding-top: 100px;
  position: relative;
  overflow: hidden;
  background-color: var(--color-card-bg-100);
}
.enterprise--section::after {
  content: "";
  display: block;
  background-color: var(--color-card-bg-100);
  width: 1100px;
  height: 1388px;
  position: absolute;
  top: 44px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: var(--radius-round);
  z-index: 1;
}
.enterprise--section::before {
  content: "";
  display: block;
  background: url(assets/images/bg_gradiant.svg) no-repeat center / contain;
  width: 1507px;
  height: 1388px;
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: var(--radius-round);
  z-index: 0;
  animation: gradientFloat 3s ease-in-out infinite;
}
@keyframes gradientFloat {
  0% {
    transform: translateX(-50%) translateY(0) scale(1);
  }
  50% {
    transform: translateX(-50%) translateY(-30px) scale(1.04);
  }
  100% {
    transform: translateX(-50%) translateY(0) scale(1);
  }
}
.enterprise--section .row {
  position: relative;
  z-index: 4;
}

.enterprise--section .container::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  z-index: 3;
  background: linear-gradient(180deg, rgb(244 242 240 / 0%) 33%, #f4f2f0);
}

.enterprise__header {
  text-align: center;
  max-width: 557px;
  margin-inline: auto;
}
.count_list {
  display: flex;
  flex-wrap: wrap;
}
.count_list li {
  text-align: center;
  flex: auto;
  flex: auto;
  position: relative;
  width: calc(50% - 12px);
  padding: 12px;
}
.count_list li:first-child,
.count_list li:nth-of-type(2) {
  border-bottom: 1px solid var(--color-border);
}
.count_list li:first-child,
.count_list li:nth-of-type(3) {
  border-right: 1px solid var(--color-border);
}
.enterprise__header h2 {
  color: var(--color-primary-text);
}
.count_list .count_no {
  font-family: var(--font-family-secondary);
  color: var(--color-secondary);
  margin-bottom: 4px;
}
.count__details {
  margin-bottom: 12px;
}

/* Enterprise Section End */

#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 10;
  max-width: 720px;
  margin: 0 auto;
}
.hero-icon-container {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #5357ff 0%, #2965b0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(83, 87, 255, 0.25);
}
.hero-icon-container svg {
  width: 36px;
  height: 36px;
  stroke: #fff;
  fill: none;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
    box-shadow: 0 0 12px rgba(83, 87, 255, 0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
    box-shadow: 0 0 24px rgba(83, 87, 255, 0.6);
  }
}

.anim-float {
  animation: float 6s ease-in-out infinite;
}
.page-template-thank-you .site-footer,
.privacy-policy .site-footer {
  padding-top: 60px;
}

/* Core Section Start */
.core__header-container {
  flex-direction: column;
  text-align: center;
  gap: 12px;
}
.core__header-container > * {
  flex: 1;
}
.core__card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.core__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-8);
  background-color: var(--color-card-bg-100);
  padding: 16px;
  width: 100%;
  flex-grow: 1;
  overflow: hidden;
  transition: all 0.3s ease;
}
.core__card:nth-of-type(1),
.core__card:nth-of-type(2) {
  padding: 16px 0 0 16px;
}
.core__card:hover {
  background-color: var(--color-border);
}
/* .core__card:nth-of-type(1):hover img,
.core__card:nth-of-type(2):hover img {
  transform: translateX(-10px) scaleX(1.04);
} */
.core__card:nth-of-type(3) {
  position: relative;
}
.core__card:nth-of-type(3) h3,
.core__card:nth-of-type(3) .core__card-img-container {
  z-index: 2;
  position: relative;
}
.core__card:nth-of-type(3)::before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background: url("./assets/images/bg-grid.svg") no-repeat center / contain;
  position: absolute;
  top: 0;
  left: 0;
}
.core__card h3 {
  font-family: var(--font-family-base);
}
.core__card-img-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.core__card img {
  transition: var(--transition-base);
}
.core__card:nth-of-type(1) .core__card-img-container,
.core__card:nth-of-type(2) .core__card-img-container {
  align-items: end;
  justify-content: end;
}
.core__card:last-of-type .core__card-img-container {
  margin-left: -66px;
  margin-right: -66px;
}
/* Core Section End */
/* HOw it Works Start */
.work__section-title,
.work__section-text {
  text-align: center;
}
.work__list-item {
  border-top: 1px solid var(--color-card-bg-100);
  margin-top: 16px;
  padding-top: 16px;
}
.work__list-item:first-of-type {
  margin-top: 0;
}

.work__title {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  color: var(--color-primary-text);
}
.work__title img {
  height: 20px;
  width: 20px;
}
.work--section .img__container img {
  width: 100%;
  height: auto;
  margin-bottom: 24px;
}
/* HOw it Works End */
/* FAQ */
.faq__accordion {
  margin-top: 20px;
}
.faq__accordion .accordion-item {
  border: 1px solid var(--color-border-light);
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-site-white);
  margin-bottom: 16px;
}
.faq__accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.faq__accordion .accordion-button:focus {
  outline: 0;
  box-shadow: none;
  border: none;
}
.faq__accordion .accordion-button {
  background: var(--color-site-white);
  color: var(--color-primary-text);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  padding: 16px;
  box-shadow: none;
  border: 0;
}
.faq__accordion .accordion-button:not(.collapsed) {
  background: var(--color-gray-100);
  color: var(--color-primary-text);
  box-shadow: none;
}
.faq__accordion .accordion-body {
  background: var(--color-gray-100);
  padding: 16px 0 16px;
  border-top: 1px solid var(--color-border);
  margin: 0 16px;
}
.faq__accordion .accordion-body p {
  margin-bottom: 0;
  line-height: 22px;
}
.faq__accordion .accordion-button::after {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: auto;
  content: "";
  background-image: url(assets/images/icon-down-arrow.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center;
  transition: transform 0.2s ease-in-out;
  border: 1px solid var(--color-grey-400);
  border-radius: 100%;
}
.faq__accordion .accordion-button:not(.collapsed)::after {
  background-image: url(assets/images/icon-down-arrow.svg);
  background-color: var(--color-brown);
  border-color: var(--color-brown);
  transition: transform 0.2s ease-in-out;
}
.faq__accordion .accordion-collapse {
  transition: all 0.3s ease;
  background: var(--color-gray-100);
}
/* FAQ End */

/* CMS Page */
section.page__header {
  padding: 40px 0;
  background: var(--color-gray-100);
}
.cms-pages ul {
  padding-left: 20px;
}
.cms-pages ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}
.cms-pages ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: var(--radius-round);
  background-color: var(--color-primary-text);
}
.cms-pages h2 {
  font-size: 22px;
  line-height: 28px;
}
.cms-pages h3 {
  font-size: 18px;
  line-height: 22px;
}
/* CMS Page */
.click-me-svg {
  pointer-events: none;
}
.click-me-svg svg path {
  stroke: #949494;
  fill: transparent;
  stroke-width: 1.5;
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  animation: drawSVG 4s ease forwards infinite;
}

.click-me-svg svg path:nth-child(2) {
  animation-delay: 0.4s;
}

.click-me-svg svg path:nth-child(3) {
  animation-delay: 0.8s;
}

@keyframes drawSVG {
  0% {
    stroke-dashoffset: 3000;
    fill: transparent;
  }

  60% {
    fill: transparent;
  }

  100% {
    stroke-dashoffset: 0;
    fill: #949494;
  }
}
