.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  width: 100%;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.gap-12 {
  gap: 12px;
}

.gap-20 {
  gap: 20px;
}

.my-10 {
  margin: 10px 0;
}

.my-20 {
  margin: 20px 0;
}

.my-30 {
  margin: 30px 0;
}

.color-purple {
  color: var(--primary-purple);
}

.primary-heading {
  font-size: 50px;
  line-height: 56px;
  font-weight: 600;
  color: #000;
}

:root {
  --primary-purple: #7D5DFE;
  --primary-gray: #494266;
  --primary-black: #161c28;
  --text-light-purple: #757095;
}


body,html{
  font-family: Arial, sans-serif;
  width: 100%;
  overflow-x: hidden;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 50px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

/* Center links */
/* .nav-links {
  display: flex;
  list-style: none;
  gap: 44px;
} */

.nav-links li a {
  text-decoration: none;
  color: #000;
  font-weight: 400;
  font-size: 14px;
}

.nav-links li a:hover {
  color: #2563eb;
}

/* Buttons */
.nav-buttons {
  display: flex;
  gap: 10px;
}
/* Sticky state */
.navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff; 
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transform: translateY(-100%);
  animation: slideDown 0.4s forwards ease;
  z-index: 10;
  width: 100%;
}

/* Slide down animation */
@keyframes slideDown {
  to {
    transform: translateY(0);
  }
}

.btn-primary {
  background-color: var(--primary-purple);
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 7px;
  cursor: pointer;
  filter: drop-shadow(0, 0, 0, .3);
  font-weight: 600;
  font-size: 14px;
}

.btn-primary:hover {
  background-color: #1e4db7;
}

.btn-outline {
  background: none;
  color: #2563eb;
  border: 2px solid #2563eb;
  padding: 6px 12px;
  border-radius: 5px;
  cursor: pointer;
}

.btn-simple {
  background: none;
  font-weight: 400;
  padding: 10px 15px;
  cursor: pointer;
  border: none;
}

.btn-outline:hover {
  background-color: #2563eb;
  color: #fff;
}

/* Hamburger menu */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Responsive styles */
@media (max-width: 768px) {
  .nav-links {
    display: none!important;
  }

  .nav-links.active {
    left: 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-buttons {
    display: none;
  }

}




/* hero start */
.hero {
  width: 100%;
  /* max-width: 1440px;
  margin: 0 auto; */
  height: 700px;
  position: relative;
  /* background-color: #fff; */
  display: flex;
  align-items: center;
  padding: 10px 44px;
    background-image: url(./images/Union.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

/* .hero::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(./images/Union.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 10;
} */

/* .hero::after {
  position: absolute;
  content: "";
  top: -10%;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(./images/Union2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 10;
} */

.hero .hero-left {
  flex: 1;
}

.hero-left p {
  font-size: 21.54px;
  font-weight: 400;
  color: #000;
  line-height: 35px;
}

.hero .hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.hero-right img {
  width: 100%;
}

.heading-primary {
  font-size: 40px;
  font-weight: 700;
}


/* hero end */


/* hero 2 start */
.hero2 {
  width: 100%;
  /* max-width: 1440px;
  margin: 0 auto; */
  height: 700px;
  /* background-color: #fff; */
  display: flex;
  position: relative;
  align-items: center;
  padding: 10px 44px;
    background-image: url(./images/Union2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.hero2 .hero2-left,
.hero2 .hero2-right {
  flex: 1;
}

/* .hero2::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(./images/Union2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 10;
} */

.hero2-left p {
  font-size: 18px;
  font-weight: 400;
  color: #757095;
  line-height: 26px;
  letter-spacing: -2%;
  width: 100%;
  max-width: 512px;
}

.hero2-left h2 {
  font-size: 50px;
  letter-spacing: -3%;
  font-weight: 600;

}

.hero2-left span {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

/* hero 2 end */


/* program section start */
.program-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 44px;
}

.program-section {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, var(--primary-purple), #a706ff);
  color: white;
  border-radius: 20px;
  padding: 50px;
  width: 100%;
}

.program-text {
  flex: 1;
}

.program-text h4 {
  font-size: 18x;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #FFEAAE;
}

.program-text h2 {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 15px;
}

.program-text p {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #fff;
  max-width: 420px;
  /* opacity: 0.9; */
}

.form-container {
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 500px;
  flex: 1;
}

.form-container h3 {
  font-size: 24px;
  margin-bottom: 10px;
  line-height: 30px;
  font-weight: 700;
}

.form-container input {
  padding: 18px;
  border-radius: 6px;
  border: none;
  outline: none;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}

.form-container button {
  padding: 18px;
  background: transparent;
  border: 2px solid white;
  color: white;
  font-size: 16px;
  line-height: 30px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-container button:hover {
  background: white;
  color: #6A11CB;
}



/* trusted section start */
.trusted-section {
  width: 100%;
  height: 700px;
  display: flex;
  position: relative;
  align-items: center;
  padding: 10px 44px;
}

.trusted-right {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trusted-section .trusted-left {
  flex: 1;
}

.trusted-left p {
  font-size: 18px;
  font-weight: 400;
  color: #757095;
  line-height: 26px;
  letter-spacing: -2%;
  width: 100%;
  max-width: 512px;
}

.trusted-left h2 {
  font-size: 50px;
  letter-spacing: -3%;
  font-weight: 600;

}

.trusted-left span {
  font-size: 20px;
  font-weight: 700;
}

.trusted-right .trusted {
  background-color: #F5F6F8;
  width: 100%;
  height: 407px;
  padding: 40px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trusted .trust-wrapper {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 450px;
}

.trusted .shape-one {
  width: 162px;
  height: 162px;
  position: absolute;
  background-color: #FFD08A;
  border-radius: 50%;
  top: -15%;
  left: -10%;
}

.trusted .shape-two {
  left: -10%;
  bottom: -25%;
  width: 242px;
  height: 242px;
  position: absolute;
  background-color: #52F5D8;
  border-radius: 50%;
}

.trusted .shape-three {
  right: -15%;
  top: 30%;
  width: 200px;
  height: 200px;
  position: absolute;
  background-color: #888EFE;
  border-radius: 50%;
}

.trusted .trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background-color: white;
  padding: 15px 30px;
  border-radius: 10px;
  width: 100%;
  box-shadow: 0px 10px 8px rgba(0, 0, 0, 0.06);
  /* x-offset, y-offset, blur, color */
}

.trust .trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-purple);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  flex: 0 0 auto;
  padding: 20px;
}

.trust .trust-content {
  flex: 1;
}

.trust-content h4 {
  background-color: #7d5dfe1d;
  color: #7D5DFE;
  display: inline-block;
  padding: 6px 10px;
  font-size: 11px;
  line-height: 12px;
  font-weight: 400;
  border-radius: 100px;
  margin-bottom: 10px;
}

.trust-content p {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-light-purple);
  max-width: 250px;
  line-height: 14px;
}

/* trusted section end */

@media (max-width: 768px) {

  .program-section,
  .join-section {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 15px!important;
  }

  .form-container {
    max-width: 100%;
  }
  .join-section .program-text h2{
    font-size: 28px!important;
    line-height: 30px!important;
  }

}

/* program section end */


/* our advantage start */
.advantage {
  display: flex;
  align-items: center;
  position: relative;
  /* width: 100%; */
  /* max-width: 1440px; */
  margin: 0 auto;
  padding: 10px 44px;
}



.advantages-bulltes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* our advantage end */



/*why choose us start  */
.wrapper {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  height: auto;
}

.why-choose-us {
  padding: 10px 44px;
}

.choose-section {
  text-align: center;
  padding: 90px;
  border-radius: 20px;
  background-color: #F3F7FA;
}

.choose-section h5 {
  color: #6A11CB;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.choose-section h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.choose-card {
  display: flex;
  gap: 40px;
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  text-align: left;
  transition: 0.3s;
}

.choose-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 15px;
  font-size: 18px;
  flex: 0 0 auto;
}

.choose-icon img {
  width: 20px;
}

.choose-card:nth-child(1) .choose-icon {
  background: #f7ecfd;
}

.choose-card:nth-child(2) .choose-icon {
  background: #d8f5f1;
}

.choose-card:nth-child(3) .choose-icon {
  background: #d8f5f1;
}

.choose-card:nth-child(4) .choose-icon {
  background: #ffe4e3;
}


.choose-card h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.choose-card p {
  font-size: 18px;
  color: #757095;
  line-height: 30px;
  font-weight: 400;
  max-width: 300px;
}

.choose-card:hover {
  transform: translateY(-5px);
}

/*why choose us end  */

/* join section start */
.join {
  background-color: var(--primary-purple);
}

.join-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.join-section {
  background-color: var(--primary-purple);
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  color: white;
  padding: 50px;
  /* max-width: 1200px; */
  width: 100%;
}

.join-section .program-text h2 {
  font-size: 50px;
  max-width: 500px;
  line-height: 60px;
}
.join-section .form-container input{
  background-color: #9888fe;
}

/* join section end */


/* footer start */
footer {
  background-color: #1B1C31;
  /* padding: 44px; */
  color: #fff;
  width: 100%;
}

.footer-container {
  background-color: #1B1C31;
  padding: 44px;
  max-width: 1440px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

/* Left Section */
.footer-left {
  flex: 1;
}

.footer-left img {
  width: 120px;
  margin-bottom: 15px;
}

.footer-left p {
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  opacity: 40%;
  font-weight: 500;
  max-width: 500px;
}

/* Right Section */
.footer-links {
  display: flex;
  flex: 1;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-column h4 {
  font-size: 21px;
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 24px;
  color: #fff;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 20px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: #6d5dfc;
}

/* Bottom Section */
.footer-bottom {
  padding: 20px;
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 13px;
  color: #fff;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
  margin-left: 15px;
  transition: 0.3s;
}

.footer-bottom a:hover {
  color: #6d5dfc;
}


/* section header start */
.section-header{
  background: linear-gradient(90deg, var(--primary-purple), #a706ff);
  text-align: center;
  padding: 40px 10px;
}
.section-header h1{
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  padding: 10px 0;
  text-transform: uppercase;
}
.section-header p{
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  max-width: 550px;
  padding: 10px 0;
  margin:  auto;
}

.pricing-section{
  background-color: #f3f7fa;
  padding: 44px;
}
.pricing-btns{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 275px;
  margin: 0 auto;
  position: relative;
  transition: all .3s ease;
}
.pricing-btns .pricing-border{
  position: absolute;
  width: 130px;
  height: 2px;
  background-color: var(--primary-purple);
  bottom: 0;
  left: 10px;
  transition: all .3s ease;

}
.pricing-btns .btn{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  position: relative;
  cursor: pointer;
}
.cloud-btn{
  position: relative;
}
.btn .icon{
  width: 20px;
}
.cards{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin: 50px 0;
}
.cards .card-center{
  position: relative;
  width: 450px!important;
  height: 580px!important;
  overflow: hidden;
}
.card-center::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 200px;
  top: -80px;
  left: 20px;
  rotate: 15deg;
  background-color: #7e6eeb24;
  filter: blur(40px);
}
.card-center .card-tag{
  background-color: #7d5dfe!important;
}

.cards .card{
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  width: 350px;
  height: 530px;
}
.card .card-icon{
  display: flex;
  justify-content: space-between;
}
.card-icon .icon{
  width: 50px;
}
.card-icon .card-tag{
  background-color: #B19EFE;
  height: 40px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 10px;
  color: white;
  font-weight: 500;
}
.card .card-header-text h3{
  font-size: 23px;
  font-weight: 500;
  color: #170F49;
}
.card .card-header-text h4{
  font-size: 16px;
  font-weight: 500;
  color: #170F49;
}
.card .card-header-text p{
  font-size: 15px;
  font-weight: 400;
  color: #6F6C8F;
  line-height: 20px;
}

.card-header-text a button{
  margin-top: 30px;
  width: 100%;
  padding: 15px;
  font-size: 16px;
  border-radius: 10px;
  background-color: #FBFBFE;
  border: 2px solid rgba(128, 128, 128, 0.224);
  box-shadow: 0px 10px 8px rgba(0, 0, 0, 0.02);

}
.center-card-text a button{
  margin-top: 10px;
  width: 100%;
  padding: 15px;
  font-size: 16px;
  border-radius: 10px;
  background-color: var(--primary-purple);
  color: white;
  border: 2px solid rgba(128, 128, 128, 0.224);
  box-shadow: 0px 10px 8px rgba(0, 0, 0, 0.02);

}
.card-points{
  /* padding: 40px 0; */
  margin-top: 20px;
  display: flex;
  gap: 15px;
  flex-direction: column;
}
.card-points .point{
  display: flex;
  align-items: center;
  gap: 14px;
}

.point .point-icon{
  width: 25px;
  flex: 0 0 auto;
}
.point-text p{
  font-size: 15px;
  color: #6F6C8F;
  font-weight: 400;
}


  .faq-container {
      max-width: 1200px;
      margin: auto;
      margin-bottom: 60px;
    }
    .faq-container .faq-header{
      margin: 60px 0;
    }
.faq-container .faq-header h2 {
      font-size: 50px;
      font-weight: 600;
      text-align: center;
      line-height: 80px;
    }
.faq-container .faq-header p{
      font-size: 23px;
      font-weight: 400;
      text-align: center;
      line-height: 32px;
    }

    .faq-item {
      background: #fff;
      border-bottom: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 10px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .faq-question {
      padding: 15px 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      font-size: 23px;
    }

    .faq-question:hover {
      background: #f0f0f0;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      font-size: 19px;
      line-height: 26px;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .faq-item.active .faq-answer {
      max-height: 300px;
      padding: 15px 20px;
    }

   .faq-question .icon {
      transition: transform 0.3s ease;
    }

    .faq-item.active .icon {
      transform: rotate(180deg);
    }

/* section header end */


/* steps start */
.process-section {
  padding: 60px 44px;
  height: 620px;
  width: 100%;
  /* background-color: red; */
  margin-bottom: 150px;

}
.process-section .process-container{
  /* padding: 60px 44px; */
  height: 620px;
  width: 100%;
  background-image: url(./images/process.svg);
  background-position: center ;
  background-size: contain;
  background-repeat: no-repeat;
}

.process-section .process-container .process-header h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #5D5FEF;
  margin: 10px 0;
}

.process-section .process-container .process-header h2 {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 48px;
  max-width: 500px;
  letter-spacing: -2px;
  margin: 10px 0;
}

.process-section .process-container .process-header p {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 30px;
  max-width: 450px;
  color: #64607D;
  margin: 10px 0;
}



.process-steps {
  position: relative;
  width: 100%;
  margin-top: 40px;
}

.step {
  width: 280px;
  height: 222px;
  position: absolute;
}

.step-1 {
  left: 180px;
  top: 150px;
}

.step-2 {
  left: 50%;
  top: -10px;
}
.step-3 {
  right: -40px;
  top: -220px;
  /* background-color: white; */
}
.process-steps .step {
  opacity: 0;
  transform: translateY(50px);
}

.step .step-number {
  font-size: 180px;
  float: right;
  font-weight: 600;
  opacity: 0.1;
  position: absolute;
  bottom:-10px;
  right: 0;
}

.step h3 {
  font-size: 16px;
  font-weight: 800;
  position: absolute;
  top: 100px;
}

.step p {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.3px;
  line-height: 30px;
  position: absolute;
  bottom: 5px;
}

.step-1::before,
.step-2::before,
.step-3::before {
  content: "";
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.step-1::after,
.step-2::after,
.step-3::after {
  content: "";
  width: 30px;
  height: 30px;
  background-color: #C4C4C4;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(50%, 50%);
  z-index: 2;
}

.step-2 h3 {
  top: 90px;
}

.step-2 p {
  bottom: 5px;
}





@media (max-width: 1024px){
  .step-1{
    top: 100px;
    left: 100px;
  }
  .step-3{
    top: -200px;
    right: -100px;
  }
}
@media (max-width: 768px){
  .step .step-number{
    font-size: 120px;
  }
  .step{
    width: 160px;
  }
  .step p{
    font-size: 10px;
    line-height: 14px;
  }
  .step h3{
    font-size: 16px;
    position: absolute;
    bottom: 5px;
  }
  .step-1{
    top: 50px;
    left: 10px;
  }
  .step-3{
    top: -120px;
    right: 0;
  }
  .step-2{
    top: -10px;
    left: 40%;
  }
}


/* .step .step-number{
  position: absolute;
  top: -200px;
  right: 0;
  color: rgba(128, 128, 128, 0.144);
  font-size: 200px; */
/* } */
/* steps end */



/* grid cards section start */
.grid-card-section{
  width: 100%;
  padding: 44px;
  display: grid;
  grid-template-columns:repeat(3,1fr) ;
  gap: 30px;
  row-gap: 30px;
}

.grid-card{
  background-color: #F3F7FA;
  border-radius: 20px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.grid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.grid-card .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.4); /* light overlay */
  transform: scale(0);
  animation: ripple-animation 0.7s linear forwards;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
.grid-card .card-img{
  width: 40px;
}
.grid-card h2{
 font-size: 24px;
 line-height: 60px;
}
.grid-card p{
 font-size: 16px;
 line-height: 30px;
 color: #64607D;
}
.grid-card a{
 font-size: 16px;
 line-height: 16px;
 color: #01966B;
 font-weight: 600;
 display: flex;
 align-items: center;
 gap: 20px;
 margin-top: 100px;

}
.grid-card a img{
width: 20px;
}

/* grid cards section end */


/* contact section start */
.contact-section {
  padding: 60px 5%;
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
}

.contact-container {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  justify-content: space-between;
}

.contact-info {
  flex: 1;
}

.contact-info h3 {
  font-size: 14px;
  letter-spacing: 1px;
  color: #555;
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-info h2 {
  font-size: 50px;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  background: #f9f9f9;
  transition: border 0.3s ease, background 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #7b61ff;
  background: #fff;
  outline: none;
}

.contact-form textarea {
  min-height: 120px;
  resize: none;
}

.contact-form button {
  background: linear-gradient(90deg, #7b61ff, #9d78ff);
  color: #fff;
  padding: 16px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: linear-gradient(90deg, #6a50f8, #8f6fff);
}

/* ✅ Responsive Styles */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
    gap: 40px;
  }
  .contact-form{
    width: 100%;
  }

  .contact-info h2 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .contact-info h2 {
    font-size: 24px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 13px;
    padding: 12px;
  }

  .contact-form button {
    font-size: 14px;
    padding: 14px;
  }
}

/* contact section end */


/* assist section start */
.assist-section {
  background: #f7f9fb;
  padding: 60px 10%;
  font-family: 'Segoe UI', sans-serif;
}

.assist-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.assist-text {
  flex: 1;
  min-width: 280px;
}

.assist-text h3 {
  font-size: 14px;
  color: #555;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.assist-text h2 {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
}

.assist-info {
  flex: 1;
  display: flex;
  gap: 50px;
  min-width: 280px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.info-box {
  min-width: 200px;
}

.info-box h4 {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
  position: relative;
}

.info-box h4::before {
  content: "—";
  color: #7b61ff;
  margin-right: 8px;
}

.info-box p {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.info-box a {
  color: #111;
  text-decoration: none;
}

.info-box a:hover {
  color: #7b61ff;
}

.info-box span {
  font-size: 13px;
  color: #555;
  line-height: 1.4;
}

/* ✅ Responsive */
@media (max-width: 992px) {
  .assist-container {
    flex-direction: column;
    gap: 40px;
  }

  .assist-text h2 {
    font-size: 28px;
  }

  .assist-info {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .assist-text h2 {
    font-size: 24px;
  }

  .assist-info {
    flex-direction: column;
    gap: 20px;
  }

  .info-box {
    min-width: 100%;
  }
}

/* assist section end */

/* advertising start */
.advertising-section{
  padding: 44px ;
  display: flex;
  align-items: center;
  justify-content: center;
}
.advertising-section .advertising-container{
  width: 100%;
  height: 470px;
  background-color: gray;
  border-radius: 20px;
}
/* advertising end */


/* privacy start */
/* Scope everything under .policy to avoid global conflicts */
.policy {
  --policy-bg: #fff;
  --policy-surface: #ffffff;
  --policy-text: #111827;
  --policy-muted: #4b5563;
  --policy-soft: #f3f4f6;
  --policy-border: #e5e7eb;

  background: var(--policy-bg);
}

.policy__container {

  background: var(--policy-surface);
  padding: 44px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,.08);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--policy-text);
  line-height: 1.65;
}

/* Titles */
.policy__title {
  font-size: 2rem;
  font-weight: 800;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--policy-border);
  margin-bottom: 24px;
  letter-spacing: .2px;
}

.policy__h2 {
  font-size: 1.375rem; /* ~22px */
  font-weight: 700;
  margin-top: 26px;
  margin-bottom: 10px;
  color: var(--policy-text);
}

/* Body text & links */
.policy__p {
  margin-bottom: 14px;
  color: var(--policy-text);
}

.policy__link {
  color: #4f46e5;
  text-decoration: none;
}
.policy__link:hover { text-decoration: underline; }

/* Lists */
.policy__list {
  margin: 10px 0 18px 20px;
}
.policy__list li { margin-bottom: 8px; }
.policy__list--nested { margin-top: 6px; }

/* Highlight callout */
.policy__highlight {
  background: var(--policy-soft);
  border: 1px solid var(--policy-border);
  padding: 12px 14px;
  border-radius: 8px;
  margin: 10px 0 14px;
  color: var(--policy-muted);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .policy__container { padding: 24px 16px; }
  .policy__title { font-size: 1.6rem; }
  .policy__h2 { font-size: 1.2rem; }
  .grid-card-section{
    grid-template-columns: 1fr;
    padding: 15px;
  }
  .grid-card h2{
    font-size: 24px;
    line-height: 30px;
  }
  .section-header h1{
    font-size: 28px;
  }
  .section-header p{
    font-size: 14px;
  }
  .saas h2 {
    font-size: 24px!important;
  }
  .pricing-section{
    padding: 15px;
  }
  .pricing-section .cards{
    flex-direction: column;
  }
  .pricing-section .cards .card{
    width: 100%!important;
  }
  .faq-container .faq-header h2{
    font-size: 24px;
    line-height: 30px;
  }
  .faq-container .faq-header p{
    font-size: 14px;
    line-height: 20px;
    margin-top: 20px;
  }
  .faq-container{
    padding: 15px;
  }
  .faq-question{
    font-size: 16px;
  }
  .faq-answer{
    font-size: 12px;
    line-height: 20px;
  }
}

/* privacy end */

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* saas start */
.saas h2{
  font-size: 40px;
  text-align: center;
  width: 100%;
}
/* saas end */


/* footer end */






/* Hero Section Responsiveness */
@media (max-width: 1024px) {
  .hero {
    height: auto;
    /* padding: 20px; */
  }

  .hero-left {
    margin-bottom: 20px;
  }

  .hero-left h1 {
    font-size: 32px;
    line-height: 40px;
  }

  .hero-left p {
    font-size: 18px;
    line-height: 28px;
  }

  .hero-right img {
    width: 80%;
    max-width: 400px;
  }

  .hero::before,
  .hero::after {
    background-size: 80%;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 15px;
      flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .hero-left h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero-left p {
    font-size: 16px;
    line-height: 24px;
  }

  .hero-right img {
    width: 100%;
    max-width: 300px;
  }

  .hero::before,
  .hero::after {
    background-size: 100%;
  }
}

/* Hero2 Section Responsiveness */
@media (max-width: 1024px) {
  .hero2 {
    height: auto;
    /* padding: 20px; */
  }

  .hero2-left {
    /* text-align: center; */
    margin-top: 20px;
  }

  .hero2-left h2 {
    font-size: 36px;
    line-height: 44px;
  }

  .hero2-left p {
    font-size: 16px;
    line-height: 24px;
    max-width: 100%;
  }

  .hero2-left span {
    font-size: 18px;
  }

  .hero2-right img {
    width: 80%;
    max-width: 400px;
  }

  .hero2::before {
    background-size: 80%;
  }
}

@media (max-width: 768px) {
  .hero2 {
    padding: 15px;
      flex-direction: column-reverse;
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .hero2-left h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero2-left p {
    font-size: 14px;
    line-height: 22px;
  }

  .hero2-left span {
    font-size: 16px;
  }

  .hero2-right img {
    width: 100%;
    max-width: 300px;
  }

  .hero2::before {
    background-size: 100%;
  }
}

/* Program Section Responsiveness */
@media (max-width: 1024px) {
  /* .program-wrapper {
    padding: 20px;
  } */

  .program-section {
    padding: 30px;
  }

  .program-text h2 {
    font-size: 36px;
    line-height: 44px;
  }

  .program-text p {
    font-size: 16px;
    line-height: 24px;
    max-width: 100%;
  }

  .form-container input,
  .form-container button {
    font-size: 16px;
    padding: 14px;
  }
}

@media (max-width: 768px) {
  .program-wrapper{
    padding: 15px;
  }
  .program-text h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .program-text p {
    font-size: 14px;
    line-height: 22px;
  }

  .form-container h3 {
    font-size: 20px;
  }

  .form-container input,
  .form-container button {
    font-size: 14px;
    padding: 12px;
  }
}

/* Advantage Section Responsiveness */
@media (max-width: 1024px) {



  .advantage-left h1 {
    font-size: 36px;
    line-height: 44px;
  }

  .advantages-bulltes p {
    font-size: 16px;
  }

  .advantage-right img {
    width: 80%;
    max-width: 400px;
    margin-top: 20px;
  }

  .advantage::before {
    background-size: 80%;
  }
}

@media (max-width: 768px) {
  .advantage {
    padding: 15px;
      flex-direction: column;
    justify-content: center;
  }

  .advantage-left h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .advantages-bulltes p {
    font-size: 14px;
  }

  .advantage-right img {
    width: 100%;
    max-width: 300px;
  }

  .advantage::before {
    background-size: 100%;
  }
}

/* Why Choose Us Section Responsiveness */
@media (max-width: 1024px) {
  /* .why-choose-us {
    padding: 20px;
  } */

  .choose-section {
    padding: 40px;
  }

  .choose-section h2 {
    font-size: 28px;
  }

  .choose-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }

  .choose-card {
    /* padding: 20px; */
    gap: 20px;
  }

  .choose-card h3 {
    font-size: 20px;
  }

  .choose-card p {
    font-size: 16px;
    line-height: 24px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .why-choose-us {
    padding: 15px;
  }
  .choose-section {
    padding: 20px;
  }

  .choose-section h2 {
    font-size: 24px;
  }

  .choose-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .choose-card {
    padding: 15px;
    gap: 15px;
  }

  .choose-card h3 {
    font-size: 18px;
  }

  .choose-card p {
    font-size: 14px;
    line-height: 22px;
  }

  .choose-icon {
    width: 50px;
    height: 50px;
  }
}

/* trusted section responsive start */

@media (max-width: 1200px) {
  .trusted-left h2 {
    font-size: 38px;
  }

  .trusted-left p {
    font-size: 16px;
    max-width: 420px;
  }

  .trusted .trust-wrapper {
    width: 380px;
  }
}

/* 🔹 For tablets (max-width: 992px) */
@media (max-width: 992px) {
  .trusted-section {
    flex-direction: column;
    /* left & right stack vertically */
    height: auto;
    padding: 30px 20px;
    gap: 40px;
  }

  .trusted-left {
    text-align: center;
  }

  .trusted-left h2 {
    font-size: 32px;
  }

  .trusted-left p {
    font-size: 15px;
    margin: 0 auto;
  }

  .trusted-right {
    width: 100%;
  }

  .trusted .trust-wrapper {
    width: 100%;
    position: relative;
    /* remove absolute for flow */
  }
}

/* 🔹 For mobile phones (max-width: 768px) */
@media (max-width: 768px) {
  .trusted-right .trusted {
    padding: 15px;
    height: auto;
  }

  .trusted-left h2 {
    font-size: 26px;
    line-height: 34px;
  }

  .trusted-left span {
    font-size: 16px;
  }

  .trusted-left p {
    font-size: 14px;
    line-height: 22px;
  }

  .trusted .trust {
    flex-direction: column;
    /* icon above text */
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
  }

  .trust .trust-icon {
    width: 44px;
    height: 44px;
    padding: 10px;
  }

  .trust-content h4 {
    font-size: 10px;
  }

  .trust-content p {
    font-size: 12px;
    max-width: 100%;
  }

  .trusted .shape-one,
  .trusted .shape-two,
  .trusted .shape-three {
    display: none;
    /* hide extra shapes on mobile */
  }
}

/* 🔹 For very small screens (max-width: 480px) */
@media (max-width: 480px) {
  .trusted-left h2 {
    font-size: 22px;
  }

  .trusted-left p {
    font-size: 13px;
  }

  .btn-primary {
    font-size: 14px;
    padding: 10px 16px;
  }
}

/* trusted section responsive end */

/* Ensure images are responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Adjust buttons for smaller screens */
@media (max-width: 768px) {

  .btn-primary,
  .btn-simple {
    padding: 10px;
    font-size: 12px;
  }

  .nav-buttons {
    gap: 8px;
  }
}



@media(max-width:425px){
  .process-section{
    padding: 15px;
  }
  .process-section .process-container .process-header h2{
    font-size: 24px;
  }
  .process-section .process-container{
    background-image: none;
  }
  .process-steps .step-1{
    top: 0;
    left: 0;
  }
  .process-steps .step-2{
    top:260px;
    right: 0;
  }
  .process-steps .step-3{
    top:560px;
    left: 0;
  }
  .about-advantage{
    height: auto;
    margin-top: 600px!important;
  }
}



@media(max-width: 1440px){
  .step-3{
    top: -263px;
  }
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  position: relative;
  z-index: 50;
}

/* .nav-links li {
  position: relative;
} */


.nav-links li {
  position: relative;
}

.nav-links .dropdown-parent .custom-dropdown .dropdown-links {
  margin-top: 15px;
  margin-left: 20px!important;

}

.nav-links .dropdown-parent .custom-dropdown .dropdown-links a {
  text-decoration: none;
  color: #7d5dfe;
  padding: 5px 15px;
  display: block;
  font-size: 16px;
  font-weight: 400;
}

/* .custom-dropdown {
  display: none;
  position: absolute;
  top: 150%;
  left: 10px;
  background: rgba(255, 255, 255, 0.797);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.187);
  color: #353535;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  width: 700px;
  padding: 30px;
  z-index: 9999;
}

.dropdown-parent:hover .custom-dropdown {
  display: block;
}

.dropdown-arrow {
  position: absolute;
  top: -10px;
  left: 40px;
  width: 20px;
  height: 20px;
  background: white;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-left: 1px solid rgba(0, 0, 0, 0.187);
  border-top: 1px solid rgba(0, 0, 0, 0.187);
  transform: rotate(45deg);
  z-index: 9998;
}

.dropdown-content {
  display: flex;
  gap: 20px;
}
.dropdown-right{
  padding: 0;
}
.dropdown-left{
  padding: 20px;
}
.dropdown-left,
.dropdown-right {
  flex: 1;
}
.dropdown-section{
  cursor: pointer;

}
.dropdown-header h4{
  color: #6a40f4;
  font-weight: 400;
  font-size: 18px;
}

.dropdown-separator {
  width: 2px;
  background: rgba(128, 128, 128, 0.071);
}

.dropdown-header {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255,255,255,0.2);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 15px;
  background-color:#6a40f413 ;
}

.dropdown-icon i {
  font-size: 20px;
  width: 30px;
  color: #6d5dfc;
}

.dropdown-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-links li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.dropdown-links li i {
  font-size: 18px;
  color: #6a40f4;
}

.dropdown-links li strong {
  font-size: 13px;
  display: block;
  color: #6a40f4;
  font-weight: 300;
}

.dropdown-links li p {
  margin: 2px 0 0;
  font-size: 14px;
  color: #333333b2;
} */




.custom-dropdown {
  display: none;
  position: absolute;
  top: 150%;
  left: 10px;
  background:white;
 
  border: 1px solid rgba(0, 0, 0, 0.187);
  color: #353535;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  width: 700px;
  padding: 10px;
  z-index: 9999;
}

.dropdown-parent:hover .custom-dropdown {
  display: block;
}

/* 🔽 Notch Arrow */
.dropdown-arrow {
  position: absolute;
  top: -9px;
  left: 40px;
  width: 15px;
  height: 15px;
  background: white;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-left: 1px solid rgba(0, 0, 0, 0.187);
  border-top: 1px solid rgba(0, 0, 0, 0.187);
  transform: rotate(45deg);
  z-index: 9998;
}

/* Layout */
.dropdown-content {
  display: flex;
  gap: 20px;
}
.dropdown-right{
  padding: 10px;
}

.dropdown-left,
.dropdown-right {
  flex: 1;
}
.dropdown-section{
  cursor: pointer;

}
.dropdown-header h4{
  color: #6a40f4;
  font-weight: 400;
  font-size: 18px;
}

.dropdown-separator {
  width: 2px;
  background: rgba(128, 128, 128, 0.071);
}

/* Left sections */
.dropdown-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px;
  border-radius: 10px;
  background-color: #7d5dfe1f;
  margin-top: 13px;
}

.dropdown-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: #6d5dfc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.dropdown-icon i {
  font-size: 18px;
}

/* Right side links */
.dropdown-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-links li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.dropdown-links li i {
  font-size: 18px;
  color: #6a40f4;
}

.dropdown-links li strong {
  font-size: 13px;
  display: block;
  color: #6a40f4;
  font-weight: 300;
}

.dropdown-links li p {
  margin: 2px 0 0;
  font-size: 14px;
  color: #333333b2;
}
