@font-face {
  font-family: "Helvetica Now";
  src: url("./fonts/helvetica/HelveticaNowDisplay-Bold.ttf") format("opentype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue Bold";
  src: url("./fonts/helvetica/HelveticaNeueBold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Helvetica Now";
  src: url("./fonts/helvetica/HelveticaNowDisplay-Medium.ttf")
    format("opentype");
  font-weight: 500; /* Medium is typically 500 */
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Now";
  src: url("./fonts/helvetica/HelveticaNowDisplay-Regular.ttf")
    format("opentype");
  font-weight: 400; /* Medium is typically 500 */
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #030317;
}

/* Header style start  */
.container {
  max-width: 1276px;
  width: 100%;
  padding: 0px 30px 0px 30px;
  margin: 0 auto;
}
.header {
  height: 924px;
  overflow: hidden;
}

/* Menu Button (Hidden by Default) */
.menu-button {
  display: none;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.4) 100%
  );
  /* background-color: #F2F4F7; */
  padding: 4px 8px;
  border-radius: 8px;
  border: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

.navbar-wrap {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  z-index: 1000000000;
}

.navbar-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.4) 20%,
    rgba(255, 255, 255, 0.4) 100%
  );
  border-radius: 24px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}
ul li {
  position: relative;
}
nav ul li a {
  font-family: "Helvetica Now";
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  text-decoration: none;
  color: white;
}

ul li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0;
  height: 3px;
  background: #ffc100;
  transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

ul li a:hover {
  color: #ffc100;
}

ul li a:hover::after {
  width: 100%;
  left: 0;
}

.actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.mobile {
  display: none;
}
.display {
  display: none;
}

.primary-button {
  display: flex;
  /* align-self: center; */
  justify-content: center;
  background: linear-gradient(to right, #1e18cf, #453fe9);
  padding: 13px 33px;
  border-radius: 18px;
  font-family: "Helvetica Now";
  font-weight: 400;
  font-size: 18px;
  text-decoration: none;
  text-align: center;
  color: white;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(30, 24, 207, 0.3);
  position: relative;
  overflow: hidden;
}

.btn {
  padding: 20px 41px;
}

/* Radial Light Burst Effect */
.primary-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 10%,
    transparent 50%
  );
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease-out;
}

/* Hover Effect */
.primary-button:hover::before {
  transform: translate(-50%, -50%);
}

.primary-button:hover {
  background: linear-gradient(to right, #453fe9, #1e18cf);
  box-shadow: 0 6px 20px rgba(69, 63, 233, 0.5);
}

.toggle-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 59px;
  height: 32px;
}

.light-mode-toggle {
  width: 59px;
  height: 32px;
  background: #444;
  border-radius: 20px;
  position: relative;
  transition: background 0.3s;
}

.light-mode-toggle::before {
  content: "🌙";
  position: absolute;
  top: 3.4px;
  left: 3px;
  width: 25px;
  height: 25px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: 0.3s;
}

.light-mode {
  background: white;
  color: black;
}

.light-mode .light-mode-toggle {
  background: #ccc;
}

.light-mode .light-mode-toggle::before {
  content: "☀️";
  left: 25px;
  background: yellow;
}

.select-wrapper {
  display: inline-flex;
  position: relative;
}
/* .none {
  display: none;
} */
.select-icon {
  position: absolute;
  right: 0;
  top: 3.5px;
}
select option {
  background: #1e18cf; /* Orange Background */
  color: white; /* Text color */
  font-weight: 500;
}
.language-select {
  width: 70px;
  font-family: "Helvetica Now";
  font-weight: 500;
  font-size: 18px;
  color: white;
  border: none;
  background: transparent;
  padding: 5px 10px;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
}
.light-show {
  display: none;
}
/* Header style end  */

/* Hero area style start  */
.hero-container {
  max-width: 820px;
  width: 100%;
  padding: 0px 30px 0px 30px;
  margin: 0 auto;
}
.button-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}
.secondery-button {
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.4)
  );
  padding: 16px 41px;
  font-family: "Helvetica Now";
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  text-decoration: none;
  color: #ffffff;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.secondery-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400%;
  height: 400%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 10%,
    transparent 50%
  );
  border: 2px solid rgba(0, 0, 0, 0.1);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease-out;
}

.visual {
  display: none;
}

/* Hover Effects */
.secondery-button:hover::before {
  transform: translate(-50%, -50%);
}

.secondery-button:hover {
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-area {
  position: relative;
}
.hero-content {
  position: relative;
  z-index: 888;
  padding-top: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-title {
  max-width: 760px;
  font-family: "Helvetica Now";
  font-weight: 700;
  font-size: 82px;
  line-height: 84px;
  letter-spacing: -1.64px;
  color: #ffffff;
  text-align: center;
}

.highlight {
  color: #ffc100;
  position: relative;
}
.line {
  width: 100%;
  position: absolute;
  left: 11px;
  /* top: 0px; */
  bottom: -21px;
}

/* .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 470px;
} */

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 200px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.hero-slide-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: absolute;
  z-index: 999;
  left: 45%;
  transform: translate(0%, 350%);
}

.mySwiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  /* transform: translate(-50%, -50%); */
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 1; /* Keeps it in the background */
}
/* .video-wrap::after{
  content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
} */

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  width: 10px;
  height: 8px;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: white;
  width: 40px; /* Active dot বড় হবে */
  height: 8px;
  border-radius: 10px;
  opacity: 1;
}

/* Hero area style end  */

/* Feature page Style Start  */
/* Feature page Hero Area Style Start  */

.feature-hero-wrap {
  background: url("images/feature-hero-bg-image.png") no-repeat center
    center/cover;
}
.feature-hero-content {
  position: relative;
  z-index: 888;
  padding: 180px 0px 100px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.padding-bottom {
  padding-bottom: 128px;
}
.pt-128 {
  padding-top: 128px;
}

/* Integration are style start  */

.integration-area {
  padding: 128px 0px 128px 0px;
  background-color: #100b22;
}
.integration-cart-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.single-integration-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: rgba(40, 35, 56, 1);
  padding: 32px 28px;
  border-radius: 32px;
  z-index: 1;
  overflow: hidden;
  height: 290px;
}
.heding-btn {
  padding: 20px 41px;
  align-self: flex-end;
}
.single-integration-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 32px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

/* Feature page Hero Area Style End  */

/* Pricing Page Style Start  */

.pricing-cart-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.single-pricing-cart {
  position: relative;
  background-color: #100b22;
  /* padding: 32px 28px; */
  border-radius: 32px;
  border: 1px solid #282338;
}
.price-cart-vector {
  position: absolute;
  right: 0;
  top: 0;
}
.single-price-icon {
  position: absolute;
  top: 2px;
  left: 0;
}
.price-icon-hide {
  display: none;
}
.pricing-top-content {
  margin-top: 120px;
  padding: 0px 28px 0px 28px;
}
.pricing-title {
  font-family: "Helvetica Now";
  font-size: 28px;
  line-height: 32px;
  font-weight: 500;
  letter-spacing: -0.56px;
  color: #ffffff;
  margin-bottom: 12px;
}

.pricing-details {
  font-family: "Helvetica Now";
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #ffffff;
  margin: 12px 0px 28px 0px;
}
.pricing-button {
  display: flex;
  /* align-self: center; */
  justify-content: center;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 13px 33px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  font-family: "Helvetica Now";
  font-weight: 400;
  font-size: 18px;
  text-decoration: none;
  text-align: center;
  color: white;
  display: inline-block;
  transition: background 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.pricing-button:hover {
  background: linear-gradient(to right, #1e18cf, #453fe9);
  border-color: transparent; /* Optional: Makes it look smoother */
}

.price {
  font-family: "Helvetica Now";
  font-size: 48px;
  line-height: 60px;
  font-weight: 700;
  color: #ffffff;
}
.price-span {
  font-family: "Helvetica Now";
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #ffffff;
}
.pricing-features-wrap {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #282338;
  padding: 32px 28px 76px 28px;
}
.pricing-features-wrap h4 {
  font-family: "Helvetica Now";
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #ffffff;
}
.mt-32 {
  margin-top: 32px;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pricing-features li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Helvetica Now";
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #ffffff;
  list-style-type: none;
}
.feature-span {
  font-family: "Helvetica Now";
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: #ffffff;
}
.full-width {
  width: 100%;
  margin: 40px 0px 32px 0px;
}
/* Pricing Page Style End  */

/* About page style start  */

.about-header {
  position: relative;
  overflow: hidden;
}
.about-hero-area {
  padding: 220px 0px 136px 0px;
}
.about-hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 90px;
}
.about-shape-1 {
  position: absolute;
  top: -91px;
  left: -31px;
  z-index: -1;
}
.about-shape-2 {
  position: absolute;
  top: 343px;
  right: -51px;
  z-index: -1;
}
.about-hero-details {
  font-family: "Helvetica Now";
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: rgba(238, 238, 242, 1);
  margin-top: 32px;
}
.about-hero-left-conten {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.text-left {
  text-align: left;
}
.about-hero-img {
  max-width: 495px;
}
.about-img-hide {
  display: none;
}
/* About page style End  */

/* Our Trusted Area Style Start  */
.our-trusted-area {
  padding-top: 100px;
}
.categories-icon {
  position: absolute;
  top: 0;
  left: 0;
}

.categories-cart-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: -290px;
}
/* .single-featured-card {
  background: linear-gradient(to right, rgba(6, 5, 41, 1), rgba(3, 3, 23, 1));
  border: 5px solid;
  border-image-source: linear-gradient(45deg, #ff6a00, #ee0979);
  border-image-slice: 1;
  padding: 32px 28px;
  border-radius: 35px;
} */

.single-categories-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  /* background: linear-gradient(to right, rgba(6, 5, 41, 1), rgba(3, 3, 23, 1)); */
  background: linear-gradient(to bottom, #060529 0%, #030317 100%);
  padding: 32px 28px;
  border-radius: 32px;
  z-index: 1;
  overflow: hidden;
  height: 290px;
}

.hide {
  display: none;
}
.vector-image {
  position: absolute;
  top: 0;
  right: 0;
}

.single-categories-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 32px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

.categories-title {
  font-family: "Helvetica Now";
  font-size: 28px;
  line-height: 32px;
  letter-spacing: 2%;
  color: #ffffff;
}
.categories-description {
  max-width: 336px;
  font-family: "Helvetica Now";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(238, 238, 242, 1);
  margin-top: 12px;
}

.trusted-partner-wrap {
  margin-top: 60px;
}

.trusted-partner-title {
  font-family: "Helvetica Now";
  font-weight: 500;
  font-size: 28px;
  line-height: 32px;
  letter-spacing: -0.56px;
  text-align: center;
  color: #ffffff;
}
.single-trusted-partner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 45px 67px;
  background-color: #100b22;
  border-radius: 12px;
  position: relative;
  isolation: isolate;
}
.company-logo {
  position: absolute;
}

.single-trusted-partner::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px; /* বর্ডারের থিকনেস */
  border-radius: 12px;
  background: linear-gradient(45deg, #100b22, #282338);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.single-trusted-partner-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 24px;
}
/* Our Trusted Area Style end  */

/* Service Area Style Start */

.small-btn {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 10%,
    rgba(255, 255, 255, 0) 100%
  );
  padding: 0px 16px;
  border: 1px solid #333343;
  border-radius: 20px;
  box-shadow: 0px 22px 44px rgba(30, 24, 207, 0.2);
}
.small-btn-text {
  font-family: "Helvetica Now";
  font-weight: 400;
  text-align: center;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 1px;
  color: #fff;
}

.our-service-area {
  padding: 130px 0px 130px 0px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.left-content {
  display: flex;
  flex-direction: column;
  align-items: self-start;
}
.section-title {
  max-width: 632px;
  font-family: "Helvetica Now";
  font-weight: 700;
  /* text-align: center; */
  font-size: 56px;
  line-height: 62px;
  letter-spacing: -1.12px;
  color: #fff;
  margin-top: 12px;
}
.w-600 {
  max-width: 676px;
}
.service-wrap {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  margin-top: 60px;
}
.card1 {
  grid-column: 1 /8;
}
.card2 {
  grid-column: 8 /13;
}
.card3 {
  grid-column: 1 / 6;
}
.card4 {
  grid-column: 6 / 13;
}
.single-service {
  display: flex;
  background-color: #100b22;
  height: 378px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}
.service-left-content {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: self-start;
  padding: 32px 0px 32px 28px;
  position: relative;
  z-index: 9999;
}
.service-title {
  font-family: "Helvetica Now";
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  letter-spacing: -0.56px;
  color: #ffffff;
  max-width: 266px;
}
.width-341 {
  max-width: 341px;
}
.service-description {
  font-family: "Helvetica Now";
  max-width: 341px;
  margin-top: 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #eeeef2;
}

.service-icon {
  position: absolute;
  left: 0;
  top: 0;
}
.service-image {
  /* max-width: 244px; */
  padding-top: 56px;
  position: absolute;
  right: 40px;
  bottom: 0;
  z-index: 999;
}
.service-image2 {
  position: absolute;
  top: 50px;
  right: 0;
}
.service-image3 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99999;
}
.service-image4 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99999;
}

.service-vector {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 111;
}

.position {
  position: absolute;
  top: 140px;
  left: -94px;
  z-index: 111;
}
.blur-image {
  position: absolute;
  top: 0;
  left: 0;
}
.blend {
  mix-blend-mode: exclusion;
}

/* Service Area Style End */

/* Feature Area Style Start  */
.our-features-area {
  padding-bottom: 130px;
}
.our-feature-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.feature-section-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.feature-heading-left-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.text-center {
  text-align: center;
}
.features-wrap {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 20px;
  margin-top: 60px;
  margin-bottom: 56px;
}
.single-feature:nth-child(1) {
  grid-column: 1 / span 4;
  grid-row: 1;
}

.single-feature:nth-child(2) {
  grid-column: 5 / span 4;
  grid-row: 1 / span 2;
}

.single-feature:nth-child(3) {
  grid-column: 9 / span 4;
  grid-row: 1;
}

.single-feature:nth-child(4) {
  grid-column: 1 / span 4;
  grid-row: 2;
}

.single-feature:nth-child(5) {
  grid-column: 9 / span 4;
  grid-row: 2;
}
.single-feature {
  position: relative;
  padding: 32px 28px;
  border: 1px solid #282338;
  border-radius: 32px;
  background-color: #100b22;
}
.feature-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("images/Image\ &\ Graphic.png") no-repeat center center/cover;
}
.featured-icon {
  position: absolute;
  top: 0;
  left: -18px;
}
.feature-title {
  font-family: "Helvetica Now";
  font-weight: 500;
  font-size: 28px;
  line-height: 32px;
  letter-spacing: -0.56px;
  color: #ffffff;
  max-width: 336px;
  margin-top: 150px;
}

/* Feature Area Style End  */

/* Tab Area Style Start  */

.works-tab-area {
  margin-bottom: 130px;
}

.tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tab {
  /* background: rgba(255, 255, 255, 0.1); */
  padding: 20px;
  border: 1px solid #333343;
  border-radius: 16px;
  cursor: pointer;
  font-family: "Helvetica Now";
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  line-height: 32px;
  transition: background 0.3s ease-in-out;
}
.tab-wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-color: #100b22;
  border: 1px solid #282338;
  gap: 136px;
  padding: 48px 40px;
  border-radius: 32px;
  overflow: hidden;
  margin-top: 70px;
}

.section-heading-description {
  max-width: 461px;
  font-family: "Helvetica Now";
  font-size: 20px;
  font-weight: 400;
  color: rgba(238, 238, 242, 1);
  line-height: 30px;
}

.tab.active {
  background: rgba(255, 255, 255, 0.2);
}
.tab-bector-1 {
  position: absolute;
  bottom: -79px;
  right: 261px;
}
.tab-bector-2 {
  position: absolute;
  top: -103px;
  right: -219px;
}

/* Tab Number */
.tab-number {
  width: 32px;
  height: 32px;
  font-family: "Helvetica Now";
  font-size: 14px;
  line-height: 26px;
  font-weight: 500;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  box-shadow: 0px 22px 44px rgba(30, 24, 207, 0.2);
  padding: 11px 11px;
  border-radius: 100%;
  margin-right: 10px;
}
.tab-content-icon-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.tab-light-icon {
  position: absolute;
  display: none;
}
.tab-description-text {
  display: flex;
  align-items: start;
  gap: 12px;
}

/* Content Section */
.tab-text {
  font-family: "Helvetica Now";
  font-size: 20px;
  line-height: 30px;
  color: #eeeef2;
}

.tab-content {
  display: none;
  gap: 20px;
}
.mt {
  margin: 20px 0px 20px 0px;
}

.tab-content.active {
  display: block;
}

/* Highlighted Text */
.tab-highlight {
  color: #f7b500;
}

/* Tab Area Style End  */

/* Counting Area Style Start  */

.counter-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* justify-content: center; */
  gap: 20px;
  /* padding: 50px 0; */
  margin-top: 32px;
}
.counter-box {
  position: relative;
  background: linear-gradient(to bottom, #060529 0%, #030317 100%);
  border-radius: 32px;
  padding: 32px 28px;
  height: 290px;
  display: flex;
  flex-direction: column;
  align-items: self-start;
  justify-content: end;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.counter-title {
  font-family: "Helvetica Now";
  font-weight: 500;
  text-align: center;
  font-size: 28px;
  line-height: 32px;
  letter-spacing: -0.56px;
  color: #eeeef2;
}
.counter-box::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px; /* বর্ডারের পুরুত্ব */
  border-radius: 32px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

.counter-bector {
  position: absolute;
  top: 0;
  right: 0;
}

.experience-icon {
  position: absolute;
  top: 0;
  left: 0;
}
/* .counter-box img {
  width: 40px;
  margin-bottom: 15px;
} */
.counter-number {
  font-family: "Helvetica Now";
  font-weight: 700;
  font-size: 56px;
  line-height: 62px;
}
.blue {
  color: #4a5cff;
}
.yellow {
  color: #ffd700;
}
.red {
  color: #ff3b7a;
}
.counter-text {
  font-family: "Helvetica Now";
  margin-top: 12px;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #eeeef2;
}

/* Counting Area Style End  */

/* FAQ Area Style Start  */
.faq-area {
  padding: 130px 0px 130px 0px;
}
.pt-0 {
  padding-top: 0;
}
.faq-wrap {
  margin-top: 60px;
}
.mt-0 {
  margin-top: 0;
}
.faq-container {
  max-width: 860px;
  width: 100%;
  padding: 0px 30px 0px 30px;
  margin: 0 auto;
}

.faq-item {
  background: #100b22;
  border: 1px solid #282338;
  border-radius: 12px;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  cursor: pointer;
  transition: background 0.3s ease;
}
/* .faq-item:hover .faq-header {
  background: rgba(255, 255, 255, 0.1);
} */
.faq-question {
  font-family: "Helvetica Now";
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  margin: 0;
}
.faq-answer {
  max-width: 680px;
  font-family: "Helvetica Now";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #eeeef2;
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out,
    padding 0.3s ease-in-out;
}
.faq-item.active .faq-answer {
  max-height: 100px;
  opacity: 1;
  /* padding-top: 12px; */
  padding-bottom: 20px;
}
.faq-toggle {
  background: #282338;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}
.faq-toggle span {
  font-size: 20px;
  color: white;
  display: inline-block;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-toggle span {
  transform: rotate(180deg);
}
.pt-0 {
  padding-top: 0;
}
/* FAQ Area Style End  */

/* CTA Area Style Start  */
.cta-area {
  margin-bottom: 130px;
}

.cta-content-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 80px 0px;
  background: url("images/curve\ shape.svg") no-repeat center center/cover;
  background-color: #1e18cf;
  border-radius: 32px;
  overflow: hidden;
}
.cta-title {
  max-width: 600px;
  font-family: "Helvetica Now";
  font-weight: 700;
  font-size: 56px;
  line-height: 62px;
  letter-spacing: -1.12px;
  text-align: center;
  color: #fff;
}
.cta-button-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
}
.cta-button {
  background: #ffffff;
  padding: 18px 33px;
  border-radius: 24px;
  font-family: "Helvetica Now";
  font-weight: 500;
  font-size: 20px;
  text-decoration: none;
  color: #030317;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Hover Glow Effect */
.cta-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 350%;
  height: 350%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 10%,
    transparent 50%
  );
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease-out;
}

/* Hover Effects */
.cta-button:hover::before {
  transform: translate(-50%, -50%);
}

.cta-button:hover {
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.cta-secondery-button {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.4) 100%
  );

  border: 2px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 18px 33px;
  border-radius: 24px;
  font-family: "Helvetica Now";
  font-weight: 500;
  font-size: 20px;
  text-decoration: none;
  color: #ffffff;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.cta-secondery-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400%;
  height: 400%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 10%,
    transparent 50%
  );
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease-out;
}

/* Hover Effects */
.cta-secondery-button:hover::before {
  transform: translate(-50%, -50%);
}

.cta-secondery-button:hover {
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.cta-left-shape {
  position: absolute;
  bottom: 0;
  left: 0;
}
.cta-right-shape {
  position: absolute;
  top: 0;
  right: 0;
}

/* CTA Area Style End  */

/* Footer Area Style Start  */
.footer {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}
.footer-left-description {
  font-family: "Helvetica Now";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  max-width: 333px;
  color: #fff;
}
.left-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.footer-column {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.footer-column a {
  font-family: "Helvetica Now";
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #ffffffa2;
  text-decoration: none;

  position: relative;
  display: inline-block;
  transition: color 0.3s ease-in-out;
}
.column-two a::after,.column-three a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #ffc100;
  transition: all 0.3s ease-in-out;
  transform: translateX(-50%);
}

.column-two a:hover,.column-three a:hover {
  color: #ffc100;
}

.column-two a:hover::after,.column-three a:hover::after {
  width: 100%;
}

.social-media-heading {
  font-family: "Helvetica Now";
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #ffffffa2;
}
.app-p {
  font-family: "Helvetica Now";
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #ffffffa2;
}
.social-icon {
  background-color: #100b22;
  padding: 8px;
  border-radius: 100%;
}
.extra-padding {
  padding: 10px;
}
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom p {
  font-family: "Helvetica Now";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #ffffffa2;
  text-align: center;
}
.footer-icons a{
  transition: all 0.3s ease-in-out;
}
.footer-icons a:hover{
  scale: 1.1;
}
.icon-hide {
  display: none;
}
/* Footer Area Style End  */

/* Terms and condition style start  */
.terms-container {
  max-width: 1068px;
  width: 100%;
  padding: 0px 30px;
  margin: 0 auto;
}
.terms-header {
  position: relative;
  overflow: hidden;
}
.terms-hero-content-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.terms-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.content-column-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 160px;
}
.content-list-wrap {
  padding-left: 16px;
  margin-top: 16px;
}
.content-list-wrap ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.terms-description {
  font-family: "Helvetica Now";
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: rgba(238, 238, 242, 1);
}
.content-column h5 {
  font-family: "Helvetica Now";
  font-weight: 500;
  font-size: 28px;
  line-height: 32px;
  letter-spacing: -0.52px;
  color: rgba(255, 255, 255, 1);
}
.content-column p {
  font-family: "Helvetica Now";
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #eeeef2;
  margin-top: 20px;
}
.content-column ul {
  padding-left: 16px;
}
.content-column ul li {
  font-family: "Helvetica Now";
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #eeeef2;
}
.contact-content {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  cursor: pointer;
}

.contact-text {
  font-family: "Helvetica Now";
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #eeeef2;
  transition: color 0.3s ease-in-out;
}
.contact-text:hover {
  color: orange;
}
.link {
  color: #ffc100;
}
.contact-hide {
  display: none;
}
.terms-shape-hide {
  display: none;
}
/* Terms and condition style end  */

/* Form page style start  */

.contact-hero-content-wrap {
  padding: 222px 0px 150px 0px;
}
.contact-hero-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.w-489 {
  max-width: 489px;
}
.contact-left-content {
  display: flex;
  align-items: self-start;
  justify-content: start;
  flex-direction: column;
}
.form-wrap {
  /* padding: 150px 0px 70px 0px; */
}
.input-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.single-input-wrap:nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 1;
}
.single-input-wrap:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1;
}
.single-input-wrap:nth-child(3) {
  grid-column: 1 / 2;
  grid-row: 2;
}
.single-input-wrap:nth-child(4) {
  grid-column: 2 / 3;
  grid-row: 2;
}
.single-input-wrap:nth-child(5) {
  grid-column: 1 / 3;
  grid-row: 3;
}
.single-input-wrap:nth-child(6) {
  grid-column: 1 / 3;
  grid-row: 4;
}
.single-input-wrap:nth-child(7) {
  grid-column: 1 / 2;
  grid-row: 5;
}
.single-input-wrap:nth-child(8) {
  grid-column: 1 / 3;
  grid-row: 6;
}
.form-container {
  background-color: rgba(16, 11, 34, 1);
  border: 1px solid rgba(40, 35, 56, 1);
  padding: 28px;
  border-radius: 22px;
  max-width: 620px;
  color: white;
}
.input-wrap label {
  font-family: "Helvetica Now";
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 4px;
  display: block;
}
input,
select,
textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(40, 35, 56, 1);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  font-family: "Helvetica Now";
  font-size: 14px;
  line-height: 20px;
  color: white;
}
input::placeholder,
select,
textarea::placeholder {
  color: rgba(152, 162, 179, 1);
}
.checkbox-container {
  display: flex;
  align-items: flex-start;
  flex-direction: column;

  margin: 10px 0;
}
.checkbox-input-wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(40, 35, 56, 1);
  border: 1px solid rgba(51, 51, 67, 1);
  border-radius: 15px;
  padding: 7px 10px 7px 16px;
}
.checkbox-input {
  display: flex;
}
.checkbox {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(249, 249, 251, 1);
  border-radius: 15px;
  background: transparent;
}
.form p {
  font-family: "Helvetica Now";
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(255, 255, 255, 1);
  margin: 12px 0px 40px 0px;
}
.form a {
  font-family: "Helvetica Now";
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(255, 255, 255, 1);
}
.checkbox-container input {
  margin-right: 8px;
}
.submit-button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(to right, #5a42f5, #3c2bff);
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  margin-top: 10px;
}

/* onboarding page style start  */

.onboarding-area {
  padding: 150px 0px 80px 0px;
}
.step-content h2 {
  font-family: "Helvetica Now";
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 24px;
}
.step-content .label {
  display: block;
  font-family: "Helvetica Now";
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 4px;
}
.onboarding-container {
  max-width: 660px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 30px;
}
.mt-24 {
  margin-top: 24px;
}

.onboarding-content-wrap {
  background: rgba(16, 11, 34, 1);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(40, 35, 56, 1);
}

.progress-bar-wrap {
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 32px;
  padding: 20px 40px;
  border-radius: 16px;
}
.onboarding-content-wrap .progress-bar {
  display: flex;
  justify-content: space-between;

  align-items: center;

  position: relative;
}

.progress-bar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  width: 100%;
  height: 5px;
  background: rgba(51, 51, 67, 0.5);
  transform: translateY(-50%);
  z-index: 0;
}

.progress-fill {
  width: 84%;
  position: absolute;
  top: 50%;
  left: 0;
  height: 5px;
  background: rgba(30, 24, 207, 1);
  transform: translateY(-50%);
  transition: width 0.3s ease-in-out;
  z-index: 0;
}

.step {
  font-family: "Helvetica Now";
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
  background: #272626;
  padding: 6px;
  border-radius: 50%;
  border: 2px solid rgba(51, 51, 67, 1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.step-labels {
  display: flex;
  justify-content: space-between;
  font-family: "Helvetica Now";
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.16px;
  /* text-align: center; */
  margin-top: 10px;
  font-size: 14px;
  color: white;
}
.step.active {
  color: white;
  background: rgba(30, 24, 207, 1);
  border-color: rgba(30, 24, 207, 1);
}

.step.completed {
  background: rgba(30, 24, 207, 1);
  border-color: rgba(30, 24, 207, 1);
}
.step.completed::after {
  content: "✔";
  font-size: 20px;
  color: white;
}
.step.completed.number {
  display: none;
}

.step-content {
  display: none;
}

.step-content.active {
  display: block;
}

/* label {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 500;
} */

.onboarding-form-wrap input,
.onboarding-form-wrap select {
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(40, 35, 56, 1);
  border-radius: 16px;
  /* color: white; */
  margin-bottom: 24px;
}

.onboarding-button-wrap {
  display: flex;
  justify-content: space-between;
}

.form-btn {
  background: rgba(30, 24, 207, 1);
  color: white;
  padding: 15px 41px;
  font-family: "Helvetica Now";
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  border: 2px solid rgba(51, 45, 231, 1);
  border-radius: 16px;
  cursor: pointer;
  margin-top: 32px;
}

.form-btn:hover {
  background: rgba(20, 14, 180, 1);
}

.file-upload-container {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(40, 35, 56, 1);
  border-radius: 16px;
  /* padding: 5px; */
  /* width: 400px; */
  position: relative;
}

.file-upload-container input {
  width: auto;
  margin-bottom: 0px;
  flex: 1;
  padding: 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
  border: none;
  outline: none;
}

.upload-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  padding: 10px 15px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  font-family: "Helvetica Now";
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  transition: 0.3s;
  position: absolute;
  right: 5px;
}

.upload-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.file-upload-container input[type="file"] {
  display: none;
}

/* Responsive For 1024 px */

@media (max-width: 1024px) {
  /* hero area style  */

  .hero-slide-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    transform: translate(-5%, 230%);
  }
  .hero-content {
    padding-top: 184px;
  }

  .categories-cart-wrap {
    margin-top: -349px;
  }

  /* Tab area style  */
  .tab-wrap {
    gap: 100px;
  }
}

/* Responsive For 768px  */

@media (max-width: 768px) {
  /* Mobile View */
  .nav-menu {
    display: none;
    position: absolute;
    width: 90%;
    top: 80px;
    right: 40px;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px 20px 65px 20px;
    border-radius: 10px;
  }

  .nav-menu ul {
    display: block;
    text-align: left;
  }

  .nav-menu ul li {
    margin-bottom: 10px;
  }

  .menu-button {
    display: block;
  }
  /* .showing {
    display: none;
  } */
  .mobile {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
  .none {
    display: none;
  }

  /* hero area style  */

  .hero-title {
    max-width: 495px;
    font-size: 56px;
    line-height: 60px;
    letter-spacing: -1.64px;
  }
  .hero-content {
    padding-top: 240px;
  }
  .line {
    width: 100%;
  }

  .hero-slide-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    transform: translate(-3%, -33%);
  }
  .categories-cart-wrap {
    margin-top: -407px;
  }

  .bg-video {
    height: 95vh;
  }

  /* Features Page responsive  */
  .feature-hero-content {
    padding: 165px 0px 84px 0px;
  }
  .padding-bottom {
    padding-bottom: 64px;
  }
  .w-600 {
    max-width: 477px;
  }

  .integration-area {
    padding: 64px 0px 64px 0px;
    background-color: #100b22;
  }
  .integration-cart-wrap {
    margin-top: 48px;
  }

  .single-integration-card {
    flex-direction: column;
    justify-content: end;
    padding: 20px;
    border-radius: 20px;
    height: 200px;
    overflow: hidden;
  }

  .single-integration-card::before {
    border-radius: 20px;
  }

  /* categories style  */

  .categories-title {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 2%;
  }

  .categories-description {
    font-size: 14px;
    line-height: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Koto line porjonto dekhabe */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .vector-image {
    width: 40%;
  }
  .categories-icon {
    position: absolute;
    top: 9px;
    left: 0;
    width: 90px;
  }

  .single-categories-card {
    flex-direction: column;
    justify-content: end;
    /* background: linear-gradient(to right, rgba(6, 5, 41, 1), rgba(3, 3, 23, 1)); */
    background: linear-gradient(to bottom, #060529 0%, #030317 100%);
    padding: 20px;
    border-radius: 20px;
    height: 200px;
    overflow: hidden;
  }

  .single-categories-card::before {
    border-radius: 20px;
  }

  /* Our Trusted Area Style Start  */

  .single-trusted-partner {
    padding: 38px 37px;
    border-radius: 12px;
  }
  .company-logo {
    width: 56px;
  }

  .section-title {
    max-width: 433px;
    font-size: 36px;
    line-height: 42px;
    letter-spacing: -1.12px;
    margin-top: 12px;
  }

  /* service area style  */
  .our-service-area {
    padding: 64px 0px 64px 0px;
  }

  .single-service {
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
  }

  .service-image {
    max-width: 141px;
    right: 30px;
  }

  .service-image2 {
    max-width: 157px;
    top: 0;
  }
  .service-image3 {
    max-width: 164px;
    top: 0;
  }
  .service-image4 {
    max-width: 268px;
    top: 0;
  }

  .service-title {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.56px;
    max-width: 154px;
  }
  .service-description {
    font-family: "Helvetica Now";
    max-width: 246px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #eeeef2;
  }
  .service-icon {
    max-width: 35%;
    top: 5px;
  }
  .service-left-content {
    padding: 24px 0px 24px 20px;
  }
  .service-vector {
    position: absolute;
    bottom: -94px;
    left: -54px;
    z-index: 111;
  }

  /* feature area style  */
  .our-features-area {
    padding-bottom: 64px;
  }
  .features-wrap {
    margin-top: 41px;
    margin-bottom: 40px;
  }
  .feature-title {
    font-size: 16px;
    line-height: 22px;
    margin-top: 105px;
  }
  .featured-icon {
    top: 6px;
    left: -12px;
    width: 50%;
  }
  .single-feature {
    position: relative;
    padding: 20px;
    border: 1px solid #282338;
    border-radius: 20px;
    background-color: #100b22;
  }

  .feature-2 {
    padding: 40px 34px;
  }
  .row-2-img {
    max-width: 156px;
  }
  .section-heading-description {
    max-width: 262px;
    font-size: 16px;
    line-height: 22px;
  }

  /* Tab Area Style  */

  .tab-wrap {
    gap: 56px;
    padding: 24px 22px;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 50px;
  }

  .tab {
    /* background: rgba(255, 255, 255, 0.1); */
    padding: 13px;
    border-radius: 16px;
    font-size: 16px;
    line-height: 22px;
  }
  .tab-number {
    width: 24px;
    height: 24px;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    padding: 9px 9px;
    margin-right: 8px;
  }
  .mt {
    margin: 12px 0px 12px 0px;
  }
  .tab-bector-1 {
    max-width: 203px;
    position: absolute;
    bottom: -91px;
    right: 162px;
  }
  .tab-bector-2 {
    max-width: 164px;
    position: absolute;
    top: 6px;
    right: -24px;
  }

  .tab-text {
    font-family: "Helvetica Now";
    font-size: 14px;
    line-height: 20px;
    color: #eeeef2;
  }
  .mb-0 {
    margin-bottom: 0;
  }

  /* counter area style  */
  .counter-wrap {
    gap: 16px;
    margin-top: 20px;
  }
  .counter-number {
    font-family: "Helvetica Now";
    font-weight: 700;
    font-size: 28px;
    line-height: 32px;
  }
  .counter-text {
    margin-top: 8px;
    font-size: 14px;
    line-height: 20px;
  }
  .experience-icon {
    width: 40%;
    position: absolute;
    top: 3px;
    left: 0;
  }

  .counter-box {
    border-radius: 19px;
    padding: 20px;
    height: 200px;
  }
  .counter-box::before {
    border-radius: 19px;
  }

  /* Faq area style  */

  .faq-area {
    padding: 64px 0px 64px 0px;
  }
  .pt-0 {
    padding-top: 0;
  }
  .faq-container {
    max-width: 584px;
    width: 100%;
    padding: 0px 30px 0px 30px;
    margin: 0 auto;
  }
  .faq-header {
    padding: 16px;
  }
  .faq-question {
    font-size: 18px;
    line-height: 26px;
  }
  .faq-wrap {
    margin-top: 40px;
  }
  .mt-0 {
    margin-top: 0;
  }
  .faq-item.active .faq-answer {
    max-height: 130px;
    /* padding-bottom: 12px; */
  }

  /* cta area style  */
  .cta-area {
    margin-bottom: 64px;
  }
  .cta-title {
    max-width: 420px;
    font-family: "Helvetica Now";
    font-weight: 700;
    font-size: 36px;
    line-height: 42px;
    letter-spacing: -1.12px;
    text-align: center;
    color: #fff;
  }
  .cta-right-shape {
    max-width: 180px;
    position: absolute;
    top: -23px;
    right: -29px;
  }
  .cta-content-wrap {
    padding: 48px 0px;
  }
  .cta-left-shape {
    max-width: 180px;
    position: absolute;
    bottom: -86px;
    left: -47px;
  }
  .cta-button-wrap {
    gap: 20px;
    margin-top: 16px;
  }
  .cta-button {
    padding: 15px 30px;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
  }
  .cta-secondery-button {
    padding: 13px 30px;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
  }

  /* Footer style  */
  .footer-logo-wrap img {
    max-width: 81px;
  }
  .footer-left-description {
    font-size: 14px;
    line-height: 20px;
    max-width: 265px;
  }
  .left-image-wrap img {
    max-width: 81px;
  }
  .footer-column {
    gap: 12px;
  }
  .footer-column a {
    font-size: 14px;
    line-height: 20px;
  }
  .playstore img {
    max-width: 124px;
  }
  .app-p {
    font-size: 14px;
  }
  .social-media-heading {
    font-family: "Helvetica Now";
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #ffffffa2;
  }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .icon-show {
    display: none;
  }
  .icon-hide {
    display: inline;
  }
  .footer {
    margin-bottom: 36px;
  }

  .visual {
    display: inline-flex;
  }

  /* Pricing Page responsive style start  */

  .pricing-features {
    gap: 12px;
  }

  .pricing-title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    letter-spacing: -0.35px;
    margin-bottom: 8px;
  }
  .pricing-features-wrap h4 {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 12px;
  }

  .pricing-details {
    font-size: 14px;
    line-height: 20px;
    margin: 8px 0px 20px 0px;
  }
  .price {
    font-family: "Helvetica Now";
    font-size: 28px;
    line-height: 32px;
  }
  .price-span {
    font-size: 14px;
    line-height: 20px;
  }
  .pricing-top-content {
    padding: 0px 20px 0px 20px;
  }
  .full-width {
    margin: 32px 0px 20px 0px;
  }
  .pricing-features-wrap {
    padding: 20px 20px 52px 20px;
  }
  .pricing-features li {
    gap: 6px;
    font-size: 14px;
    line-height: 20px;
  }
  .feature-span {
    font-size: 14px;
    line-height: 20px;
  }
  .mt-32 {
    margin-top: 24px;
  }
  .single-price-icon {
    max-width: 36%;
  }

  /* About page style start  */
  .about-hero-content {
    flex-direction: column;
    align-items: self-start;
    gap: 32px;
  }
  .about-img-show {
    display: none;
  }
  .about-img-hide {
    display: inline;
  }
  .about-hero-details {
    max-width: 591px;
    font-size: 18px;
    line-height: 26px;
    margin-top: 24px;
  }
  .about-hero-area {
    padding: 180px 0px 64px 0px;
  }
  .mw-451 {
    max-width: 451px;
  }
  .pt-128 {
    padding-top: 64px;
  }
  .about-shape-1 {
    max-width: 200px;
    position: absolute;
    top: -51px;
    left: -31px;
    z-index: -1;
  }
  .about-shape-2 {
    max-width: 200px;
    position: absolute;
    top: 289px;
    right: -51px;
    z-index: -1;
  }

  /* onboarding responsive style start  */

.onboarding-form-wrap input, .onboarding-form-wrap select {
    margin-bottom: 16px;
}

.file-upload-container input {
  margin-bottom: 0px;
}

.mt-24 {
  margin-top: 16px;
}
.step-content h2 {
  font-family: "Helvetica Now";
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 20px;
}

.upload-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  padding: 10px 15px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  font-family: "Helvetica Now";
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  transition: 0.3s;
  position: absolute;
  right: 5px;
}
.form-btn {
  padding: 15px 31px;
}
.onboarding-content-wrap {
  padding: 24px;
}

  /* onboarding responsive style end  */

  /* terms page responsive start  */
  .terms-header {
    overflow: hidden;
  }
  .content-column h5 {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.32px;
  }
  .terms-description {
    font-size: 18px;
    line-height: 26px;
  }
  .contact-content img {
    width: 16px;
  }
  .content-column p {
    font-size: 18px;
    line-height: 26px;
    margin-top: 16px;
  }
  .content-column ul li {
    font-size: 18px;
    line-height: 26px;
  }
  .content-list-wrap {
    margin-top: 12px;
  }
  .content-column-wrap {
    gap: 28px;
    margin-bottom: 80px;
  }

  .about-shape-1 {
    max-width: 200px;
    position: absolute;
    top: -91px;
    left: -31px;
    z-index: -1;
  }

  /* contact page style start  */
  .contact-hero-content-wrap {
    padding: 180px 0px 80px 0px;
  }
  .form-wrap {
    padding: 40px 0px 0px 0px;
  }
  .contact-hero-content {
    display: grid;
    grid-template-columns: auto;
    width: 100%;
  }
  .contact-left-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .w-489 {
    max-width: 370px;
    text-align: center;
  }
  .form-container {
    background-color: rgba(16, 11, 34, 1);
    border: 1px solid rgba(40, 35, 56, 1);
    padding: 24px 20px;
    border-radius: 22px;
    max-width: 100%;
    color: white;
  }
  .input-wrap {
    gap: 12px;
  }
  .form p {
    margin: 12px 0px 30px 0px;
  }
}

@media (max-width: 500px) {
  .bg-video {
    height: 91vh;
  }
  .hero-container {
    padding: 0px 16px 0px 16px;
  }
  .container {
    padding: 0px 16px 0px 16px;
  }
  .display {
    display: flex;
    flex-direction: column;
    align-items: self-start;
  }

  .nav-menu {
    right: 0;
    width: 100%;
  }

  .hero-title {
    max-width: 344px;
    font-size: 40px;
    line-height: 44px;
    letter-spacing: -1.64px;
  }
  .hero-slide-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    transform: translate(-8%, -219%);
  }
  .hero-content {
    padding-top: 180px;
  }
  .line {
    bottom: -13px;
  }
  .button-wrap {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }
  .w-100 {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 9px 41px;
  }
  .showing {
    display: none;
  }
  .secondery-button {
    display: flex;
    justify-content: center;
    padding: 12px 41px;
  }
  .btn {
    width: 100%;
    padding: 16px 41px;
  }

  /* categories style start  */
  .categories-cart-wrap {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: -412px;
  }
  .single-categories-card {
    height: 220px;
    border-radius: 20px;
  }
  .categories-title {
    font-family: "Helvetica Now";
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.32px;
    color: #ffffff;
  }

  .categories-description {
    margin-top: 7px;
  }

  .single-trusted-partner {
    padding: 32px 53px;
  }

  .single-trusted-partner-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  /* categories style end  */

  /* Feature page responsive style  */
  .integration-cart-wrap {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .single-integration-card {
    height: 220px;
    border-radius: 20px;
  }
  .heding-btn {
    padding: 17px 41px;
    align-self: flex-start;
    margin-top: 26px;
  }

  /* Service area style  */

  .section-heading {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: self-start;
  }
  .align {
    display: flex;
    align-self: self-start;
    margin-top: 35px;
    padding: 16px 41px;
  }
  .section-title {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: -1.12px;
    margin-top: 12px;
  }
  .left-content {
    gap: 5px;
  }

  .service-wrap {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    gap: 16px;
    margin-top: 32px;
  }

  .card1 {
    grid-column: auto;
  }
  .card2 {
    grid-column: auto;
  }
  .card3 {
    grid-column: auto;
  }
  .card4 {
    grid-column: auto;
  }

  .service-left-content {
    padding: 20px 0px 20px 20px;
  }
  .service-image {
    max-width: 107px;
    right: 19px;
  }
  .service-description {
    max-width: 288px;
    margin-top: 8px;
  }
  .service-image4 {
    max-width: 220px;
    top: 0px;
}

  /* feature area start  */

  .features-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
    margin-top: 60px;
    margin-bottom: 56px;
  }
  .single-feature:nth-child(1) {
    grid-area: 1 / 1 / auto / 2;
  }
  .single-feature:nth-child(2) {
    grid-area: 2 / 1 / auto / 3;
  }
  .single-feature:nth-child(3) {
    grid-area: 1 / 2 / auto / 3;
  }
  .single-feature:nth-child(4) {
    grid-area: 3 / 1 / auto / 2;
  }
  .single-feature:nth-child(5) {
    grid-area: 3 / 2 / auto / 3;
  }
  .feature-title {
    font-size: 14px;
    line-height: 20px;
    margin-top: 75px;
  }
  .center {
    display: flex;
    align-self: center;
    padding: 16px 41px;
  }
  .single-feature {
    padding: 16px;
    border-radius: 16px;
  }
  /* Tab are style  */
  .tab-wrap {
    grid-template-columns: auto;
    gap: 34px;
    padding: 20px 20px;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 32px;
  }
  .works-tab-area {
    margin-bottom: 64px;
  }
  .mb-0 {
    margin-bottom: 0;
  }
  .section-heading-description {
    max-width: 100%;
    font-size: 16px;
    line-height: 22px;
    margin-top: 16px;
  }

  /* counter area style  */

  .counter-wrap {
    gap: 16px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
  }

  .experience-icon {
    width: 28%;
  }
  .counter-title {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.16px;
  }

  /* faq area style  */
  .faq-container {
    padding: 0px 16px 0px 16px;
  }
  .faq-question {
    font-size: 16px;
    line-height: 22px;
    max-width: 271px;
  }

  .faq-toggle {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }
  .faq-answer {
    font-size: 14px;
    line-height: 20px;
    padding: 0px 18px;
  }
  .pb-0 {
    padding-bottom: 0;
  }
  .faq-item.active .faq-answer {
    max-height: 130px;
    /* padding-bottom: 12px; */
  }

  /* Cta are style  */

  .cta-title {
    max-width: 420px;
    font-family: "Helvetica Now";
    font-weight: 700;
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -1.12px;
    text-align: center;
    color: #fff;
  }
  .cta-right-shape {
    max-width: 72px;
    position: absolute;
    top: 0px;
    right: -1px;
  }
  .cta-content-wrap {
    padding: 84px 16px;
  }

  .cta-left-shape {
    max-width: 72px;
    position: absolute;
    bottom: -26px;
    left: 0px;
  }

  .cta-button-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    margin-top: 15px;
    flex-direction: column;
    width: 100%;
  }

  .cta-button {
    padding: 10px 30px;
    width: 100%;
    text-align: center;
  }
  .cta-secondery-button {
    padding: 10px 30px;
    text-align: center;
    width: 100%;
  }

  .footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 32px;
    margin-top: 64px;
    margin-bottom: 32px;
  }

  .footer-column:nth-child(1) {
    grid-area: 1 / 1 / auto / 3;
  }
  .footer-column:nth-child(2) {
    grid-area: 2 / 1 / auto / 2;
  }
  .footer-column:nth-child(3) {
    grid-area: 2 / 2 / auto / 3;
  }
  .footer-column:nth-child(4) {
    grid-area: 3 / 1 / auto / 3;
  }
  .hide {
    display: none;
  }
  .footer-bottom p {
    font-size: 14px;
    line-height: 20px;
  }

  .footer-bottom {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding: 12px 0px;
  }
  .social-icon {
    background-color: #100b22;
    padding: 8px;
    border-radius: 100%;
    max-width: 32px;
  }

  .visual {
    display: none;
  }

  /* pricing page responsive style start  */
  .single-pricing-cart {
    border-radius: 18px;
  }
  .pricing-cart-wrap {
    grid-template-columns: auto;
    gap: 20px;
  }
  .single-price-icon {
    max-width: 32%;
    top: 5px;
  }
  .pricing-top-content {
    margin-top: 95px;
  }
  .pt-208 {
    padding: 208px 0px 84px 0px;
  }
  .price-cart-vector {
    max-width: 102px;
  }
  .pricing-features-wrap {
    padding: 20px 20px 20px 20px;
  }

  /* about page style  */
  .about-hero-details {
    max-width: 591px;
    font-size: 16px;
    line-height: 22px;
    margin-top: 24px;
  }
  .about-img-hide {
    width: 100%;
  }
  .about-hero-area {
    padding: 163px 0px 64px 0px;
  }
  .mw-451 {
    max-width: 313px;
  }
  .about-shape-1 {
    max-width: 160px;
    position: absolute;
    top: -29px;
    left: -31px;
    z-index: -1;
  }
  .about-shape-2 {
    max-width: 160px;
  }

  /* terms page responsive start  */
  .terms-header {
    overflow: hidden;
  }
  .terms-container {
    padding: 0px 16px;
  }
  .content-column p {
    font-size: 16px;
    line-height: 22px;
    margin-top: 12px;
  }
  .terms-description {
    font-size: 16px;
    line-height: 22px;
  }
  .content-column ul li {
    font-size: 16px;
    line-height: 22px;
  }
  .content-column ul {
    display: flex;
    padding-left: 8px;
    flex-direction: column;
    gap: 8px;
  }
  .content-column-wrap {
    gap: 24px;
    margin-bottom: 64px;
  }
  .contact-text {
    font-size: 16px;
    line-height: 22px;
  }
  .contact-content {
    gap: 6px;
    margin-top: 12px;
  }

  /* contact page responsive start  */
  .contact-hero-content-wrap {
    padding: 180px 0px 20px 0px;
  }
  .checkbox-input-wrap{
    width: 225px;
  }

  .form-container {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .single-input-wrap:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1;
  }
  .single-input-wrap:nth-child(2) {
    grid-column: 1 / 3;
    grid-row: 2;
  }
  .single-input-wrap:nth-child(3) {
    grid-column: 1 / 3;
    grid-row: 3;
  }
  .single-input-wrap:nth-child(4) {
    grid-column: 1 / 3;
    grid-row: 4;
  }
  .single-input-wrap:nth-child(5) {
    grid-column: 1 / 3;
    grid-row: 5;
  }
  .single-input-wrap:nth-child(6) {
    grid-column: 1 / 3;
    grid-row: 6;
  }
  .single-input-wrap:nth-child(7) {
    grid-column: 1 / 2;
    grid-row: 7;
  }
  .w-489 {
    max-width: 326px;
    text-align: center;
  }



  /* onboarding page responsive start  */

.step-labels {
    line-height: 16px;
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
    gap: 51px;
}
.progress-bar-wrap {
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 32px;
  padding: 20px 15px;
  border-radius: 12px;
}
.onboarding-content-wrap {
  padding: 16px;
}
.onboarding-container {
  padding: 0px 16px;
}

.progress-bar-wrap {
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 24px;
  border-radius: 12px;
}
.onboarding-form-wrap input, .onboarding-form-wrap select {
  margin-bottom: 12px;
  padding: 14px;
  border-radius: 8px;
}
.file-upload-container{
  border-radius: 8px;
}
.file-upload-container input {
  margin-bottom: 0px;
}
.form-btn {
  background: rgba(30, 24, 207, 1);
  color: white;
  padding: 15px 41px;
  font-family: "Helvetica Now";
  font-size: 16px;
  font-weight: 500;
  line-height: 13px;
  border: 2px solid rgba(51, 45, 231, 1);
  border-radius: 16px;
  cursor: pointer;
  margin-top: 128px;
}

.mt-24 {
  margin-top: 12px;
}

}

