/* [project]/src/components/HeroSection.module.css [app-client] (css) */
.HeroSection-module__sBkrQG__hero {
  text-align: center;
  color: #fff;
  background: url("/bg_img.png") center / cover no-repeat;
  align-items: center;
  min-height: 89vh;
  padding: 80px 20px 60px;
  display: flex;
}

.HeroSection-module__sBkrQG__content {
  max-width: 800px;
  margin: 0 auto;
}

.HeroSection-module__sBkrQG__heading {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 2.7rem;
  font-weight: 800;
}

.HeroSection-module__sBkrQG__description {
  margin-bottom: 30px;
  font-size: 1.25rem;
  line-height: 1.6;
}

.HeroSection-module__sBkrQG__tags {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  display: flex;
}

.HeroSection-module__sBkrQG__tag {
  color: #fff;
  backdrop-filter: blur(8px);
  background: #ffffff1f;
  border: 1px solid #fff3;
  border-radius: 9999px;
  padding: 6px 18px;
  font-size: 16px;
}

.HeroSection-module__sBkrQG__subtext {
  color: #ddd;
  margin-bottom: 30px;
  font-size: 1rem;
}

.HeroSection-module__sBkrQG__cta {
  color: #fff;
  cursor: pointer;
  background: #165dfb;
  border: none;
  border-radius: 10px;
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s;
}

.HeroSection-module__sBkrQG__subcta {
  color: #c7d2fe;
  margin-top: 30px;
  font-size: 1rem;
  display: block;
}

@media (width <= 600px) {
  .HeroSection-module__sBkrQG__hero {
    padding: 60px 16px 40px;
  }

  .HeroSection-module__sBkrQG__heading {
    font-size: 2rem;
  }

  .HeroSection-module__sBkrQG__description {
    font-size: 1rem;
  }

  .HeroSection-module__sBkrQG__tag {
    padding: 5px 14px;
    font-size: .85rem;
  }

  .HeroSection-module__sBkrQG__cta {
    width: 50%;
    padding: 12px 30px;
  }
}


/* [project]/src/components/StatsSection.module.css [app-client] (css) */
.StatsSection-module__jjN8tW__statsSection {
  text-align: center;
  background: #fafbfc;
  padding: 48px 0 32px;
}

.StatsSection-module__jjN8tW__statsSection h2 {
  margin-bottom: 32px;
  font-size: 2rem;
  font-weight: 700;
}

.StatsSection-module__jjN8tW__statsGrid {
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 60px;
  margin-bottom: 60px;
  display: flex;
}

.StatsSection-module__jjN8tW__statCard {
  background: #fff;
  border-radius: 12px;
  min-width: 180px;
  padding: 24px 32px;
  box-shadow: 0 2px 8px #0000000a;
}

.StatsSection-module__jjN8tW__statCard img {
  padding-top: 20px;
  padding-bottom: 15px;
}

.StatsSection-module__jjN8tW__statLabel {
  color: #222;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
}

.StatsSection-module__jjN8tW__statValue {
  color: #222;
  font-size: 18px;
}

.StatsSection-module__jjN8tW__trusted {
  margin-top: 32px;
}

.StatsSection-module__jjN8tW__logos {
  justify-content: center;
  gap: 32px;
  margin: 16px 0 24px;
  display: flex;
}

.StatsSection-module__jjN8tW__logo {
  color: #a3a3a3;
  letter-spacing: 1px;
  font-size: 2rem;
  font-weight: 700;
}

.StatsSection-module__jjN8tW__cta {
  color: #fff;
  cursor: pointer;
  background: #165dfb;
  border: none;
  border-radius: 8px;
  margin-bottom: 8px;
  padding: 12px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: background .2s;
}

@media (width <= 700px) {
  .StatsSection-module__jjN8tW__statsGrid {
    flex-direction: column;
    gap: 16px;
  }

  .StatsSection-module__jjN8tW__statCard {
    min-width: 120px;
    padding: 16px 8px;
  }

  .StatsSection-module__jjN8tW__logos {
    flex-wrap: wrap;
    gap: 12px;
  }

  .StatsSection-module__jjN8tW__logo {
    font-size: 1.4rem;
  }
}


/* [project]/src/components/FAQSection.module.css [app-client] (css) */
.FAQSection-module__ZB1fIa__faqAWrapper {
  background: #fafafa;
  transition: max-height .4s;
  overflow: hidden;
}

.FAQSection-module__ZB1fIa__faqA {
  color: #374151;
  padding: 0 24px 20px;
  font-size: 1rem;
  line-height: 1.6;
}

.FAQSection-module__ZB1fIa__faqSection {
  text-align: center;
  background: #fff;
  padding: 64px 0;
}

.FAQSection-module__ZB1fIa__faqHeading {
  color: #111827;
  margin-bottom: 40px;
  font-size: 2rem;
  font-weight: 700;
}

.FAQSection-module__ZB1fIa__faqList {
  text-align: left;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
}

.FAQSection-module__ZB1fIa__faqItem {
  border-bottom: 1px solid #e5e7eb;
}

.FAQSection-module__ZB1fIa__faqItem:last-child {
  border-bottom: none;
}

.FAQSection-module__ZB1fIa__faqQ {
  text-align: left;
  color: #111827;
  cursor: pointer;
  background: none;
  border: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
}

.FAQSection-module__ZB1fIa__arrow {
  border-bottom: 2px solid #4f46e5;
  border-right: 2px solid #4f46e5;
  width: 12px;
  height: 12px;
  transition: transform .3s;
  display: inline-block;
  transform: rotate(45deg);
}

.FAQSection-module__ZB1fIa__arrow.FAQSection-module__ZB1fIa__open {
  transform: rotate(-135deg);
}


/* [project]/src/components/FooterSection.module.css [app-client] (css) */
.FooterSection-module__eyrx4q__footer {
  color: #fff;
  text-align: center;
  background: #18181b;
  padding: 48px 0 16px;
}

.FooterSection-module__eyrx4q__ctaBox {
  max-width: 600px;
  margin: 0 auto 32px;
}

.FooterSection-module__eyrx4q__ctaBox h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 700;
}

.FooterSection-module__eyrx4q__ctaBox p {
  white-space: nowrap;
  margin-bottom: 30px;
  font-size: 1rem;
}

.FooterSection-module__eyrx4q__cta {
  color: #fff;
  cursor: pointer;
  background: #165dfb;
  border: none;
  border-radius: 8px;
  margin-bottom: 8px;
  padding: 12px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: background .2s;
}

.FooterSection-module__eyrx4q__cta:hover {
  background: #4f46e5;
}

.FooterSection-module__eyrx4q__copyright {
  color: #a3a3a3;
  font-size: .95rem;
}


/* [project]/src/components/TestimonialSlider.module.css [app-client] (css) */
.TestimonialSlider-module__cZa0dG__testimonialSection {
  background: linear-gradient(#f8fafd 60%, #fff 100%);
  border-radius: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 0 56px;
  box-shadow: 0 4px 32px #165dfb0f;
}

.TestimonialSlider-module__cZa0dG__header {
  text-align: center;
  margin-bottom: 32px;
}

.TestimonialSlider-module__cZa0dG__sectionLabel {
  color: #a78bfa;
  letter-spacing: .08em;
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 600;
  display: block;
}

.TestimonialSlider-module__cZa0dG__title {
  color: #18181b;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 700;
}

.TestimonialSlider-module__cZa0dG__sliderGrid {
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 0 24px;
  display: grid;
}

.TestimonialSlider-module__cZa0dG__card {
  background: #fff;
  border-radius: 16px;
  flex-direction: column;
  align-items: flex-start;
  min-height: 320px;
  padding: 32px 24px 28px;
  transition: box-shadow .2s;
  display: flex;
  position: relative;
  box-shadow: 0 2px 16px #165dfb12;
}

.TestimonialSlider-module__cZa0dG__card:hover {
  box-shadow: 0 4px 32px #165dfb21;
}

.TestimonialSlider-module__cZa0dG__profileRow {
  align-items: center;
  gap: 16px;
  width: 100%;
  margin-bottom: 18px;
  display: flex;
}

.TestimonialSlider-module__cZa0dG__avatar {
  object-fit: cover;
  background: #f3f4f6;
  border: 2px solid #e0e7ff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
}

.TestimonialSlider-module__cZa0dG__personName {
  color: #18181b;
  margin-bottom: 2px;
  font-size: 1.08rem;
  font-weight: 700;
}

.TestimonialSlider-module__cZa0dG__personRole {
  color: #6b7280;
  font-size: .98rem;
}

.TestimonialSlider-module__cZa0dG__quoteIcon {
  color: #165dfb;
  user-select: none;
  margin-left: auto;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.TestimonialSlider-module__cZa0dG__quote {
  color: #444;
  margin-top: 8px;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.7;
}

.TestimonialSlider-module__cZa0dG__quote .TestimonialSlider-module__cZa0dG__highlight {
  color: #222;
  font-weight: 600;
}

@media (width <= 900px) {
  .TestimonialSlider-module__cZa0dG__sliderGrid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 8px;
  }

  .TestimonialSlider-module__cZa0dG__card {
    min-height: 0;
  }
}


/*# sourceMappingURL=src_components_1c884e35._.css.map*/