.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 24px;
  max-width: 1200px;
  margin: 50px auto;
}
.col {
  display: grid;
  gap: 24px;
}

/* Perspective for 3D flip */
.flip {
  perspective: 1000px;
}

/* Card container */
.card {
  position: relative;
  height: 520px;
  transform-style: preserve-3d;
  transition: transform 0.7s ease;
  border-radius: 20px;
  overflow: hidden;
}
.card.tall {
  height: 560px;
}
.card.half {
  height: calc((560px - 24px) / 2);
}

/* Flip animation */
.flip:hover .card {
  transform: rotateY(180deg);
}

/* Common face styles */
.side {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  backface-visibility: hidden; /* 🔥 hides back when front is visible */
  border-radius: 20px;
}

/* FRONT (Image only) */
.front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* BACK (Text + Background only) */
.back {
  transform: rotateY(180deg);
  background: #1554ff;
  color: #fff;
  padding: 24px;
  text-align: left;
  align-content: end;
  border-radius: 20px;
}

/* Typography */
.back h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 600;
}
.back p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .case-grid {
    grid-template-columns: 1fr;
  }
  .card,
  .card.tall,
  .card.half {
    height: 420px;
  }
}

header.process-section-feature {
  text-align: center;
  padding-top: 100px;
}
.features-section-process {
  position: relative;
  margin-top: -65px;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}

.decorative-circle {
  position: absolute;
  /* border: 2px dashed #e0e0e0; */
  border-radius: 50%;
  pointer-events: none;
}

.circle-1 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circle-2 {
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circle-3 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.center-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.arrow {
  animation: 25s linear 0s infinite normal none running ani;
  position: absolute;
  top: -2%;
  left: 3%;
  animation: ani 25s linear infinite;
  width: 85%;
  z-index: -1;
}

.heading-shade {
  /* font-weight: 600;
     background: linear-gradient(90deg, #352f75, #7b37a9, #39a6dd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    white-space: nowrap;
    margin-bottom: 8px; */
  background-image: linear-gradient(
    90deg,
    #6a11cb 0%,
    #8e49e8 45%,
    #1fa2ff 100%
  ) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important; /* Chrome/Safari */
  color: transparent !important; /* Firefox */

  display: inline-block; /* ensures the background paints to the text box only */
}

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

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

.center-image img {
  width: 400px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

.feature-box-process {
  position: absolute;
  background: transparent;
  padding: 0;
  max-width: 280px;
}

.feature-box-process h3 {
  font-weight: 600;
  background: linear-gradient(90deg, #352f75, #7b37a9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  white-space: nowrap;
  margin-bottom: 8px;
}

.feature-box-process p {
  line-height: 1.5;
  font-size: 18px;
}

.connector-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #7472ff;
  border-radius: 50%;
  z-index: 5;
}

.feature-1 {
  top: 28%;
  left: 13%;
  text-align: right;
}

.feature-1 .connector-dot {
  top: 7px;
  left: 464px;
}

.feature-1::after {
  content: "";
  position: absolute;
  right: -180px;
  top: 11px;
  width: 160px;
  height: 2px;
  background: #7669ff;
}

.feature-2 {
  top: 23%;
  right: 13%;
  text-align: left;
}

.feature-2 .connector-dot {
  left: -213px;
  top: 7px;
}

.feature-2::after {
  content: "";
  position: absolute;
  left: -200px;
  top: 11px;
  width: 180px;
  height: 2px;
  background: #7669ff;
}

.feature-3 {
  bottom: 20%;
  left: 12%;
  text-align: right;
}

.feature-3 .connector-dot {
  top: 7px;
  left: 454px;
}

.feature-3::after {
  content: "";
  position: absolute;
  right: -170px;
  top: 11px;
  width: 150px;
  height: 2px;
  background: #7669ff;
}

.feature-4 {
  top: 65%;
  right: 8%;
  transform: translateY(-50%);
  text-align: left;
}

.feature-4 .connector-dot {
  left: -213px;
  top: 7px;
}

.feature-4::after {
  content: "";
  position: absolute;
  left: -200px;
  top: 11px;
  width: 180px;
  height: 2px;
  background: #7669ff;
}

.feature-5 {
  bottom: -17%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.feature-5 .connector-dot {
  top: -134px;
  left: 50%;
  transform: translateX(-50%);
}

.feature-5::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100px;
  background: #7669ff;
}

.hero-section {
  position: relative;
  width: 100%;
  height: auto;
  background: #f8f9fb;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.background-blur {
  position: absolute;
  width: 3487.477px;
  height: 3188.026px;
  top: -808.361px;
  left: -943.742px;
  background: url(https://static.codia.ai/custom_image/2025-07-02/084810/background-blur.png)
    no-repeat center;
  background-size: cover;
  filter: blur(74px);
  animation: float 20s ease-in-out infinite;
}

.background-mask {
  position: absolute;
  width: 2560px;
  height: 1920px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.2;
  overflow: hidden;
  -webkit-mask-image: url(https://static.codia.ai/custom_image/2025-07-02/084810/mask-image.png);
  -webkit-mask-size: cover;
}

.background-svg {
  width: 2549.333px;
  height: 1905.333px;
  margin: 7.334px 0 0 5.334px;
  background: url(https://static.codia.ai/custom_image/2025-07-02/084810/hero-background.svg)
    no-repeat center;
  background-size: cover;
  animation: pulse 15s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 140px;
  max-width: 1706.667px;
  margin: 0 auto;
  padding-left: 42.667px;
  padding-right: 42.667px;
}

.hero-text-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 1621.333px;
}

.whats-new-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 9px 20px;
  background: #ffffff;
  border: 1px solid #cfd4dc;
  border-radius: 15px;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  animation: slideInDown 1s ease-out;
}

.badge-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 140px;
  padding: 2.667px 10.667px;
  background: var(--background-primary);
  border: 1.333px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}

.status-indicator {
  width: 10.667px;
  height: 10.667px;
  position: relative;
}

.status-dot {
  width: 8px;
  height: 8px;
  margin: 1.334px;
  background: url(https://static.codia.ai/custom_image/2025-07-02/084810/status-indicator.svg)
    no-repeat center;
  background-size: cover;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.badge-text {
  color: var(--text-secondary);
  font-family: Roboto, var(--default-font-family);
  font-size: 18px;
  font-weight: 500;
  line-height: 26.667px;
  text-align: center;
  white-space: nowrap;
}

.badge-info {
  display: flex;
  text-align: center;
  align-items: center;
  gap: 10px;
}

.info-text {
  color: var(--text-secondary);
  font-family: Roboto, var(--default-font-family);
  font-size: 18px;
  font-weight: 500;
  line-height: 26.667px;
  white-space: nowrap;
}

.info-icon {
  width: 20px;
  height: 20px;
  line-height: 16px;
  overflow: hidden;
}

.main-heading {
  width: 100%;
  max-width: 1621.333px;
  font-family: Roboto, var(--default-font-family);
  font-size: 80px;
  font-weight: 600;
  line-height: 93.75px;
  text-align: center;
  letter-spacing: -1.6px;
  animation: fadeInUp 1.2s ease-out 0.3s both;
}

.heading-primary {
  color: var(--text-primary);
}

.heading-gradient {
  background: linear-gradient(90deg, #352f75, #7b37a9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtext {
  width: 100%;
  max-width: 640px;
  height: 80px;
  color: var(--text-secondary);
  font-family: Roboto, var(--default-font-family);
  font-size: 26px;
  font-weight: 500;
  line-height: 40px;
  text-align: center;
  margin: 0;
  animation: fadeInUp 1.2s ease-out 0.6s both;
}

.email-signup-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 804px;
  margin-top: 38.333px;
  animation: fadeInUp 1.2s ease-out 0.9s both;
}

.email-input-wrapper {
  position: relative;
  width: 804px;
  height: 93.333px;
}

.email-input-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border: 1.333px solid #51459e;
  border-radius: 53.333px;
  overflow: hidden;
}
span.placeholder-text {
  display: none;
}
/* .placeholder-text {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 500;
  line-height: 40px;
  white-space: nowrap;
  transition: all 0.3s ease;
} */

.get-started-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 245.333px;
  height: 92px;
  background: #84e8f4;
  border-radius: 53.333px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.get-started-btn:hover {
  background: #6dd9e6;
  transform: translateY(-50%) scale(1.05);
}

.btn-text {
  color: #51459e;
  font-family: Roboto, var(--default-font-family);
  font-size: 22px;
  font-weight: 600;
  line-height: 40px;
  text-align: center;
  white-space: nowrap;
}

.arrow-icon {
  position: absolute;
  top: 45%;
  right: 30px;
  transform: translateY(-50%);
  width: 22px;
  height: 19.219px;
}

.arrow-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features-text {
  width: 640px;
  color: #475466;
  font-family: Roboto, var(--default-font-family);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}

.feature-graphic {
  margin-top: -95px;
  width: 1257.335px;
  height: 240.431px;
  top: 598.243px;
  left: 306.666px;
  z-index: 5;
  animation: slideInUp 1.5s ease-out 1.2s both;
}

.feature-graphic img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
}

.product-showcase {
  /* position: absolute; */
  /* width: 1432px; */
  /* height: 773.333px; */
  top: 766.666px;
  left: 244px;
  z-index: 4;
  animation: slideInUp 1.5s ease-out 1.5s both;
  margin-top: -70px;
  text-align: center;
}

.product-showcase img {
  width: 90%;
  /* height: 100%; */
  object-fit: cover;
}

.partners-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 20;
  padding: 150px 0px 0px 0px;
}

.partners-content {
  position: relative;
  width: 1178.616px;
  height: 125.767px;
  margin: 85.334px auto 0;
  text-align: center;
}

.partners-title {
  margin: 0 auto 55px;
  color: #0b277c;
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out;
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 66.074px;
  width: 100%;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.partner-logo {
  position: relative;
  width: 235px;
  height: 50px;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  transform: translateY(-5px) scale(1.05);
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.partner-logo:hover img {
  filter: grayscale(0%);
}

.partner-logo:nth-child(1) {
  height: 60px;
}

.partner-logo:nth-child(3) {
  height: 40px;
}

.partner-logo:nth-child(4) {
  height: 40px;
}

.partner-logo:nth-child(5) {
  height: 40px;
}

.partner-logo-2 {
  position: relative;
}

.partner-icon {
  position: absolute;
  width: 20.72%;
  height: 100%;
  top: 0;
  left: 0;
}

.partner-text {
  position: absolute;
  width: 70.46%;
  height: 41.59%;
  top: 31.48%;
  left: 29.54%;
}

/* Animation for logos */
.partner-logo {
  animation: slideInUp 0.8s ease-out;
}

.partner-logo:nth-child(1) {
  animation-delay: 0.1s;
}

.partner-logo:nth-child(2) {
  animation-delay: 0.2s;
}

.partner-logo:nth-child(3) {
  animation-delay: 0.3s;
}

.partner-logo:nth-child(4) {
  animation-delay: 0.4s;
}

.partner-logo:nth-child(5) {
  animation-delay: 0.5s;
}

/* cta section css */

.cta-section {
  position: relative;
  width: 100%;
  background: #ffffff;
  /* padding: 0 130.667px 132px; */
  overflow: hidden;
}

.cta-container {
  position: relative;
  width: 1382.667px;
  margin: 0 auto;
  text-align: center;
}

.cta-background {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 310.667px;
  z-index: 1;
  margin-top: 60px;
}

.cta-background img {
  width: 90%;
  height: 90%;
}
.features-main-heading2 {
  font-size: 50px;
  font-weight: 600;
  animation: fadeInUp 1s ease-out 0.4s both;
  text-align: center;
}
.heading-gradient-cta {
  background: linear-gradient(90deg, #352f75 19%, #7b37a9 50%, #39a6dd 69%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.cta-content {
  position: relative;
  z-index: 2;
  align-items: center;
  justify-content: center;
}

.cta-title {
  font-family: "Roboto", var(--default-font-family);
  font-size: 50px;
  font-weight: 600;
  line-height: 58.594px;
  text-align: center;
  letter-spacing: -0.5px;
  max-width: 839px;
  margin: 0;
}

/* features section */

.features-section {
  position: relative;
  width: 100%;
  background: var(--background-primary);
  padding: 0px 0px 100px 0px;
  overflow: hidden;
}

.features-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1472.863px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 50px;
}

.features-left {
  flex: 1;
  max-width: 642px;
  animation: slideInLeft 1s ease-out;
}

.section-indicator {
  width: 10px;
  height: 10px;
  background: #0b277c;
  margin-bottom: 4px;
  border-radius: 2px;
}

.section-title {
  color: #0a0a0c;
  font-size: 18px;
  font-weight: 500;
  line-height: 25.405px;
  margin-bottom: 45.719px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.features-main-heading {
  text-align: left;
  font-size: 50px;
  font-weight: 400;
  line-height: 63.623px;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out 0.4s both;
}
.features-main-heading2 {
  font-size: 50px;
  font-weight: 500;
  line-height: 63.623px;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out 0.4s both;
  text-align: center;
}
.features-main-heading .heading-primary {
  color: var(--text-primary);
}

.features-main-heading .heading-gradient {
  /* background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out;
}

.feature-item:nth-child(4) {
  animation-delay: 0.6s;
}

.feature-item:nth-child(5) {
  animation-delay: 0.8s;
}

.feature-item:nth-child(6) {
  animation-delay: 1s;
}

.feature-number {
  color: #0b277c;
  font-family: Roboto, var(--default-font-family);
  font-size: 35px;
  font-weight: 500;
  line-height: 53.019px;
  opacity: 0.3;
  white-space: nowrap;
  min-width: 40px;
}

.feature-content {
  flex: 1;
}

.feature-title {
  color: var(--text-primary);
  font-family: Roboto, var(--default-font-family);
  font-size: 24px;
  font-weight: 400;
  line-height: 30.928px;
  margin-bottom: 10px;
  white-space: nowrap;
}

.feature-description {
  color: var(--text-secondary);
  font-family: Roboto, var(--default-font-family);
  font-size: 18px;
  font-weight: 500;
  line-height: 29.823px;
  margin: 0;
}

.features-cta {
  margin-top: 40px;
  animation: fadeInUp 1s ease-out 1.2s both;
}

.cta-btn {
  width: 187px;
  height: 56px;
  background: url(https://static.codia.ai/custom_image/2025-07-02/084810/footer-cta-button.png)
    no-repeat center;
  background-size: cover;
  border-radius: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-text {
  color: #ffffff;
  font-family: Inter, var(--default-font-family);
  font-size: 20px;
  font-weight: 400;
  line-height: 24.205px;
  white-space: nowrap;
}

.features-right {
  flex: 1;
  max-width: 760px;
  position: relative;
  animation: slideInRight 1s ease-out 0.5s both;
}

.app-interface-container {
  position: relative;
  width: 100%;
  height: 500px;
}

.app-interface {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22.091px;
  overflow: hidden;
}

.phone-mockup {
  position: absolute;
  top: 140px;
  right: 0;
  width: 35.346px;
  height: 246.851px;
  z-index: 10;
  animation: float 4s ease-in-out infinite;
}

.phone-container {
  position: relative;
  width: 100%;
  height: 236.377px;
  overflow: hidden;
}

.phone-screen {
  position: absolute;
  width: 93.75%;
  height: 100%;
  top: 0;
  left: 3px;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-side {
  position: absolute;
  width: 6.25%;
  height: 100%;
  top: 0;
  right: 0;
}

.phone-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  background: #0a0a0c;
  border-radius: 22.091px;
  bottom: 30px;
  display: flex;
  right: 45px;
  padding: 30px;
  align-items: center;
  gap: 67.031px;
  animation: slideInUp 1s ease-out 1s both;
}

.experience-number {
  font-size: 82px;
  font-weight: 400;
  line-height: 108.689px;
}

.number-white {
  color: #ffffff;
}

.number-red {
  color: #ff0000;
}

.experience-text {
  color: #ffffff;
  font-family: Roboto, var(--default-font-family);
  font-size: 18.48421287536621px;
  font-weight: 500;
  line-height: 29.823px;
}

/* counter csss */

.py-lg-6 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

/* Background */
.ft-hero-bg {
  position: absolute;
  inset: 0;
  background: url("../assets/images/chex.png") no-repeat;
  background-size: cover;
  background-position: top;
}
.ft-hero {
  background: url(../assets/images/decorative-background.webp) no-repeat;
  background-position: center;
  background-size: cover;
}
.py-5 {
  padding-top: 150px;
  padding-bottom: 150px;
}
.counter-title {
  margin-bottom: 175px;
}
.right-description-counters {
  text-align: -webkit-right;
}
/* Text styles */
.ft-hero-heading {
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
  font-size: clamp(1.85rem, 1.35rem + 2.2vw, 3rem); /* mobile → desktop */
}
.ft-hero-heading-normal {
  color: #000;
}
.ft-hero-heading-gradient {
  background: linear-gradient(90deg, #352f75, #7b37a9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  white-space: nowrap;
}

.ft-hero-description {
  max-width: 48ch;
  font-size: clamp(0.975rem, 0.9rem + 0.3vw, 1.125rem);
  line-height: 1.6;
  color: #000;
}

/* Stats */
.ft-stat-number {
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    "Noto Sans",
    "Apple Color Emoji",
    "Segoe UI Emoji";
  font-weight: 700;
  font-size: clamp(1.75rem, 1.3rem + 2vw, 3.25rem);
  line-height: 1.1;
  color: #000;
}
.ft-stat-label {
  font-weight: 600;
  font-size: clamp(1rem, 0.95rem + 0.4vw, 1.35rem);
  color: #000;
  margin-top: 0.25rem;
}

/* Ensure foreground above background */

img.grid-shape {
  bottom: 0px;
  position: absolute;
  right: 30px;
}
img.grid-shape-2 {
  position: relative;
  right: -240px;
}
.ft-hero .container {
  position: relative;
  z-index: 1;
}

.v1146_4572 {
  width: 100%;
  height: auto;
  background: rgba(255, 255, 255, 1);
  opacity: 1;
  position: relative;
  /* top: 0px; */
  /* left: 0px; */
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 50px;
  margin: 150px 0px;
}
.v1146_3967 {
  width: 490px;
  height: 692px;
  background: url("../images/v1146_3967.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  /* position: absolute; */
  /* top: 93px; */
  /* left: 168px; */
  overflow: hidden;
}
.v1146_3968 {
  /* width: 489px; */
  height: 692px;
  background: url("../images/v1146_3968.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  position: relative;
  top: 0px;
  left: 0px;
  overflow: hidden;
}
.v1146_3969 {
  /* width: 489px; */
  height: 692px;
  background: url("../assets/images/Link.png");
  opacity: 1;
  position: relative;
  top: 0px;
  left: 0px;
  border-top-left-radius: 21px;
  border-top-right-radius: 21px;
  border-bottom-left-radius: 21px;
  border-bottom-right-radius: 21px;
  overflow: hidden;
}
.v1146_3970 {
  width: 370px;
  color: rgba(255, 255, 255, 1);
  position: absolute;
  top: 53px;
  left: 53px;
  font-family: Roboto;
  font-weight: Regular;
  font-size: 30px;
  opacity: 1;
  text-align: left;
}
.v1146_3971 {
  width: 345px;
  color: rgba(240, 242, 244, 1);
  position: absolute;
  top: 146px;
  left: 53px;
  font-family: Roboto;
  font-weight: Regular;
  font-size: 18px;
  opacity: 1;
  text-align: left;
}
.v1146_3977 {
  width: 26px;
  height: 22px;
  background: url("../images/v1146_3977.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  position: absolute;
  top: 33px;
  left: 62px;
  transform: rotate(-42deg);
  overflow: hidden;
}
.v1146_3978 {
  width: 24px;
  height: 21px;
  background: url("../images/v1146_3978.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  position: relative;
  top: 0px;
  left: 0px;
  overflow: hidden;
}
.v1146_3979 {
  width: 24px;
  height: 21px;
  background: url("../images/v1146_3979.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  position: relative;
  top: 0px;
  left: 0px;
  overflow: hidden;
}
.v1146_3980 {
  width: 21px;
  height: 17px;
  background: url("../images/v1146_3980.png");
  opacity: 1;
  position: absolute;
  top: 0px;
  left: 2px;
  border: 2.0459282398223877px solid
    linear-gradient(rgba(11, 39, 124, 1), rgba(67, 130, 255, 1));
}
.v1146_3981 {
  width: 490px;
  /* height: 365px; */
  background: url("../images/v1146_3981.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  /* position: absolute; */
  /* top: 96px; */
  /* left: 717px; */
  overflow: hidden;
}
.v1146_3982 {
  width: 490px;
  height: 310px;
  background: url("../images/v1146_3982.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  /* position: absolute; */
  /* top: 1px; */
  /* left: 0px; */
  overflow: hidden;
}
.v1146_3983 {
  width: 490px;
  height: 310px;
  background: url(../assets/images/Link-2.png);
  opacity: 1;
  position: relative;
  top: 0px;
  left: 0px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  overflow: hidden;
}
.v1146_3984 {
  width: 209px;
  color: rgba(10, 10, 12, 1);
  position: absolute;
  top: 155px;
  left: 237px;
  font-family: Roboto;
  font-weight: Regular;
  font-size: 30px;
  opacity: 1;
  text-align: right;
}
.v1146_3985 {
  width: 310px;
  color: rgba(74, 73, 73, 1);
  position: absolute;
  top: 224px;
  left: 168px;
  font-family: Roboto;
  font-weight: Regular;
  font-size: 18px;
  opacity: 1;
  text-align: right;
}
.v1146_3986 {
  width: 184px;
  height: 45px;
  background: url("../images/v1146_3986.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  position: absolute;
  top: 1px;
  left: 267px;
  overflow: hidden;
}
.v1146_3987 {
  width: 184px;
  height: 54px;
  background: url("../images/v1146_3987.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  position: absolute;
  top: 48px;
  left: 0px;
  overflow: hidden;
}
.v1146_3988 {
  width: 184px;
  height: 54px;
  background: url("../images/v1146_3988.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  position: relative;
  top: 0px;
  left: 0px;
  overflow: hidden;
}
.v1146_3989 {
  width: 184px;
  height: 54px;
  background: url("../images/v1146_3989.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  position: relative;
  top: 0px;
  left: 0px;
  overflow: hidden;
}
.v1146_3990 {
  width: 184px;
  height: 54px;
  background: rgba(255, 255, 255, 1);
  opacity: 1;
  position: relative;
  top: 0px;
  left: 0px;
}
.v1146_3991 {
  width: 26px;
  height: 23px;
  background: url("../images/v1146_3991.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  position: absolute;
  top: 10px;
  left: 72px;
  transform: rotate(-40deg);
  overflow: hidden;
}
.v1146_3992 {
  width: 29px;
  height: 25px;
  background: url("../images/v1146_3992.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  position: relative;
  top: 0px;
  left: 0px;
  overflow: hidden;
}
.v1146_3993 {
  width: 29px;
  height: 25px;
  background: url("../images/v1146_3993.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  position: relative;
  top: 0px;
  left: 0px;
  overflow: hidden;
}
.v1146_3994 {
  width: 25px;
  height: 20px;
  background: url("../images/v1146_3994.png");
  opacity: 1;
  position: absolute;
  top: 0px;
  left: 3px;
  border: 2.4000868797302246px solid
    linear-gradient(rgba(11, 39, 124, 1), rgba(67, 130, 255, 1));
}
.v1146_3995 {
  width: 490px;
  /* height: 377px; */
  background: url("../images/v1146_3995.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  /* position: absolute; */
  /* top: 461px; */
  /* left: 717px; */
  overflow: hidden;
}
.v1146_3996 {
  width: 489px;
  height: 325px;
  background: url("../images/v1146_3996.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  position: relative;
  top: 0px;
  left: 0px;
  overflow: hidden;
}
.v1146_3997 {
  width: 489px;
  height: 325px;
  background: url("../assets/images/Link-3.png");
  opacity: 1;
  position: relative;
  top: 0px;
  left: 0px;
  border-top-left-radius: 21px;
  border-top-right-radius: 21px;
  border-bottom-left-radius: 21px;
  border-bottom-right-radius: 21px;
  overflow: hidden;
}
.v1146_3998 {
  width: 223px;
  color: rgba(255, 255, 255, 1);
  position: absolute;
  top: 53px;
  left: 53px;
  font-family: Roboto;
  font-weight: Regular;
  font-size: 30px;
  opacity: 1;
  text-align: left;
}
.v1146_3999 {
  width: 336px;
  color: rgba(240, 242, 244, 1);
  position: absolute;
  top: 156px;
  left: 53px;
  font-family: Roboto;
  font-weight: Regular;
  font-size: 18px;
  opacity: 1;
  text-align: left;
}
.v1146_4005 {
  width: 25px;
  height: 22px;
  background: url("../images/v1146_4005.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  position: absolute;
  top: 33px;
  left: 62px;
  transform: rotate(-42deg);
  overflow: hidden;
}

.v1146_4009 {
  width: 490px;
  height: 695px;
  background: url("../images/v1146_4009.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  /* position: absolute; */
  /* top: 93px; */
  /* left: 1258px; */
  overflow: hidden;
}
.v1146_4010 {
  /* width: 489px; */
  height: 695px;
  background: url("../images/v1146_4010.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  position: relative;
  top: 0px;
  left: 0px;
  overflow: hidden;
}
.v1146_4011 {
  /* width: 489px; */
  height: 695px;
  background: url("../assets/images/Link-4.png");
  opacity: 1;
  position: relative;
  top: 0px;
  left: 0px;
  border-top-left-radius: 21px;
  border-top-right-radius: 21px;
  border-bottom-left-radius: 21px;
  border-bottom-right-radius: 21px;
  overflow: hidden;
}
.v1146_4012 {
  width: 348px;
  color: rgba(255, 255, 255, 1);
  position: absolute;
  top: 493px;
  left: 53px;
  font-family: Roboto;
  font-weight: Regular;
  font-size: 30px;
  opacity: 1;
  text-align: left;
}
.v1146_4013 {
  width: 351px;
  color: rgba(240, 242, 244, 1);
  position: absolute;
  top: 545px;
  left: 53px;
  font-family: Roboto;
  font-weight: Regular;
  font-size: 18px;
  opacity: 1;
  text-align: left;
}

/* features section css */

.v1146_4026 {
  width: 100%;
  height: 916px;
  background: url("../images/v1146_4026.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  position: relative;
  top: 0px;
  left: 0px;
  overflow: hidden;
}
.v1146_4027 {
  width: 530px;
  color: linear-gradient(rgba(53, 47, 117, 1), rgba(123, 55, 169, 1));
  position: absolute;
  top: 0px;
  left: 1px;
  font-family: Roboto;
  font-weight: SemiBold;
  font-size: 55px;
  opacity: 1;
  text-align: left;
}
.v1146_4028 {
  width: 509px;
  height: 395px;
  background: rgba(174, 220, 185, 1);
  opacity: 1;
  position: absolute;
  top: 94px;
  left: 0px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  overflow: hidden;
}
.v1146_4029 {
  width: 509px;
  height: 399px;
  background: rgba(174, 220, 185, 1);
  opacity: 1;
  position: absolute;
  top: 517px;
  left: 830px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  overflow: hidden;
}
.v1146_4030 {
  width: 509px;
  height: 399px;
  background: rgba(206, 198, 237, 1);
  opacity: 1;
  position: absolute;
  top: 517px;
  left: 298px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  overflow: hidden;
}
.v1146_4031 {
  width: 508px;
  height: 397px;
  background: rgba(185, 202, 248, 1);
  opacity: 1;
  position: absolute;
  top: 92px;
  left: 538px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  overflow: hidden;
}
.v1146_4032 {
  width: 191px;
  height: 44px;
  background: rgba(255, 255, 255, 1);
  opacity: 1;
  position: absolute;
  top: 128px;
  left: 254px;
}
.v1146_4033 {
  width: 191px;
  height: 44px;
  background: rgba(255, 255, 255, 1);
  opacity: 1;
  position: absolute;
  top: 555px;
  left: 1082px;
}
.v1146_4034 {
  width: 191px;
  height: 44px;
  background: rgba(255, 255, 255, 1);
  opacity: 1;
  position: absolute;
  top: 552px;
  left: 550px;
}
.v1146_4035 {
  width: 191px;
  height: 45px;
  background: rgba(255, 255, 255, 1);
  opacity: 1;
  position: absolute;
  top: 133px;
  left: 791px;
}
.v1146_4036 {
  width: 447px;
  height: 192px;
  background: rgba(255, 255, 255, 1);
  opacity: 1;
  position: absolute;
  top: 272px;
  left: 29px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  overflow: hidden;
}
.v1146_4037 {
  width: 447px;
  height: 192px;
  background: rgba(255, 255, 255, 1);
  opacity: 1;
  position: absolute;
  top: 703px;
  left: 329px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  overflow: hidden;
}
.v1146_4038 {
  width: 447px;
  height: 192px;
  background: rgba(255, 255, 255, 1);
  opacity: 1;
  position: absolute;
  top: 703px;
  left: 856px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  overflow: hidden;
}
.v1146_4039 {
  width: 442px;
  height: 192px;
  background: rgba(255, 255, 255, 1);
  opacity: 1;
  position: absolute;
  top: 272px;
  left: 575px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  overflow: hidden;
}
.v1146_4040 {
  width: 251px;
  color: rgba(0, 0, 0, 1);
  position: absolute;
  top: 139px;
  left: 29px;
  font-family: Roboto;
  font-weight: Medium;
  font-size: 28px;
  opacity: 1;
  text-align: left;
}
.v1146_4041 {
  width: 434px;
  color: rgba(0, 0, 0, 1);
  position: absolute;
  top: 186px;
  left: 29px;
  font-family: Roboto;
  font-weight: Regular;
  font-size: 16px;
  opacity: 1;
  text-align: left;
}
.v1146_4042 {
  width: 200px;
  height: 40px;
  background: url("../images/v1146_4042.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  position: absolute;
  top: 139px;
  left: 575px;
  overflow: hidden;
}
.v1146_4043 {
  width: 200px;
  color: rgba(0, 0, 0, 1);
  position: relative;
  top: 0px;
  left: 0px;
  font-family: Roboto;
  font-weight: Medium;
  font-size: 28px;
  opacity: 1;
  text-align: left;
}
.v1146_4044 {
  width: 434px;
  color: rgba(0, 0, 0, 1);
  position: absolute;
  top: 191px;
  left: 575px;
  font-family: Roboto;
  font-weight: Regular;
  font-size: 16px;
  opacity: 1;
  text-align: left;
}
.v1146_4045 {
  width: 506px;
  height: 397px;
  background: rgba(206, 198, 237, 1);
  opacity: 1;
  position: absolute;
  top: 92px;
  left: 1075px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  overflow: hidden;
}
.v1146_4046 {
  width: 190px;
  height: 43px;
  background: rgba(255, 255, 255, 1);
  opacity: 1;
  position: absolute;
  top: 131px;
  left: 1325px;
}
.v1146_4047 {
  width: 317px;
  height: 34px;
  background: url("../images/v1146_4047.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  position: absolute;
  top: 139px;
  left: 1107px;
  overflow: hidden;
}
.v1146_4048 {
  width: 317px;
  color: rgba(0, 0, 0, 1);
  position: relative;
  top: 0px;
  left: 0px;
  font-family: Roboto;
  font-weight: Medium;
  font-size: 30px;
  opacity: 1;
  text-align: left;
}
.v1146_4049 {
  width: 456px;
  color: rgba(0, 0, 0, 1);
  position: absolute;
  top: 186px;
  left: 1107px;
  font-family: Roboto;
  font-weight: Regular;
  font-size: 16px;
  opacity: 1;
  text-align: left;
}
.v1146_4050 {
  width: 429px;
  color: rgba(0, 0, 0, 1);
  position: absolute;
  top: 553px;
  left: 856px;
  font-family: Roboto;
  font-weight: Medium;
  font-size: 28px;
  opacity: 1;
  text-align: left;
}
.v1146_4051 {
  width: 458px;
  color: rgba(0, 0, 0, 1);
  position: absolute;
  top: 626px;
  left: 860px;
  font-family: Roboto;
  font-weight: Regular;
  font-size: 16px;
  opacity: 1;
  text-align: left;
}
.v1146_4052 {
  width: 393px;
  height: 145px;
  background: url("../images/v1146_4052.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  position: absolute;
  top: 296px;
  left: 54px;
  overflow: hidden;
}
.v1146_4053 {
  width: 212px;
  color: rgba(0, 0, 0, 1);
  position: relative;
  top: 0px;
  left: 0px;
  font-family: Roboto;
  font-weight: Regular;
  font-size: 20px;
  opacity: 1;
  text-align: left;
}
.v1146_4054 {
  width: 80px;
  color: rgba(0, 0, 0, 1);
  position: absolute;
  top: 46px;
  left: 0px;
  font-family: Roboto;
  font-weight: Medium;
  font-size: 40px;
  opacity: 1;
  text-align: left;
}
.v1146_4055 {
  width: 393px;
  color: rgba(0, 0, 0, 1);
  position: absolute;
  top: 95px;
  left: 0px;
  font-family: Roboto;
  font-weight: Regular;
  font-size: 16px;
  opacity: 1;
  text-align: left;
}
.v1146_4056 {
  width: 25px;
  height: 20px;
  background: url("../images/v1146_4056.png");
  opacity: 1;
  position: absolute;
  top: 65px;
  left: 78px;
  border: 2.0459282398223877px solid
    linear-gradient(rgba(11, 39, 124, 1), rgba(67, 130, 255, 1));
  transform: rotate(-42deg);
}
.v1146_4057 {
  width: 212px;
  color: rgba(0, 0, 0, 1);
  position: absolute;
  top: 319px;
  left: 665px;
  font-family: Roboto;
  font-weight: Regular;
  font-size: 20px;
  opacity: 1;
  text-align: left;
}
.v1146_4058 {
  width: 393px;
  color: rgba(0, 0, 0, 1);
  position: absolute;
  top: 380px;
  left: 599px;
  font-family: Roboto;
  font-weight: Regular;
  font-size: 16px;
  opacity: 1;
  text-align: left;
}
.v1146_4059 {
  width: 393px;
  color: rgba(0, 0, 0, 1);
  position: absolute;
  top: 818px;
  left: 363px;
  font-family: Roboto;
  font-weight: Regular;
  font-size: 18px;
  opacity: 1;
  text-align: left;
}
.v1146_4060 {
  width: 393px;
  color: rgba(0, 0, 0, 1);
  position: absolute;
  top: 813px;
  left: 876px;
  font-family: Roboto;
  font-weight: Regular;
  font-size: 18px;
  opacity: 1;
  text-align: left;
}
.v1146_4061 {
  width: 442px;
  height: 192px;
  background: rgba(255, 255, 255, 1);
  opacity: 1;
  position: absolute;
  top: 272px;
  left: 1107px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  overflow: hidden;
}
.v1146_4062 {
  width: 107px;
  height: 32px;
  background: url("../images/v1146_4062.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  position: absolute;
  top: 293px;
  left: 1271px;
  overflow: hidden;
}
.v1146_4063 {
  width: 107px;
  color: rgba(0, 0, 0, 1);
  position: relative;
  top: 0px;
  left: 0px;
  font-family: Roboto;
  font-weight: Regular;
  font-size: 20px;
  opacity: 1;
  text-align: left;
}
.v1146_4064 {
  width: 205px;
  height: 114px;
  background: url("../assets/images/v1146_4064.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  position: absolute;
  top: 334px;
  left: 1222px;
  overflow: hidden;
}
.v1146_4065 {
  width: 53px;
  height: 53px;
  background: url("../images/v1146_4065.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  position: absolute;
  top: 306px;
  left: 597px;
  overflow: hidden;
}
.v1146_4066 {
  width: 53px;
  height: 53px;
  background: url("../images/v1146_4066.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  position: relative;
  top: 0px;
  left: 0px;
  overflow: hidden;
}
.v1146_4067 {
  width: 53px;
  height: 53px;
  background: url("../assets/images/v1146_4067.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  position: relative;
  top: 0px;
  left: 0px;
  overflow: hidden;
}
.v1146_4068 {
  width: 152px;
  color: rgba(0, 0, 0, 1);
  position: absolute;
  top: 553px;
  left: 338px;
  font-family: Roboto;
  font-weight: Medium;
  font-size: 30px;
  opacity: 1;
  text-align: left;
}
.v1146_4069 {
  width: 438px;
  color: rgba(0, 0, 0, 1);
  position: absolute;
  top: 631px;
  left: 338px;
  font-family: Roboto;
  font-weight: Regular;
  font-size: 16px;
  opacity: 1;
  text-align: left;
}
.v1146_4070 {
  width: 69px;
  height: 62px;
  background: url("../images/v1146_4070.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  position: absolute;
  top: 731px;
  left: 363px;
  overflow: hidden;
}
.v1146_4071 {
  width: 34px;
  height: 30px;
  background: rgba(206, 198, 237, 1);
  opacity: 1;
  position: absolute;
  top: 32px;
  left: 35px;
}
.v1146_4072 {
  width: 17px;
  height: 17px;
  background: rgba(0, 0, 0, 1);
  opacity: 1;
  position: absolute;
  top: 15px;
  left: 18px;
}
.v1146_4073 {
  width: 69px;
  height: 62px;
  background: url(../assets/images/scalability.png);
  opacity: 1;
  position: relative;
  top: 0px;
  left: 0px;
}
.v1146_4074 {
  width: 68px;
  height: 68px;
  background: url("../images/v1146_4074.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  position: absolute;
  top: 731px;
  left: 876px;
  overflow: hidden;
}
.v1146_4075 {
  width: 68px;
  height: 68px;
  background: url("../images/v1146_4075.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  position: relative;
  top: 0px;
  left: 0px;
  overflow: hidden;
}
.v1146_4076 {
  width: 68px;
  height: 68px;
  background: url("../images/v1146_4076.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  position: relative;
  top: 0px;
  left: 0px;
  overflow: hidden;
}
.v1146_4077 {
  width: 68px;
  height: 68px;
  background: url("../assets/images/v1146_4077.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  position: relative;
  top: 0px;
  left: 0px;
  overflow: hidden;
}

.vertical-polygon-holder {
  /* height: 100%; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.bring-ai-life-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
}

.how-it-works {
  margin-bottom: 0;
}

.ai-services-section {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 100px;
}

.ai-services-holder {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 1625px;
  padding: 60px 60px 60px 100px;
  background: #f0f2f4;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 40px;
}

.ai-services-holder .vertical-shape-services {
  position: absolute;
  left: -1px;
  top: 20%;
}

.ai-services-top-holder {
  /* border: 1px solid green; */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.ai-services-top-holder div h2 {
  font-size: 50px;
  font-weight: 500;
}

.sticky-services-1 {
  width: 100%;
  height: auto;
  background-image: url("../assets/images/home-sticky-services-1.svg");
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 60px;
  border-radius: 20px;
}

.sticky-service-content-holder {
  background-color: #0a0a0c;
  height: auto;
  /* height: 204px; */
  width: auto;
  max-width: 525px;
  padding: 20px;
  border-radius: 12px;
  margin-top: 80px;
  align-content: center;
}

.sticky-services-1 {
  position: sticky;
  top: 190px;
}

.sticky-services-1 img {
  position: absolute;
  bottom: -1px;
  right: 8%;
}

.sticky-service-content-holder h4 {
  font-size: 30px;
  color: #f0f0f0;
}

.sticky-service-content-holder span {
  color: #f0f0f0;
}

@media (max-width: 1620px) {
  .v1146_4572 {
    padding: 40px;
  }
}

@media (max-width: 1480px) {
  .feature-box {
    /* max-width: 240px; */
  }

  .feature-1 .connector-dot {
    right: -140px;
  }

  .feature-1::after {
    right: -140px;
    width: 120px;
    content: none;
  }

  .feature-2 .connector-dot {
    left: -160px;
  }

  .feature-2::after {
    left: -160px;
    width: 140px;
    content: none;
  }

  .feature-3 .connector-dot {
    right: -130px;
  }

  .feature-3::after {
    right: -130px;
    width: 110px;
    content: none;
  }

  .feature-4 .connector-dot {
    left: -160px;
  }

  .feature-4::after {
    left: -160px;
    width: 140px;
    content: none;
  }

  .feature-5::before {
    content: none;
  }

  .v1146_4572 {
    flex-direction: column;
  }
  .v1146_3967 {
    width: 100%;
  }
  .v1146_4009 {
    width: 100%;
  }
  .v1146_3969,
  .v1146_4011,
  .v1146_3983,
  .v1146_3997 {
    background-size: cover;
  }
  .vertical-polygon-holder,
  .v1146_3981,
  .v1146_3982,
  .v1146_3983 {
    width: 100%;
  }
  .vertical-polygon-holder,
  .v1146_3995,
  .v1146_3996,
  .v1146_3997 {
    width: 100%;
    gap: 50px;
  }
  .cta-background img {
    width: 70%;
    height: 70%;
  }
  .justify-content-center .col-12 .cta-container {
    width: auto;
  }
  .justify-content-center .col-12 .cta-container .cta-background {
    height: auto;
  }
}

@media (max-width: 1280px) {
  .features-section-process {
    min-height: 550px;
  }

  .circle-1 {
    width: 450px;
    height: 450px;
  }

  .circle-2 {
    width: 600px;
    height: 600px;
  }

  .circle-3 {
    width: 300px;
    height: 300px;
  }

  .center-image img {
    width: 320px;
  }

  .feature-box-process {
    max-width: 220px;
  }

  .feature-1 .connector-dot {
    right: -120px;
  }

  .feature-1::after {
    right: -120px;
    width: 100px;
    content: none;
  }

  .feature-2 .connector-dot {
    left: -140px;
  }

  .feature-2::after {
    left: -140px;
    width: 120px;
    content: none;
  }

  .feature-3 .connector-dot {
    right: -110px;
  }

  .feature-3::after {
    right: -110px;
    width: 90px;
    content: none;
  }

  .feature-4 .connector-dot {
    left: -140px;
  }

  .feature-4::after {
    left: -140px;
    width: 120px;
    content: none;
  }

  .feature-5::before {
    content: none;
  }

  .vertical-polygon-holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
  }
  .v1146_3984 {
    width: auto;
    right: 18px;
    left: auto;
  }
  .v1146_3985 {
    width: auto;
    right: 20px;
    top: 205px;
    left: auto;
  }
  .v1146_3998 {
    width: auto;
    top: 100px;
    left: 30px;
  }
  .v1146_3999 {
    top: 156px;
    left: 28px;
  }
  .counter-title {
    margin-bottom: 0px;
  }
  .benefit-card {
    max-width: 375px !important;
  }
  .col-12.col-md-5.footer-last-call {
    padding-left: 80px !important;
  }
  h6.footer-text {
    left: 15% !important;
  }
  .features-main-heading {
    font-size: 40px;
  }
  .feature-item {
    gap: 20px;
    margin-bottom: 30px;
  }
  .app-interface-container {
    height: 590px;
  }
  .experience-badge {
    bottom: 20px;
    right: 125px;
    padding: 30px;
    gap: 20px;
  }
  .justify-content-center .col-12 .cta-container {
    width: auto;
  }
  .v1146_4572 {
    gap: 15px;
  }
  .v1146_4572 {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .v1146_4572 {
    margin: 50px 0px;
  }
  .position-relative .py-5 {
    padding: 50px 50px;
  }
  .feature-graphic {
    width: 85%;
  }
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .ai-services-section {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 50px;
  }
  .ft-hero-description {
    text-align: right;
    max-width: 48ch;
    font-size: clamp(0.975rem, 0.9rem + 0.3vw, 1.125rem);
    line-height: 1.6;
    color: #000;
  }
  .v1146_3969 {
    /* height: 640px; */
  }
  .v1146_4011 {
    /* height: 640px;
    width: 390px; */
  }
  img.grid-shape-2 {
    position: relative;
    right: -185px;
  }
  .v1146_4012 {
    top: 415px;
    left: 25px;
  }
  .v1146_3983 {
    /* width: 470px; */
  }
  .v1146_4013 {
    top: 465px;
    left: 25px;
  }
  .v1146_4572 {
    /* gap: 20px;
    margin: 40px 100px; */
  }
  .counter-title {
    margin-bottom: 100px;
  }
  .hero-content {
    padding-top: 60px;
  }

  .py-5 {
    padding: 45px;
  }
  .v1146_3968 {
    /* width: 390px; */
  }
  .v1146_3969 {
    /* width: 390px !important; */
  }
  .v1146_3970 {
    left: 30px;
  }
  .v1146_3971 {
    left: 30px;
  }

  .newsletter-right-image {
    position: absolute;
    top: 0px;
    right: -2%;
    width: 36%;
  }

  section.features-carousel {
    display: none;
  }
}

@media (min-width: 991px) and (max-width: 1080px) {
  .main-heading {
    font-size: 60px;
    line-height: 83px;
  }
  .ai-services-section {
    padding: 100px 10px;
  }
  .feature-item {
    gap: 30px;
    margin-bottom: 30px;
  }
  .experience-number {
    display: flex;
  }
  .experience-badge {
    padding: 20px;
    right: 20px;
  }
  .features-content {
    padding: 0px;
    gap: 20px;
  }
  .v1146_4572 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .v1146_3985 {
    right: 28px;
    top: 210px;
    left: auto;
  }
  .v1146_3984 {
    top: 155px;
    left: 270px;
    width: auto;
  }

  section.features-carousel {
    display: none;
  }
}

@media (min-width: 991px) {
  .features-carousel {
    display: none;
  }
}

@media (max-width: 972px) {
  .feature-box-process {
    display: none;
  }

  .features-section-process {
    min-height: auto;
    flex-direction: column;
    padding: 30px 0;
    margin-bottom: 0;
  }

  .feature-box-process {
    position: relative;
    margin: 20px auto;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    max-width: 600px;
    width: 100%;
    text-align: center !important;
  }

  .feature-box-process::after,
  .feature-box-process::before {
    display: none;
  }

  .connector-dot {
    display: none;
  }

  .decorative-circle {
    display: none;
  }

  .center-image {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin: 30px auto;
    order: -1;
  }

  .center-image img {
    width: 300px;
  }
  .cta-section {
    height: 600px;
  }
  .right-description-counters {
    text-align: left;
  }
  .counter-bg {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .cta-container {
    width: auto;
  }
  .cta-container .cta-background {
    height: auto;
  }

  .cta-content {
    height: 75%;
  }

  .features-main-heading2 {
    font-size: 30px;
    line-height: 40px;
  }

  .features-content {
    flex-direction: column-reverse;
    align-items: center;
    gap: 50px;
  }
  .features-right .app-interface-container img {
    position: static;
  }
  .v1146_4572 {
    flex-direction: column;
    align-items: center;
  }
  .vertical-polygon-holder {
    gap: 40px;
  }
  .service-cards {
    flex-direction: column;
    align-items: stretch;
    gap: 35px !important;
  }
  .service-card {
    width: 100% !important;
  }
  .benefits-section {
    flex-direction: column;
    align-items: center;
  }
  .benefit-card {
    width: 100%;
    max-width: 516px !important;
  }
  .detail-service-left {
    margin-left: 0 !important;
  }
  .service-detail {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .counter-title {
    margin-bottom: 0px;
  }
  .position-relative .py-5 {
    padding: 50px 30px;
  }
  .ai-services-section {
    padding: 0px 0px 50px 0px;
  }
  .cta-container .cta-content {
    padding-top: 0px;
  }
  .ai-services-holder {
    margin-top: -200px;
  }
  .feature-graphic {
    width: 85%;
    height: 205.431px;
  }

  .hero-content .main-heading {
    font-size: 50px;
    line-height: normal;
  }
  .hero-subtext {
    font-size: 20px;
  }

  .email-signup-section {
    max-width: 500px;
    /* width: 100%; */
  }
  .email-input-wrapper {
    width: 100%;
    height: 100px;
  }
  .arrow-icon {
    position: absolute;
    top: 46%;
    right: 40px;
    transform: translateY(-50%);
    width: 22px;
    height: 19.219px;
  }
  .get-started-btn {
    position: absolute;
    top: 50px;
    right: 0px;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    background: #84e8f4;
    border-radius: 53.333px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .get-started-btn span {
    display: none;
  }
  .footer-right-content h6 {
    font-size: 35px !important;
  }
  .features-content {
    padding: 0;
  }
  .v1146_4572 {
    padding: 40px 20px;
  }
  .hero-section-footer {
    margin: 60px 50px 0px 50px;
  }
  /* box-1 */
  .v1146_3970 {
    width: auto;
    left: 20px;
  }
  .v1146_3971 {
    top: 110px;
    left: 18px;
    width: 275px;
  }
  .v1146_3967 {
    height: auto;
  }
  .v1146_3968 {
    height: 380px;
  }
  .v1146_3969 {
    height: inherit;
  }
  /* box-2 */
  img.grid-shape-2 {
    position: relative;
    right: -104px;
  }
  .v1146_3984 {
    width: 200px;
    top: 140px;
    left: auto;
  }
  .v1146_3985 {
    width: 270px;
    top: 195px;
    width: auto;
    right: 20px;
    left: auto;
  }
  /* box-3 */
  .v1146_3998 {
    width: 223px;
    top: 37px;
    left: 18px;
  }
  .v1146_3999 {
    width: 270px;
    top: 95px;
    left: 17px;
  }
  /* box-4 */

  .v1146_4009 {
    height: 340px;
  }
  .v1146_4010 {
    height: 340px;
  }
  .v1146_4011 {
    height: 335px;
  }
  .v1146_4012 {
    width: auto;
    top: 125px;
    left: 15px;
    font-size: 25px;
  }
  .v1146_4013 {
    width: 270px;
    top: 178px;
    left: 16px;
  }
  .main-title-testimonial {
    font-size: 25px !important;
    line-height: 35px !important;
    width: auto !important;
  }
  .cta-button-testimonial {
    width: auto !important;
    padding: 20px;
  }
  .cta-button-testimonial span {
    font-size: 16px !important;
  }
  .header-section-testimonial {
    margin-top: 65px !important;
  }
  .testimonials-section {
    margin-top: 0px !important;
  }
}
/* Small tweaks for very small screens */
@media (max-width: 360px) {
  .ft-hero-heading-gradient {
    white-space: normal;
  }

  .feature-box-process {
    display: none;
  }

  .sticky-service-content-holder {
    max-width: 525px;
  }
}

@media (max-width: 768px) {
  .features-carousel__viewport {
    grid-auto-columns: minmax(356px, 16%) !important;
    gap: 18px;
  }
}

@media (max-width: 767px) {
  .feature-box-process {
    margin: 18px auto;
    padding: 0 15px;
  }

  .feature-box-process h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .feature-box-process p {
    font-size: 0.8rem;
  }

  .center-image img {
    width: 250px;
  }
  .info-text {
    font-size: 16px;
  }
  .cta-section {
    height: auto;
  }
  .counter-bg {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .ai-services-top-holder {
    flex-direction: column;
    align-items: flex-start;
  }
  .features-section .container {
    max-width: none;
  }
  .justify-content-center .col-12 .cta-container .cta-background {
    display: none;
  }
  .partners-logos {
    flex-direction: column;
  }
  .cta-section .container .justify-content-center .col-12 .cta-container {
    height: auto;
    margin-bottom: 60px;
    margin-bottom: 40px;
  }
  .ai-services-holder {
    margin-top: 0px;
  }
  .feature-graphic {
    width: 85%;
    margin-top: -65px;
    height: 164.431px;
  }
  .partners-section {
    padding: 60px 0px 0px 0px;
  }
  .features-main-heading {
    font-size: 35px;
    line-height: 49.623px;
  }
  .app-interface-container {
    height: 400px !important;
  }
  .features-main-heading {
    margin-bottom: 20px;
  }
  .phone-mockup {
    position: absolute;
    top: 20px;
    right: 0;
    width: 26px;
    z-index: 10;
    animation: float 4s ease-in-out infinite;
  }
  .experience-number {
    display: flex;
  }
  .experience-badge {
    right: 145px;
    padding: 18px;
    border-radius: 10px;
    bottom: 15px;
    display: block;
  }
  .col-12.col-md-5.footer-last-call {
    padding: 10px !important;
  }

  .feature-box-process {
    display: none;
  }
}

@media (max-width: 640px) {
  .feature-graphic {
    margin-top: -50px;
    width: 85%;
    height: 150.431px;
    top: 598.243px;
    left: 306.666px;
  }
  .cta-section {
    margin-top: 40px;
  }

  .hero-content .main-heading {
    font-size: 39px;
    line-height: normal;
  }
  .hero-subtext {
    font-size: 20px;
  }

  .email-signup-section {
    max-width: 500px;
    /* width: 100%; */
  }
  /* .email-input-wrapper {
    width: 100%;
    height: 130px;
  } */
  /* .arrow-icon {
    display: none;
  }
  .get-started-btn {
    position: absolute;
    top: 155px;
    right: 120px;
    transform: translateY(-50%);
    width: 245.333px;
    height: 72px;
    background: #84e8f4;
    border-radius: 53.333px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  } */
  .features-main-heading {
    margin-bottom: 10px;
  }
  .feature-item {
    flex-direction: column;
    gap: 0px;
  }

  .feature-box-process {
    display: none;
  }
}

@media (max-width: 425px) {
  .feature-box-process {
    padding: 0 10px;
    margin: 15px auto;
  }

  .feature-box-process h3 {
    font-size: 0.95rem;
  }

  .feature-box-process p {
    font-size: 16px;
  }

  .center-image img {
    width: 220px;
  }
  .sticky-services-1 {
    padding: 20px;
    height: 427px !important;
  }
  .sticky-service-content-holder h4 {
    font-size: 18px;
    line-height: 1.7rem;
  }

  .feature-item {
    flex-direction: column;
    gap: 0px;
  }
  .email-signup-section {
    max-width: -webkit-fill-available;
  }
  .email-input-wrapper {
    height: 80px;
  }
  input::placeholder {
    font-size: 15px; /* Change this value to your desired size */
    color: rgb(150, 150, 150); /* Optional: Change placeholder color */
  }
  .get-started-btn {
    position: absolute;
    top: 40px;
    right: 0px;
    width: 80px;
    height: 80px;
  }
  .arrow-icon {
    right: 29px;
  }
  .hero-content {
    padding: 70px 10px 0px 10px;
  }
  .whats-new-badge {
    flex-direction: column;
    width: 100%;
    gap: 4px;
  }
  .hero-subtext,
  .features-main-heading2 {
    line-height: 30px;
  }
  .partners-title {
    font-size: 22px;
  }
  .partners-logos {
    gap: 40px;
  }
  .features-main-heading2 {
    font-size: 22px;
  }
  .ai-services-holder {
    padding: 20px;
  }
  .ai-services-top-holder div h2 {
    font-size: 30px;
    text-align: center;
  }
  .ai-services-top-holder {
    align-items: center;
  }

  .feature-box-process {
    display: none;
  }

  .feature-card .heading-shade {
    margin: 0;
    font-size: 24px !important;
  }

  .features-carousel__header {
    padding: 0px 16px !important;
  }

  .features-carousel__controls {
    display: flex;
    gap: 8px;
    width: 83px;
  }

  .sticky-service-content-holder {
    max-height: none;
  }
}

.infra-mgmt-img {
  background-image: url("../assets/images/index/Infrastructure-management-service.webp");
  background-size: cover;
  background-position: center;
}

.development-sol-img {
  background-image: url("../assets/images/index/Development-solution.webp");
  background-size: cover;
  background-position: center;
}

.digital-exp-img {
  background-image: url("../assets/images/index/Digital-experience.webp");
  background-size: cover;
  background-position: center;
}

.security-op-img {
  background-image: url("../assets/images/index/Security-operations.webp");
  background-size: cover;
  background-position: center;
}

.sprt-srvc-img {
  background-image: url("../assets/images/index/Support-services.webp");
  background-size: cover;
  background-position: center;
}

.tech-con {
  background-image: url("../assets/images/tech/Cloud Strategy & Design.webp");
  background-size: cover;
  background-position: center;
}

.tech-con-2 {
  background-image: url("../assets/images/tech/Tech Transformation.webp");
  background-size: cover;
  background-position: center;
}
.tech-con-3 {
  background-image: url("../assets/images/tech/Bidding & Solution designing.webp");
  background-size: cover;
  background-position: center;
}

.tech-con-4 {
  background-image: url("../assets/images/tech/Breakthrough Innovations.webp");
  background-size: cover;
  background-position: center;
}

.disaster-mgmt {
  background-image: url("../assets/images/dpaas/Disaster Management.webp");
  background-size: cover;
  background-position: center;
}

.scalable-mgmt {
  background-image: url("../assets/images/dpaas/scalability.webp");
  background-size: cover;
  background-position: center;
}

.storage-mgmt {
  background-image: url("../assets/images/dpaas/Storage costs.webp");
  background-size: cover;
  background-position: center;
}

.sync-mgmt {
  background-image: url("../assets/images/dpaas/Syncing.webp");
  background-size: cover;
  background-position: center;
}
