/* general css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter 18pt";
  font-weight: 400;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

.text-right {
  text-align: right !important;
}

.container {
  max-width: 1260px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

a {
  text-decoration: none;
}

.mweb_br {
  display: none;
}

.mweb-btn {
  display: none !important;
}

/* end general css */
/* start fonts */
@font-face {
  font-family: "Inter 18pt";
  src: url("../fonts/Inter18pt-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter 18pt";
  src: url("../fonts/Inter18pt-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter 18pt";
  src: url("../fonts/Inter18pt-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter 18pt";
  src: url("../fonts/Inter18pt-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* end fonts */

/* header css */
.main_header {
  position: fixed;
  top: 0px;
  z-index: 999;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 15px 0px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.offer_text {
  line-height: 1.4;
  margin-right: 20px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(28, 28, 28, 1);
}

.primary_btn {
  display: inline-block;
  padding: 8px 25px;
  color: #222;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid #fff;
  color: #2072F3;
  background-color: #fff;
  transition: 0.5s ease;
}

.primary_btn:hover {
  background-color: #2072F3;
  color: #fff;
}

.primary_btn:hover {
  box-shadow: 0 4px 8px 0 rgb(204 204 204 / 70%);
}

.logo svg {
  display: block;
}

.header.scrolled {
  background: #fff;
  color: #fff;
}

.scrolled .logo2 {
  display: none;
}

.main_header .logo1 {
  display: none;
}

.scrolled .logo1 {
  display: block;
}

.scrolled .primary_btn {
  border-color: #2072F3;
}

.btn {
  display: none;
}

.scrolled .btn {
  display: block;
}

header.scrolled {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* end header css */
/* start banner css */
.hero {
  position: relative;
  height: 80vh;
  width: 100%;
  overflow: hidden;
}

.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(0.5);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
}

.hero-content h1 {
  color: #FFF;
  text-align: center;
  font-size: 33px;
  font-weight: 700;
  line-height: 54.6px;
  margin-bottom: 10px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.80);
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 40px;
}

.banner-btn {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.banner-btn .primary_btn {
  display: flex;
  align-items: center;
  padding: 12px 30px;
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.banner-btn .primary_btn:hover {
  box-shadow: none;
  background-color: transparent;
}

.banner-btn .btn-6 {
  border-color: #015BD9;
}

/* end banner css */

/* start partner css */
.partner-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0px;
  background-color: #F4F4F4;
  overflow: hidden;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.partner-text {
  flex-shrink: 0;
  width: 360px;
}

.partner-text h2 {
  color: #111827;
  font-size: 22px;
  font-weight: 700;
  line-height: 28.6px;
}

.marquee-wrapper {
  position: relative;
  width: 80%;
  overflow: hidden;
  /* mask image to fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.marquee {
  display: flex;
  animation: scroll-left 15s linear infinite;
  gap: 50px;
}

.marquee img {
  height: 40px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.marquee img:hover {
  transform: scale(1.05);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Duplicate content for seamless loop */
.marquee>* {
  white-space: nowrap;
}

/* end partner css */

/* start lms css */
.lms-section {
  padding: 40px 0px;
  color: white;
}

.lms-item {
  background: linear-gradient(180deg, #015BD9 0%, #0046A8 100%);
  padding: 60px;
  border-radius: 20px;
}

.lms-intro {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.lms-heading {
  position: relative;
  top: 50px;
  width: 30%;
}

.lms-heading h2 {
  color: #FFF;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

.lms-heading p {
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}

.lms-features {
  width: 64%;
}

.lms-features h3 {
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 28.8px;
  margin-bottom: 20px;
}

.lms-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: linear-gradient(180deg, #FFF 0%, #EAEAEA 100%);
  border-radius: 20px;
  color: #000;
}

.lms-col {
  flex: 1 1 30%;
}

.lms-col h4 {
  font-weight: 700;
  font-size: 17px;
  line-height: 22px;
  color: #222;
  text-align: center;
  padding: 18px 24px;
  border-bottom: 1px solid #ccc;
}

.bd-none {
  border-right: none !important;
}

.lms-col ul {
  list-style: none;
  padding: 0;
}

.lms-col li {
  font-size: 15px;
  font-weight: 500;
  color: #222;
  line-height: 19.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 24px;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

.lms-col li:last-child {
  border-bottom: none;
}

.check {
  display: inline-block;
}

.check img {
  display: block;
  width: 16px;
  height: 16px;
}

.lms-stats {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  width: 23%;
  color: white;
  transition: 0.5s ease;
}

.stat-box:hover {
  transform: scale(1.1);
}

.stat-box img {
  width: 32px;
  margin-bottom: 10px;
}

.stat-box h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 8px;
}

.stat-box p {
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

.icon svg {
  display: block;
}

/* end lms css */

/* start lms marketplace css */
.lms_marketplace {
  padding-top: 40px;
  padding-bottom: 40px;
}

.subtitle {
  color: #222;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  margin-bottom: 12px;
}

.title {
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 30px;
  color: #222;
  text-align: center;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid #CCC;
  border-radius: 8px;
  background-color: #fff;
}

.feature-text {
  color: #222;
  font-size: 18px;
  font-weight: 500;
  line-height: 29px;
}

.check-ico svg {
  display: block;
}

.lms_marketplace .btn {
  display: flex;
  justify-content: center;
}

.feature {
  position: relative;
  overflow: hidden;
}

.feature.shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, #2563EB00 0%, rgba(79, 70, 229, 0.1) 100%);
  transform: skewX(-25deg);
  animation: shine 4s infinite;
  z-index: 1;
}

@keyframes shine {
  0% {
    left: -75%;
  }

  100% {
    left: 125%;
  }
}

/* end market lms marketplace css */

/* start streamline css */
.lms_streamline {
  padding: 60px 0px;
}

.streamline-text h2 {
  color: #000;
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 30px;
}

.streamline-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  background: #FFF9EF;
  padding: 0 70px;
}

.streamline-img {
  position: relative;
}

.main-img {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.lms-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #222;
  font-size: 19px;
  font-weight: 400;
  line-height: 24.7px;
  margin-bottom: 18px;
}

.streamline-text {
  width: 500px;
}

/* end streamline css */

/* scroll css */
.scroll-wrap {
  padding-top: 40px;
  padding-bottom: 40px;
}

.left-content {
  margin-bottom: 40px;
}

.left-content h2 {
  color: #000;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
  text-align: center;
}

.left-content p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  text-align: center;
}

.scroll-images {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.scroll-item-content h4 {
  font-size: 24px;
  margin-bottom: 10px;
}

.scroll-slider {
  display: none !important;
}

/* end scroll css */

/* start news wrap */
/* Partner Marquee Section */
.tech_news {
  background-color: #fff;
  padding-top: 50px;
  padding-bottom: 50px;
}
.news-title{
  color: #000;
  font-size: 30px;
  font-weight: 800;
  line-height: 42px;
  margin-bottom: 12px;
}
.tech-line{
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
}
.new-partners {
  display: flex;
  gap: 20px;
  width: 800px;
}
.tech-news-title{
  width: 40%;
}
.news_partner_icon img {
  width: 100%;
}
.tech-row {
    display: flex;
    justify-content: space-between;
    gap: 35px;
}
.news_partner_icon {
    display: flex;
    align-items: center;
}
/* end news wrap */

/* start testimonial css */
.testimonial-wrap {
  padding-top: 60px;
  padding-bottom: 60px;
}
.tech-row{
  display: flex;
  justify-content: space-between;
}
.testimonial-slider {
  border-radius: 20px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), radial-gradient(50% 70.13% at 50% 100%, #CFDAFF 0%, #808EBA 100%);
  background-blend-mode: multiply, normal;
  padding: 20px 60px 0px 60px;
}

.testimonial-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.testimonial-left {
  width: 38%;
}

.quote-icon {
  margin-bottom: 20px;
}

.testimonial-text {
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.testimonial-right {
  display: flex;
  align-items: flex-end;
  position: relative;
  width: 70%;
}

.person-img {
  width: 60%;
  height: auto;
  border-radius: 8px;
  z-index: 1;
}

.person-info {
  position: absolute;
  top: 72px;
  right: 0px;
  transform: translateX(-50%);
  text-align: left;
}

.person-info h3 {
  color: #FFF;
  font-size: 35px;
  font-weight: 600;
  line-height: normal;
}

.person-info p {
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  position: relative;
}

.person-info p:after {
  content: "";
  position: absolute;
  bottom: -11px;
  width: 145px;
  height: 3px;
  background-color: #fff;
  left: 0px;
  border-radius: 17px;
}

.quote-symbol {
  position: absolute;
  right: 134px;
  bottom: 8px;
  z-index: 0;
}

.quote-symbol svg {
  mix-blend-mode: overlay;
}

.mweb_image {
  display: none;
}

/* Slick dots customization */
.testimonial-wrap .slick-slider {
  margin: 0 -13px;
}

.testimonial-wrap .slick-slide {
  margin-right: 13px;
  margin-left: 13px;
}

.testimonial-wrap .slick-dots {
  position: absolute;
  text-align: center;
  /* margin-top: 15px; */
  padding-left: 0px !important;
  bottom: 85px;
  left: 69px;
}

.testimonial-wrap .slick-dots li button {
  cursor: pointer;
  font-size: 0px;
  border: none;
  height: auto;
  width: 0px;
  padding: 4px;
  margin: 0 4px;
  background: rgba(255, 255, 255, 0.30);
  border-radius: 50%;
  display: inline-block;
}

.testimonial-wrap .slick-active button {
  background: #fff !important;
}

.testimonial-wrap .slick-dots li {
  display: inline-block;
}

/* end testimonial css */

/* start process css */
.process-wrap {
  padding-top: 40px;
  padding-bottom: 80px;
  background: linear-gradient(180deg, #FFF 0%, #E1EAFF 100%);
}

.section-title {
  color: #222;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 12px;
}

.section-subtitle {
  color: #222;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
  margin-bottom: 30px;
}

.cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 60px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 388px;
  transition: 0.5s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.card-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.card-step {
  display: flex;
  padding: 6px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: #F7F7F7;
  color: #222;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
}

.card-title {
  color: #222;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.card-desc {
  color: #222;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.bottom-banner {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 60px;
}

.banner-left {
  display: flex;
  align-items: center;
  gap: 60px;
}

.banner-icon img {
  display: block;
}

.banner-text h3 {
  color: #222;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 6px;
}

.banner-text p {
  color: #222;
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
}

.process-wrap .cta-button {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 51px;
}

/* end process css */

/* start faq css */
.faq-wrap {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #17191C;
}

.faq-wrap .accordion .accordion-item {
  padding: 16px 0px;
}

.faq-area {
  display: flex;
  justify-content: space-between;
}

.accordion {
  width: 700px;
}

.faq-wrap .accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
}

.faq-wrap .accordion button .accordion-title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  font-family: "Roboto", sans-serif;
}

.faq-wrap .accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.faq-wrap .accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.faq-wrap .accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.faq-wrap .page_title {
  text-align: start;
}

.faq-wrap h2 {
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  color: #fff;
  text-align: start;
}

.faq-wrap .accordion-item button[aria-expanded='true']:after {
  rotate: 180deg;
}

.faq-wrap .accordion button[aria-expanded='true']+.accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}

.faq-wrap .accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.faq-wrap .accordion .accordion-content p {
  font-size: 16px;
  font-weight: 300;
  margin-top: 8px;
  line-height: 1.4;
  color: #fff;
}

.accordion-item button:after {
  content: url(../images/icons/dropdown.svg);
  float: right;
}

.faq-wrap button[aria-expanded="true"]+.accordion-content {
  opacity: 1;
  max-height: 500px;
}

.see-more {
  text-align: center;
}

.see-more-btn {
  display: inline-flex;
  margin: 20px auto 0;
  align-items: center;
  padding: 12px 30px 12px;
  gap: 8px;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  background-color: #444;
  color: #fff;
}

.arrow-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.see-more-btn.rotate .arrow-icon {
  transform: rotate(180deg);
}

.accordion-item {
  display: none;
}

.accordion-item:nth-child(-n+5) {
  display: block;
}

/* end faq css */

/* start footer css */
.footer_email a img {
  margin-right: 7px;
  vertical-align: middle;
}

.footer-wrap {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #F5F5F5;
}

.none {
  display: none;
}

.footer_email {
  text-align: right;
}

.footer_upper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer_email a {
  color: #222;
  font-size: 14px;
  text-decoration: none;
}

.social_link li {
  list-style: none;
  display: inline-block;
  margin-left: 6px;
}

.follow-links {
  display: flex;
  justify-content: end;
  gap: 30px;
  align-items: center;
}

.social_link {
  display: flex;
  text-align: right;
}

.social_link img {
  vertical-align: middle;
}

.follow_us {
  font-size: 14px;
  font-weight: 400;
  color: #222;
  position: relative;
  top: 3px;
}

/* end footer wrap */
/* btn-6 hover effects */
.btn-6 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 51px;
  overflow: hidden;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border: 1px solid currentColor;
  color: #fff;
  background: linear-gradient(90deg, #2563EB 0%, #4F46E5 100%);
  z-index: 9;
  border-radius: 8px;
}

.btn-6 span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #fff;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
}

.btn-6:hover {
  color: #2563EB;
}

.btn-6:hover span {
  width: 225%;
  height: 562.5px;
}

.btn-6:active {
  background-color: #fff;
}

/* modal css */
.brand-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.brand-logos img {
  height: 30px;
  object-fit: contain;
  max-width: 100px;
}

form input,
form select {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.phone-input {
  display: flex;
  gap: 10px;
}

.phone-input select {
  width: 40%;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  overflow-y: auto;
}

.popup.active {
  display: flex;
}

.form-container {
  background: #fff;
  border-radius: 12px;
  display: flex;
  overflow: hidden;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.left {
  display: flex;
  height: 100%;
  width: 460px;
  padding: 40px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  background: linear-gradient(152deg, #EEFAFD 7.39%, #F1F0FD 91.51%);


}

.right-pane {
  width: 460px;
  padding: 40px 60px;
  position: relative;
}

.progress-bar {
  height: 6px;
  background: #e0e7ff;
  border-radius: 8px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: linear-gradient(90deg, #2563EB 0%, #4F46E5 100%);
  border-radius: 0px 4px 4px 0px;
  width: 0%;
  transition: width 0.3s ease;
}

.step {
  display: none;
}

.step.active {
  display: block;
}

.step h3 {
  color: #222;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 20px;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 362px;
}

.radio-group input[type="radio"] {
  display: none;
}

.radio-group label {
  padding: 10px 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 15px;
  color: #444;
}

.radio-group label:hover {
  color: #fff;
  background: linear-gradient(90deg, #2563EB 0%, #4F46E5 100%);

  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
}

.radio-group input[type="radio"]:checked+label {
  background: #4f46e5;
  color: white;
  border-color: #4f46e5;
}

.buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}

.form-input {
  width: 100%;
  padding: 12px;
  margin-top: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.progress-bar {
  height: 6px;
  background: #e0e7ff;
  border-radius: 8px;
  overflow: hidden;
}

.skip-btn {
  display: flex;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 100px;
  background: #F1F1F1;
  border: none;
  color: #222;
  /* font-family: Inter; */
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  cursor: pointer;
}

.skip-btn svg {
  vertical-align: middle;
}

.submit-btn {
  width: auto;
  padding: 15px 16px;
  border-radius: 8px;
  background: linear-gradient(90deg, #2563EB 0%, #4F46E5 100%);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.submit-btn svg {
  vertical-align: middle;
}

.field {
  display: flex;
  gap: 15px;
}

.heading h2 {
  color: #222;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.heading p {
  color: rgba(34, 34, 34, 0.80);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
}
.form-area{
      height: 362px;
}
input:focus-visible {
    outline-color: #484ae6;
}

