@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

body{
  padding: 0;
  margin: 0;
  font-family: "Work Sans", sans-serif;
  background: #fff;
  font-weight: 400;
  overflow-x: hidden;
}

ul{
  padding:0;
  margin: 0;
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
}

a{
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

h1, h2, h3, h4 {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* .container-xl, .container {
  max-width: 1400px;
} */

.btn {
  min-width: 149px;
  background: #00098C;
  border-radius: 39px;
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  color: #FFFFFF;
  padding: 13px 28px;
}

.btn:hover {
  background: #38B6FF;
  color:#fff;
}

.btn-fill-blue {
  background: #0C73FF;
  color: #FFFFFF;
}

.btn-fill-blue:hover {
  background: #38B6FF;
  color:#fff;
}

/*---style Start---*/

header {
  position: absolute;
  top:30px;
  left:0;
  right:0;
  z-index: 9;
  /* padding-left:80px;
  padding-right:80px; */
    max-width: 908px;
    margin: auto;
}

.header-inner {
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(98px);
  border-radius: 82px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 20px 25px; */
  padding: 12px 12px 12px 20px;

  background: rgba(255, 255, 255, 0.99);
  border: 1px solid rgba(12, 115, 255, 0.32);
  backdrop-filter: blur(98px);
}

.logo_link img {
	width: 140px;
}

.mobile-menu {
  display: none;
}

.outer-banner {
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.inner-banner {
  border-radius: 32px;
  background: radial-gradient(100% 100% at 50% 0%, #88C5F9 20.46%, #0C73FF 69.86%);
  /* background: #0C73FF; */
  position: relative;
  overflow: hidden;
  height: auto;
  padding-top: 140px;
  z-index: 2;
}

.line-box {
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index: 2;
}

.horri-line{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.vertical-line {
  display: flex;
  justify-content: space-evenly;
}

.vertical-line span {
  display: block;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.16);
}

.horri-line span {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.animated-horri, .animated-vertical {
  position: relative;
}

.horri-1:after {
  content: "";
  position: absolute;
  width: 35px;
  height: 2px;
  left: 0px;
  top: -1px;
  transform: rotate(180deg);
  z-index: 3;
  background: linear-gradient(90deg, #001c41, #054db1, transparent);
  border-radius: 5px;
  animation: moveLine 5s infinite;
  animation-fill-mode: forwards;
}

.horri-2:after {
  content: "";
  position: absolute;
  width: 35px;
  height: 2px;
  left: 0px;
  top: -1px;
  transform: rotate(180deg);
  z-index: 3;
  background: linear-gradient(90deg, #001c41, #054db1, transparent);
  border-radius: 5px;
  animation: moveLine2 7s infinite;
  animation-fill-mode: forwards;
}

.horri-3:after {
  content: "";
  position: absolute;
  width: 35px;
  height: 2px;
  left: 0px;
  top: -1px;
  transform: rotate(180deg);
  z-index: 3;
  background: linear-gradient(90deg, #001c41, #054db1, transparent);
  border-radius: 5px;
  animation: moveLine3 9s infinite;
  animation-fill-mode: forwards;
}

@keyframes moveLine {
  0% {
      left: -150px;
  }
  60% {
      left: calc(100% + 150px);
  }
  100% {
      left: calc(100% + 150px);
  }
}

@keyframes moveLine2 {
  0% {
      left: -150px;
  }
  60% {
      left: calc(100% + 150px);
  }
  100% {
      left: calc(100% + 150px);
  }
}

@keyframes moveLine3 {
  0% {
      left: -150px;
  }
  60% {
      left: calc(100% + 150px);
  }
  100% {
      left: calc(100% + 150px);
  }
}

.veerti-1:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 35px;
  left: -1px;
  top: 0px;
  z-index: 3;
  background: linear-gradient(360deg, #001c41, #054db1, transparent);
  border-radius: 5px;
  animation: animatedLine 5s infinite;
  animation-fill-mode: forwards;
}

.veerti-2:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 35px;
  left: -1px;
  top: 0px;
  z-index: 3;
  background: linear-gradient(360deg, #001c41, #054db1, transparent);
  border-radius: 5px;
  animation: animatedLine2 7s infinite;
  animation-fill-mode: forwards;
}


.veerti-3:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 35px;
  left: -1px;
  top: 0px;
  z-index: 3;
  background: linear-gradient(360deg, #001c41, #054db1, transparent);
  border-radius: 5px;
  animation: animatedLine3 9s infinite;
  animation-fill-mode: forwards;
}

@keyframes animatedLine {
  0% {
      top: -150px;
  }
  60% {
      top: calc(100% + 150px);
  }
  100% {
      top: calc(100% + 150px);
  }
}

@keyframes animatedLine2 {
  0% {
      top: -150px;
  }
  60% {
      top: calc(100% + 150px);
  }
  100% {
      top: calc(100% + 150px);
  }
}

@keyframes animatedLine3 {
  0% {
      top: -150px;
  }
  60% {
      top: calc(100% + 150px);
  }
  100% {
      top: calc(100% + 150px);
  }
}


.shape-group, .shape-group-right {
  position: absolute;
  z-index: 5;
}


.shape-group {
  left:0;
  bottom: 92px;
}

.shape-group-right {
  right:0;
  bottom: 92px;
}


.front-left {
  position: absolute;
  width: 20vw;
  height: 28vw;
  left: 6.25vw;
  bottom: -6.7vw;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.203) 19.49%, rgba(255, 255, 255, 0.0029) 100%);
  border: 1px solid rgba(255, 255, 255, 0.31);
  backdrop-filter: blur(65px);
  border-radius: 30px;
  transform: rotate(171.59deg);
  z-index: 4;
}

.middle-left {
  position: absolute;
  width: 20vw;
  height: 40vw;
  left: 0;
  bottom: -14.3vw;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.203) 19.49%, rgba(255, 255, 255, 0.0029) 100%);
  backdrop-filter: blur(65px);
  border: 1px solid rgba(255, 255, 255, 0.31);
  border-radius: 30px;
  transform: rotate(171.59deg);
  z-index: 3;
}

.back-left {
  position: absolute;
  width: 19vw;
  height: 30vw;
  left: -7.6vw;
  bottom: 0.75vw;
  background: linear-gradient(360deg, rgba(255, 255, 255, 0.203) 20.18%, rgba(255, 255, 255, 0.0029) 100%);
  border: 1px solid rgba(255, 255, 255, 0.31);
  backdrop-filter: blur(65px);
  border-radius: 30px;
  transform: rotate(171.59deg);
}


.front-right {
  position: absolute;
  width: 20vw;
  height: 28vw;
  right: 6.25vw;
  bottom: -6.7vw;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.203) 19.49%, rgba(255, 255, 255, 0.0029) 100%);
  border: 1px solid rgba(255, 255, 255, 0.31);
  backdrop-filter: blur(65px);
  border-radius: 30px;
  transform: rotate(-171.59deg);
  z-index: 4;
}

.middle-right {
  position: absolute;
  width: 20vw;
  height: 40vw;
  right: 0;
  bottom: -14.3vw;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.203) 19.49%, rgba(255, 255, 255, 0.0029) 100%);
  backdrop-filter: blur(65px);
  border-radius: 30px;
  transform: rotate(-171.59deg);
  border: 1px solid rgba(255, 255, 255, 0.31);
  z-index: 3;
}

.back-right {
  position: absolute;
  width: 19vw;
  height: 30vw;
  right: -7.6vw;
  bottom: 0.75vw;
  background: linear-gradient(360deg, rgba(255, 255, 255, 0.203) 20.18%, rgba(255, 255, 255, 0.0029) 100%);
  border: 1px solid rgba(255, 255, 255, 0.31);
  backdrop-filter: blur(65px);
  border-radius: 30px;
  transform: rotate(-171.59deg);
}

.banner-heading-area h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 45px;
  line-height: 55px;
  text-align: center;
  color: #ffffff;
}

.banner-heading-area P {
  font-size: 18px;
  color: #ffffff;
	font-weight: 500;
}

.banner-heading-area {
  position: relative;
  z-index: 8;
  text-align: center;
}

.bottom-image-stretch {
  position: relative;
  z-index: 8;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
  margin-left: auto;
  margin-right: auto;
  right: 0;
}

.left-image-stack {}

.middle-image-stack {}

.right-image-stack {}

.moon-right {
  position: absolute;
  bottom: 244px;
  z-index: 1;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  max-width: 1079px;
  width: 100%;
}


/* .left-image-stack,  .right-image-stack {
    max-width: 310px;
    flex:0 0 310px;
    text-align: center;
}

.middle-image-stack {
    max-width: 380px;
    flex:0 0 380px;
    text-align: center;
} */

/* .left-image-stack img, .middle-image-stack img, .right-image-stack img {
    width:100%;
    height: 100%;
    object-fit: cover;
} */


/*---Feature section----*/

.feature-section {
  padding-top:74px;
  position: relative;
}

.heading-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.heading-label {
  display: flex;
  align-items: center;
  max-width: fit-content;
  height: 42px;
  background: linear-gradient(360deg, #E2F0FD 0%, rgba(218, 237, 255, 0.21) 100%);
  border: 1px solid #D6EAFF;
  border-radius: 26px;
  column-gap: 8px;
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #0C73FF;
  padding: 0 26px 0 6px;
}

.heading-label span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: #BCDDFF;
  border-radius: 50%;
  overflow: hidden;
}

.heading-label span img {
  mix-blend-mode: multiply;
}

.section-heading {
  font-weight: 600;
  font-size: 45px;
  line-height: 55px;
  color: #032F6B;
}

.section-heading span {
  color:#0C73FF;
}

.sub-heading {
  font-weight: 400;
  font-size: 19px;
  line-height: 31px;
  color: #5A5A5A;
  text-align: center;
}

.feature-stack {
  position: relative;
  z-index: 2;
  margin-top: 67px;
  padding-left: 85px;
  padding-right: 85px;
  margin-bottom: 67px;
}

.behind-arrow {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: -1;
  top:50%;
  transform: translateY(-50%);
}

.left-side, .right-side {
  max-width:200px;
}

.left-side {
  margin-left: -48px;
}

.right-side {
  margin-right: -48px;
}

.feature-grid {
  display:flex;
  justify-content: center;
  column-gap: 17px;
}


.feature-grid-inner {
  /* max-width: 420px;
  flex:0 0 420px; */
  flex: 1 0 0;
  min-height: 300px;
  background: linear-gradient(131.14deg, #E5F3FF 2.12%, #FFFFFF 98.7%);
  border: 1px solid #D8EDFF;
  box-shadow: 0px 16px 21px rgba(219, 239, 255, 0.5);
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
  /* background: linear-gradient(160.66deg, #ECEBFF 12.4%, #FFFFFF 50.74%); */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-grid-inner figcaption {
  padding: 32px 35px;
}

.grid-inner-image {
  text-align: center;
}

.feature-grid-inner figure {
  margin-bottom: 20px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #0d6efd;
  border-radius: 8px;
}

.feature-grid-inner figure svg {
  width:40px;
  height:40px;
}

.feature-grid-inner figure svg path {
  fill:#00098C;
}

.feature-grid-inner h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  margin-bottom: 9px;
}

.feature-grid-inner p {
  font-weight: 400;
  font-size: 15px;
  line-height: 23px;
  color: #5A5A5A;
  margin-bottom: 0;
}

.feature-grid-inner:hover .btn-fill-blue {
  background: #38B6FF;
  color: #fff;
}


/*---Benefit Section----*/

.benefits-section {
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 74px;
}

.benefit-inner {
  border-radius: 32px;
  padding-top: 74px;
  padding-bottom: 74px;
  background: linear-gradient(107.57deg, #E9F5FF 0.38%, #F6FCFF 99.89%);
  border: 1px solid #D8EDFF;
}

.benefit-grid {
  margin-top: 67px;
  display: flex;
  align-items: center;
  justify-content: center;
  height:380px;
  margin-bottom: 67px;
}

.benefit-left, .benefit-right {
  height: 100%;
  display: flex;
  justify-content:space-between;
  flex-direction: column;
}

.benefit-stack {
  max-width: 323px;
  min-height: 157px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #D8EDFF;
  border-radius: 18px;
  padding:15px 25px;
}

.benefit-stack figure {
  margin-bottom: 17px;
}

.benefit-stack h5 {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}

.benefit-mid {
  display: flex;
  align-items: center;
}

.round-logo {
  width: 170px;
  height: 170px;
  flex: 0 0 170px;
  background: #D8EDFF;
  border: 1px solid #8BC9FE;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.round-logo img {
  height: 33px;
}

/*--- Testimonial Section----*/

.testimonial-section {
  padding-top: 74px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 74px;
}

.custom-container {
  max-width: 1404px;
  margin: 0 auto;
  padding-left: 12px;
  padding-right: 12px;
  position: relative;
  z-index: 5;
}

.up-container {
  margin-top: -81px;
}

.line-grid {
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height: 100%;
  z-index: 2;
}

.line-grid .vertical-line span {
  background:rgba(174, 174, 174, 0.3);
}

.line-grid .horri-line span {
  background: rgba(174, 174, 174, 0.3);
}

.line-grid .horri-1:after, .line-grid .horri-2:after, .line-grid .horri-3:after,
.line-grid .veerti-1:after, .line-grid .veerti-2:after, .line-grid .veerti-3:after {
  background: linear-gradient(90deg, #2d89fd, #c6dfff, transparent);
}


.overlay-full {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0;
  width:100%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0) 59.19%, #FFFFFF 100%);
  z-index: 3;
}
.image-grid {
  display: flex;
  justify-content: space-between;
  column-gap: 29px;
}

.image-grid figure {
  flex:1 0 0;
  position: relative;
  margin-bottom: 0;
}

.image-grid figure:first-child, .image-grid figure:last-child {
  top:74px;
}
.image-grid figure:nth-child(2), .image-grid figure:nth-child(7) {
  top:125px;
}

.image-grid figure:nth-child(4), .image-grid figure:nth-child(6) {
  top:47px;
}

.testimnial-slider-stack {
  margin-top: 67px;
  max-width: 815px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.testimnial-slider-stack::before{
  content: "";
  position: absolute;
  width: 410.62px;
  height: 90%;
  left: 10px;
  bottom:0;
  background: #B2DCFF;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.19);
  border-radius: 20px;
  transform: rotate(-4.33deg);
  z-index: -1;
}

.testimnial-slider-stack::after{
  content: "";
  position: absolute;
  width: 732px;
  height: 100%;
  left: 56px;
  bottom: 0;
  background: #B2DCFF;
  box-shadow: 0px 8px 14px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  transform: rotate(5.89deg);
  z-index: -2;
}

.testimnial-slider {
  max-width: 735px;
  min-height: 380px;
  background: #2D89FD;
  border-radius: 20px;
  position: relative;
  padding: 116px 45px 0 45px;
  color: #fff;
}

.testimnial-slider:after {
  content:"";
  position: absolute;
  width: 116px;
  height: 25px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  top: 34px;
  background: #1774E9;
  box-shadow: inset 0px -4px 18px 1px rgba(0, 0, 0, 0.35);
  border-radius: 27px;
}

.slide-inner {
 background:#2d89fd;
}

.slide-inner p {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 27px;
  color: #FFFFFF;
  margin-bottom: 40px;
}

.slide-inner h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 27px;
  color: #FFFFFF;
}

.designation {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 27px;
  color: #FFFFFF;
}


/*-----Cta Section----*/

.cta-section {
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 40px;
}

.cta-section-inner {
  background: linear-gradient(214.52deg, #E9F5FF 25.58%, #FAFDFF 84.83%);
  border: 1px solid #D8EDFF;
  border-radius: 32px;
  padding-top: 80px;
  padding-bottom: 74px;
}

.cta-section .inner-banner {
  height: auto;
  min-height: auto;
  padding-top: 0;
  overflow: visible;
  padding-left:39px;
  padding-right: 39px;
  color: #fff;
}

.cta-section .inner-banner .section-heading {
  color:#fff;
  margin-bottom: 23px;
}

.cta-section .inner-banner p{
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 23px;
}


.cta-section .back-left {
  width: 14vw;
  height: 24vw;
  left: 0.4vw;
  bottom: -1.25vw;
}

.cta-section .middle-left {
  width: 18vw;
  height: 37vw;
  left: 67px;
  bottom: -16.3vw;
}

.cta-section .front-left {
  width: 20vw;
  height: 26vw;
  left: 7.25vw;
  bottom: -6.7vw;
}

.cta-section .shape-group {
  left: 0;
  bottom: 0;
  z-index: -1;
  height: 100%;
  overflow: hidden;
  width: -webkit-fill-available;
}

.cta-section .horri-line, .cta-section .vertical-line {
  z-index: -2;
  overflow: hidden;
}

.cta-section--remove-layer {
  padding-left: 0;
  padding-right: 0;
  margin-top: 80px;
}

.cta-section--remove-layer .cta-section-inner {
  background: none;
  padding-top: 0;
  padding-bottom: 0;
  border: none;
}

.uploft-image {
  margin-top: -52px;
}

/*---Technology section---*/

.technology-section {
  margin-top: 74px;
}

.texh-stack {
  display: flex;
  align-items: center;
  justify-content:center;
  column-gap: 38px;
}

.tech-image-stack {
  width: 150px;
  height: 150px;
  background: linear-gradient(139.86deg, #FFFFFF 3.9%, #D8EDFF 96.31%);
  border: 1px solid #B2DCFF;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-image-stack img {
  width: 83px;
}

.middle-heading {
  max-width: 530px;
  text-align: center;
  flex: 0 0 530px;
}

.left-tech, .right-tech {
  row-gap: 33px;
  display: flex;
  flex-direction: column;
}

.left-tech .tech-image-stack:nth-child(2) {
  transform: translateX(-64px);
}

.right-tech .tech-image-stack:nth-child(2) {
  transform: translateX(64px);
}


/*-----Blog Section----*/

.blg-section {
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 74px;
}

.blog-inner {
  background: linear-gradient(107.57deg, #E9F5FF 0.38%, #F6FCFF 99.89%);
  border: 1px solid #D8EDFF;
  border-radius: 32px;
  padding-top: 74px;
  padding-bottom: 74px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.line-stack {
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height: 100%;
  z-index: -1;
}

.line-stack .vertical-line span,
.line-stack .horri-line span {
  background:#D4EBFF;
}

.blog-grid-listing {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(359px, 1fr));
  gap: 16px;
  margin-top: 67px;
  margin-bottom: 67px;
}

.blog-grid {
  background: #FEFEFE;
  border: 1px solid #D8EDFF;
  box-shadow: 0px 16px 21px rgba(219, 239, 255, 0.5);
  border-radius: 20px;
  overflow: hidden;
}

.blog-grid figure {
  height: 300px;
  overflow: hidden;
  position: relative;
  margin-bottom: 0;
}
.blog-grid figure a {
  position: absolute;
  width: fit-content;
  height: 34px;
  background: #0C73FF;
  border: 1px solid #0C73FF;
  border-radius: 34px;
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 15px;
  color: #FFFFFF;
  right: 17px;
  top: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
}

.blog-grid figure img {
  width:100%;
  height: 100%;
  object-fit: cover;
}

.blog-grid figcaption {
  padding: 26px 22px;
}

.blog-grid figcaption h3 {
  font-weight: 500;
  font-size: 19px;
  line-height: 22px;
  color: #000000;
  margin-bottom: 22px;
}

.blog-grid figcaption p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #595858;
  margin-bottom: 24px;
}

.blog-grid figcaption .date {
  max-width: fit-content;
  height: 34px;
  background: #D8EDFF;
  border: 1px solid #B2DCFF;
  border-radius: 34px;
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  padding: 0 17px;
}

/*----Faq Section----*/

.faq-section {
  padding-top: 74px;
}

.faq-section .heading-group {
  align-items: flex-start;
}

.faq-section .sub-heading {
  text-align: left;
}

.faq-item {
  background: linear-gradient(107.57deg, #E9F5FF 0.38%, #F6FCFF 99.89%);
  border: 1px solid #D8EDFF;
  border-radius: 16px;
  margin-bottom: 16px;
}
.faq-item.active .faq-answer {
  display: block;
}

.faq-question {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #0C73FF;
  position: relative;
  cursor: pointer;
  padding: 25px 50px 25px 20px;
}

.faq-answer {
  display: none;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  color: #000000;
  padding: 16px 23px 0;
  border-top: 1px solid #d2e6f8;
}

.faq-question span.icon {
  position: absolute;
  right: 16px;
  top: 24px;
  color: #00098C;
  font-size: 24px;
}

/*---Footer---*/

.outer-footer {
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 74px;
  padding-bottom: 20px;
}

.footer-inner {
  background: linear-gradient(107.57deg, #E9F5FF 0.38%, #F6FCFF 99.89%);
  border: 1px solid #D8EDFF;
  border-radius: 32px;
  padding-top: 74px;
  padding-bottom: 20px;
}

footer {
  border-radius: 32px;
  background: radial-gradient(100% 100% at 50% 0%, #88C5F9 8.46%, #0C73FF 69.86%);
  position: relative;
  padding: 66px 63px 32px;
}

.footer-logo {
  max-width: 230px;
  margin-bottom: 36px;
}

.social-list {
  display: flex;
  align-items: center;
  column-gap: 14px;
  margin-bottom: 36px;
}

.contactlist {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.contactlist li a {
  display: flex;
  align-items: center;
  column-gap: 14px;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  transition: all 0.5s ease-in-out;
}

.contactlist li a:hover {
  color:#00098C;
}

.footer-heading {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 600;
  font-size: 23px;
  line-height: 27px;
  color: #FFFFFF;
  margin-bottom: 30px;
}

.footer-menu li {
  margin-bottom: 8px;
}

.footer-menu li a {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
  transition: all 0.5s ease-in-out;
}

.footer-menu li a:hover {
  color:#00098C;
}

.copy-right {
  text-align: center;
  color: #fff;
}

.footer-cta {
  max-width: 895px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 74px;
}

.footer-cta .section-heading {
  text-align: left;
  font-size: 36px;
  line-height: 44px;

}

.footer-cta .sub-heading {
  text-align: left;
}

/*-----Sales Drive DMS---*/

.banner-image-stack {
  position: relative;
  z-index: 9;
}

.inner-page-banner {
  min-height: auto;
}

.inner-page-banner .banner-heading-area {
  text-align: left;
}

.inner-page-banner .banner-heading-area h1 {
  text-align: left;
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 28px;
}

.inner-page-banner .banner-heading-area .sub-heading {
  text-align: left;
  color:#fff;
}

.full-white-section {
  padding-top: 74px;
  position: relative;
  z-index: 1;
  padding-bottom: 180px;
  overflow: hidden;
}

.full-stack {
  margin-top: 67px;
}

.content-image-stack .heading-group {
  align-items: flex-start;
}

.content-image-stack .section-heading {
  font-size: 35px;
  line-height: 45px;
}

.content-image-stack .sub-heading {
  text-align: left;
}

.content-image-stack {
  border-radius: 32px;
  padding: 56px 105px;
  background: linear-gradient(107.57deg, rgba(255, 255, 255, 0.98) 0.38%, rgba(248, 248, 248, 0.98) 78.89%);
  border: 1px solid #ECECEC;
}

.z-inxex-5{
  z-index: 5;
}

.z-inxex-7{
  z-index: 7;
}



/*----Requet A Demo Page----*/

.inner-page-banner .banner-heading-area h4 {
  font-weight: 700;
  font-size: 21px;
  line-height: 25px;
  color: #FFFFFF;
}

.text-list {
  margin-top: 20px;
}

.text-list li {
  font-weight: 600;
  font-size: 15px;
  line-height: 19px;
  color: #ffffff;
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}

.text-list li:after {
  content:"";
  width:11px;
  height:11px;
  border-radius: 50%;
  background:#00098C;
  position: absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
}

.form-wrap-outer {
  background: linear-gradient(213.68deg, rgba(255, 255, 255, 0.203) 98.85%, rgba(255, 255, 255, 0.0029) 98.19%);
  border: 1px solid rgba(255, 255, 255, 0.31);
  backdrop-filter: blur(65px);
  border-radius: 30px;
  position: relative;
  z-index: 6;
  padding: 26px 29px 4px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.form-wrap-outer h4 {
  font-weight: 500;
  font-size: 23px;
  line-height: 22px;
  color: #FFFFFF;
}

.form-wrap-outer p {
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  line-height: 21px;
  color: #FFFFFF;
}

.input-style {
  width: 100%;
  height: 48px;
  background: #FFFFFF;
  border-radius: 8px;
  color:#000;
  font-size:14px;
  border: none;
  padding: 0 10px;
}

.select-style {
  width: 100%;
  height: 48px;
  background-color: #FFFFFF;
  border-radius: 8px;
  color:#000;
  font-size:14px;
  border: none;
  padding: 0 10px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACQSURBVHgB7ZFBDkAwEEUHcQ9uYCMRK07OSiQ2bqD3EGW+lDQ1yp4mbScz/7/JtET/CnDkZTXhnjXVY98qnyErqiQOqUE8dG0aItC8V6K9AMGTGVptcjtg4c6cVD6IbYYWnnOEQxCxgBMJb2WPI5mPWuB2cSHI35kvAAlC5n0kswhwIQYgmm8BNgTx8uJ7v7w2I6ha8d+kbFwAAAAASUVORK5CYII=);
  background-position: 95% center;
  appearance: none;
  background-repeat: no-repeat;
}

.textarea-style {
  width: 100%;
  height: 100px;
  background: #FFFFFF;
  border-radius: 8px;
  color:#000;
  font-size:14px;
  border: none;
  padding:10px;
}

.input-style, .select-style, .textarea-style {
  outline: none;
}

.form-stack {
  display: flex;
  align-items: center;
  column-gap: 12px;
}

.half {
  flex:1 0 0;
}

.submit-style-full {
  width: 100%;
  background: #00098C;
  border-radius: 39px;
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  color: #FFFFFF;
  padding: 13px 28px;
  border:none;
  transition: all 0.4s ease-in-out;
}

.submit-style-full:hover {
  background: #38B6FF;
  color: #fff;
}

.submit-style-full:focus {
  outline: none;
}

.wrapper {
  min-height: 100vh;
}

.cover {
  perspective: 500px;
}


/*----About Us Page----*/

.about-banner {
  /* background: radial-gradient(100% 100% at 50% 0%, #43A8FF 25.82%, #FFFFFF 100%); */
  background: radial-gradient(100% 100% at 50% 0%, #43A8FF 25.82%, #D8EDFF 100%);
}

.about-banner h1 {
  color: #00098C;
}

.about-banner p {
  font-size: 17px;
  max-width: 900px;
  margin: auto;
  color: #00098C;
}

.about-banner .horri-line span, 
.about-banner .vertical-line span {
  background: rgba(50, 161, 255, 0.42);
}

.flating-shadow {
  position: absolute;
  left:0;
  top:-90px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  z-index: -1;
}

.app-image-place {
  position: relative;
  z-index: 6;
}

.our-story-section {
  padding-top: 74px;
}

.our-story-section .heading-group {
  align-items: flex-start;
}

.our-story-section .sub-heading {
  text-align: right;
}

.choose-section {
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 74px;
}


.inner-choose {
  background: linear-gradient(214.52deg, #E9F5FF 25.58%, #FAFDFF 84.83%);
  border: 1px solid #D8EDFF;
  border-radius: 32px;
  padding-top: 74px;
  padding-bottom: 74px;
  overflow: hidden;
  position: relative;
  z-index: 3;
}

.step-whay {
  margin-top: 64px;
  display: flex;
  column-gap: 9px;
}
.step-header {
  padding: 31px;
  border-radius: 20px;
  min-height: 206px;
}

.step-body {
  border-radius: 20px;
  overflow: hidden;
}

.step-header h4 {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  margin-bottom: 13px;
}

.step-header p{
  font-size: 14px;
  margin-bottom: 0;
}

.step-whay .step-inner:nth-child(1) .step-header {
  background: #c1d3fe;
}

.step-whay .step-inner:nth-child(2) .step-header {
  background: #ccdbfd;
}

.step-whay .step-inner:nth-child(3) .step-header {
  background: #d7e3fc;
}

.step-whay .step-inner:nth-child(4) .step-header {
  background: #e2eafc;
}

.step-inner {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}

.misson-section {
  margin-top: 74px;
}

.misson-section .heading-group {
  align-items: flex-start;
}
.misson-section .sub-heading {
  text-align: left;
}

/*----Retailer App----*/

.serial-grid {
  margin-top: 74px;
}

.serial-grid-block .heading-group {
  align-items: flex-start;
}
.serial-grid-block .section-heading {
  font-size: 35px;
  line-height: 44px;
}

.serial-grid-block {
  background: linear-gradient(306.51deg, #FFFFFF 47.44%, #C8DFFF 100%);
  border-radius: 32px;
  padding: 30px 54px;
  /* border:0.5px solid #C8DFFF; */
}

.resize-image {
  max-width:350px;
  margin: auto;
}

.shadow-right {
  background: linear-gradient(306.51deg, #C8DFFF -0.04%, #FFFFFF 47.44%);
}

.three-full-grid {
  margin-top: 64px;
}

.anysection-outer {
  padding-left:20px;
  padding-right:20px;
}

.technology-section-inner {
  border-radius: 32px;
  padding-top: 80px;
  padding-bottom: 74px;
}

.light-blue-background {
  background: linear-gradient(107.57deg, #E9F5FF 0.38%, #F6FCFF 99.89%);
  border: 1px solid #D8EDFF;
	position:relative;
	z-index:2;
}

.blog-header p {
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  max-width: 980px;
  margin: auto;
}


.blog-contain {
  padding-top: 231px;
  background: linear-gradient(180deg, #F1F1F1 29.57%, #FFFFFF 100%);
}

.blog-container {
  max-width: 1143px;
  margin: 0 auto;
  padding: 0 24px;
  color: #000;
}

.blog-single-header {
  padding-left: 110px;
  padding-right: 110px;
  margin-bottom: 48px;
}

.single-breadcrumg {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 26px;
row-gap:5px;
  color: #7f7f7f;
  margin-bottom: 18px;
}
.single-breadcrumg span::after {
  content: "/";
  position: absolute;
  right: -16px;
  color: #7f7f7f;
  top: 0;
}
.single-breadcrumg span, .single-breadcrumg span a {
  font-size: 15px;
  color: #0d6efd;
  font-weight: 500;
  position: relative;
}

.single-blog-title {
  font-size: 44px;
  line-height: 120%;
  margin: 0;
  color: #000;
}

.meta-blocks {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

.meta-blocks-stack {
  display: flex;
  line-height: 1;
  gap: 7px;
}

.meta-blocks-stack span {
  font-size: 21px;
  color:#0c73ff;
}

.meta-blocks-stack .stack {
  line-height: 1;
  color: #626262;
}

.meta-blocks-stack .stack h6 {
  line-height: 1;
  font-weight: 600;
  color: #000;
}

.single-thumb-image {
  height: 500px;
  overflow: hidden;
  border-radius: 18px;
}

.single-thumb-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.blog-single-content-wrapper {
  display: flex;
  gap: 66px;
  margin: 66px 0;
  align-items: flex-start;
}

.site-single-post-content {
  flex: 1;
  color: #000;
  padding-left: 110px;
  padding-right: 110px;
}

.blog-single-right-sidebar {
  flex: 0 0 286px;
}

.site-single-post-content p {
  font-size: 17px;
  color: #000;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 25px;
  color: #6F6F6F;
}

.site-single-post-content h2, .site-single-post-content h3, .site-single-post-content h4 {
  color: #000;
}

.site-single-post-content h2 {
  font-size: 25px;
  line-height: 120%;
  margin-bottom: 35px;
}

.site-single-post-content ul, .site-single-post-content ol {
  margin-bottom: 35px;
}
.site-single-post-content ul li, .site-single-post-content ol li {
  position: relative;
  padding: 0 0 0 11px;
  font-size: 16px;
  color: #6F6F6F;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}

.site-single-post-content strong {
  color: #404040;
}

body.single-post header {
  position: absolute;
  top: 26px;
}

.simple-post-nav {
  margin: 40px 0;
  padding: 20px 0;
  border-top: 1px solid #eee;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.nav-item {
  flex: 1;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: #333;
  padding: 15px;
  border-radius: 8px;
  transition: background 0.3s;
}

.nav-link:hover {
  background: #f5f5f5;
}

.nav-image {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.nav-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-text span {
  font-size: 12px;
  color: #666;
  font-weight: 600;
}

.nav-text h4 {
  margin: 5px 0 0 0;
  font-size: 14px;
  line-height: 1.4;
}

.next-item .nav-link {
  flex-direction: row-reverse;
  text-align: right;
}

.intrigated-image {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.intrigated-image img {
  max-width: 840px;
}

.intrigated-image svg {
  width: 80%;
  height: auto;
}

/*---New Technology Stack Section----*/

.new-tech-stack {
  text-align: center;
  max-width:578px;
  margin: auto;
}

.icon-holder {
  background: #F3F3F3;
  width: 102px;
  height: 102px;
  border-radius: 50%;
  border:1px solid #0C73FF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.first-layer {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 22;
  justify-content: space-between;
}

.secont-layer {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 22;
  justify-content: space-evenly;
}

.center-layer {
  width:122px;
  height: 122px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 121px auto 0 auto;
}

.center-layer img {
  width: 88px;
}

.center-layer:after {
  content:"";
  position:absolute;
  width: 158px;
  height: 158px;
  background: linear-gradient(180deg, #FFFFFF 0%, #0C73FF 95.05%);
  z-index: -1;
  border-radius: 50%;
}

.center-layer:before {
  content:"";
  position:absolute;
  width: 192px;
  height: 192px;
  background: linear-gradient(180deg, #FFFFFF 0%, #0C73FF 95.05%);
  z-index: -1;
  border-radius: 50%;
}

.dash-line, .dash-icon-second {
  position: absolute;
  left:0;
  top:0;
  right:0;
}

.dash-line {
  top:50%;
  z-index: -1;
}

.dash-line svg {
  width:78%;
  height: auto;
}

.dash-icon-second {
  top: 108%;
}


.path {
  animation: dash 50s linear infinite;
  animation-direction: reverse;
  stroke-dasharray: 6;
}

@-webkit-keyframes dash {
  to {
    stroke-dashoffset: 700;
  }
}

.path2 {
  animation: dash 50s linear infinite;
  stroke-dasharray: 6;
}

@-webkit-keyframes dash {
  to {
    stroke-dashoffset: 700;
  }
}


/*---Hoome Page Her Sectin New Style---*/

.back-first-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  left:0;
  top:0;
   display: flex;
   z-index: 1;
}

.back-first-layer > div {
  width: 99px;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #4795FF 71.15%, #2682FF 100%);
  background-blend-mode: soft-light;
  mix-blend-mode: soft-light;
}

.left-shape, .right-shape {
  position: absolute;
  bottom:0;
  z-index: -1;
}
.left-shape{
  left:0;
  width:100vw;
  filter: opacity(100%) blur(93px);
}

.right-shape {
  right:0;
  width:100vw;
  filter: opacity(100%) blur(93px);
}


/*---Cts New Section Design---*/

.cross-inner-banner {
  border-radius: 32px;
  /* background: radial-gradient(100% 100% at 50% 0%, #88C5F9 20.46%, #0C73FF 69.86%); */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  column-gap: 87px;
background: radial-gradient(117.73% 676.51% at 1.17% 2.85%, #88C5F9 0%, #55A3FB 24.58%, #0C73FF 63.05%, #0061E4 100%);

}

.cta-image {
  align-self: flex-end;
  position: relative;
  left: 1px;
  bottom: -69px;
	padding-left: 100px;
}

.left-text-part {
  padding: 26px 34px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width:469px;
  flex:0 0 469px;
}

.left-text-part h2 {
  font-weight: 600;
  font-size: 36px;
  line-height: 45px;
  color: #ffffff;
  margin-bottom: 8px;
}

.left-text-part p {
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: #ffffff;
  margin-bottom: 22px;
}

.full-button {
  width:100%;
  text-align: center;
  background: #00098C;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  color: #FFFFFF;
  padding: 13px 28px;
  border:none;
}

.divider {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  position: relative;
  z-index:2;
  margin-bottom: 1rem;
}
.divider span{
  background: #53a2fb;
  display: inline-block;
  padding: 10px;
  border-radius: 50%;
  font-size: 12px;
}

.divider:after {
  content:"";
  position: absolute;
  left:0;
  width:100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  top:50%;
  transform:translateY(-50%);
  z-index: -1;
}

.short-form {
  position: relative;
}

.short-form .wpcf7-spinner {
  bottom: 11px;
  position: absolute;
  right: 8px;
  margin: 0;
}

.long-buttoon-group {
  display: flex;
  align-items: center;
  column-gap: 6px;
}

.long-buttoon-group a {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  width: calc(100% / 2);
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.long-buttoon-group a svg {
  width:30px;
  height: 30px;
}

.long-buttoon-group a:first-child svg path {
  fill:#fff;
}




