/* Root Variables for Colors */
:root {
  --primary-color: #ee087f;
  /* Dodger Blue */
  --secondary-color: #692680;
  /* Light Gray Background */
  --text-color: #333;
  /* Dark Gray Text */
  --heading-color: #222;
  /* Darker Heading Color */
  --accent-color: #ff6347;
  /* Tomato Red for highlights */
}

/* General Body Styling */
body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  background-color: #fff;
  color: var(--text-color);
  line-height: 1.6;
}

/* Section Styling */
section {
  padding: 60px 20px;
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
}

.section-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* Headings */
h1,
h2,
h3,
h4,
p {
  color: var(--heading-color);
  margin-top: 0;
  margin-bottom: 0;
}

h1 {
  font-size: 3.875rem;
}

.text50 {
  font-size: 3.125rem;
}

h2 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 76px;
}

h4 {
  font-size: 1.875rem;
}

h5 {
  font-size: 1.5rem;
}

.button {
  padding: 14px 24px;
  border-radius: 50px;
}

/* Hero section Styling */

#hero-section {
  background-image: url(/images/hero-image.webp);
  background-size: 100% 780px;
  background-position: top;
  background-repeat: no-repeat;
  width: 100%;
  padding: 40px 20px 0px 20px;
}

.content-wrapper {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.main-logo {
  width: 384px;
  height: 80px;
  border-radius: 106px;
  border-width: 1px;
  justify-content: space-between;
  padding-top: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  padding-left: 24px;
  border: 1px solid lightgray;
  /* border-image-source: linear-gradient(
    109deg,
    #c9c9c9 27.85%,
    rgba(255, 255, 255, 0.2) 86.53%
  ); */
  backdrop-filter: blur(80px);
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.06) -84.93%,
      rgba(255, 255, 255, 0.3) 123.29%);
}

.main-logo .navbar-brand img {
  width: 298px !important;
}

.navbar {
  position: relative;
  z-index: 10 !important;
  max-width: 100%;
  width: 1240px;
  height: 80px;
  border-radius: 106px;
  border-width: 1px;
  justify-content: space-between;
  padding-top: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  padding-left: 24px;
  border: 1px solid lightgray;
  /* border-image-source: linear-gradient(
    109deg,
    #c9c9c9 27.85%,
    rgba(255, 255, 255, 0.2) 86.53%
  ); */
  backdrop-filter: blur(80px);
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.06) -84.93%,
      rgba(255, 255, 255, 0.3) 123.29%);
}

.mega-dropdown {
  height: 253px;
  display: none;
  position: absolute;
  top: 40px;
  left: -285px;
  width: 772px;
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0px 3px 24px #0000008f;
  gap: 32px;
  z-index: 100;
}

.nav-item:hover .mega-dropdown,
.mega-dropdown:hover {
  display: flex;
}

.nav-link {
  padding: 7px;
}

.nav-link.active {
  border-bottom: 2px solid #EE087F;
}


.mega-dropdown {
  flex-direction: row;
  justify-content: space-between;
}

.mega-column {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.mega-column:not(:last-child) {
  border-right: 1px solid #f2f2f2;
  padding-right: 40px;
}

.mega-column h4 {
  color: #692680;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 17px;
}

.mega-column a {
  text-align: left;
  color: #0e0510;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 6px;
  font-weight: 400;
  line-height: 26px;
}

.mega-column a:hover {
  /* text-decoration: underline; */
  color: #5b2c91;
}

.navbar .navbar-nav {
  gap: 28px;
}

.navbar .nav-login-btn {
  width: 110px;
  height: 48px;
  padding: 10px 24px;
  border-radius: 50px;
  background: rgba(238, 8, 127, 1);
}

.navbar .navbar-brand {
  width: 228px;
  height: auto;
}

.hero-section h1 {
  color: #fff;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0%;
}

.hero-section p {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: 0%;
}

.hero-section .button {
  background-color: var(--primary-color);
  color: #ffff;
  font-size: 20px;
  line-height: 28px;
  border: none;
  font-weight: 700;
}

.hero-section .button:hover {
  background-color: #02daff;
  color: #ffffff;
}

.hero-section .hero-section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  height: 344px;
  width: 1050px;
}

.provider-now-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.provider-now-content h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #ffffff;
}

.provider-now-content .card-wrapper {
  width: 295px;
  height: 320px;
  border-radius: 16px;
  border-width: 1px;
  gap: 10px;
  padding: 24px 23px;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0.42) 100%);
  backdrop-filter: blur(15px);
  border: 1px solid transparent;
  /* border-image-source: linear-gradient(
    171.11deg,
    rgba(255, 255, 255, 0.2) 1.4%,
    #c9c9c9 100.6%
  ); */
  flex: 1;
}

.provider-now-content .card {
  background-color: transparent;
  border: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.provider-now-content .card-image-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  padding: 10px;
  background: #ee087f;
}

.provider-now-content .card-heading {
  font-weight: 600;
  font-size: 28px;
  line-height: 42px;
  letter-spacing: 0%;
  color: #ffffff;
}

.provider-now-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #0e0510;
  margin-top: 10px;
}

.card-section-wrapper {
  display: flex;
  justify-content: center;
  flex-direction: row wrap;
  gap: 20px;
}

.hero-section-heading .highlighter {
  background: #f8c03833;
  padding: 3px 3px;
  color: #ffb500;
  position: relative;
}

.hero-section-heading .highlighter:before {
  content: "";
  display: inline-block;
  position: relative;
  left: -5px;
  top: 10px;
  /* background-image: url(/images/hero-section-text-mask-up.png); */
  width: 7px;
  height: 41px;
}

.hero-section-heading .highlighter:after {
  content: "";
  display: inline-block;
  position: relative;
  right: -5px;
  top: 15px;
  /* background-image: url(/images/hero-section-text-mask-down.png); */
  width: 7px;
  height: 41px;
}

/* End Hero section */

/* how it works section */

#how-work-section .how-work-btn {
  width: 219px;
  height: 65px;
  padding: 16px 30px;
  border-radius: 70px;
  background: rgba(217, 44, 145, 0.2);
  border: 1px solid rgba(238, 8, 127, 1);
  color: rgba(238, 8, 127, 1);
  line-height: 100%;
}

#how-work-section h2 {
  color: rgba(14, 5, 16, 1);
}

#how-work-section p {
  font-weight: 300;
  font-size: 24px;
  line-height: 34px;
}

#how-work-section .section-container {
  gap: 60px;
}

#how-work-section .cards-wrapper {
  display: flex;
}

#how-work-section img:before {}

#how-work-section .card-heading {
  font-weight: 600;
  font-size: 28px;
  line-height: 100%;
  color: rgba(105, 38, 128, 1);
  text-align: center;
  margin-bottom: 12px;
  width: 247px;
}

#how-work-section .card-container p {
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  color: rgba(14, 5, 16, 1);
  width: 247px;
}

#how-work-section .card-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  max-width: 200px;
}

#how-work-section .cards-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 100%;
  width: 100%;
}

#how-work-section .card-container .img-wrapper {
  position: relative;
  margin-bottom: 60px;
}

#how-work-section img {
  height: 200px;
  width: 200px;
  position: relative;
  z-index: 1;
}

#how-work-section .card-container .img-wrapper:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  z-index: 0;
}

#how-work-section .card-container.first .img-wrapper:before {
  background-image: url(/images/left-line.svg);
  width: 136px;
  height: 5px;
  top: 50%;
  left: -125px;
}

#how-work-section .card-container.second .img-wrapper:before {
  background-image: url(/images/purple-union.svg);
  width: 264px;
  height: 134px;
  top: 50%;
  left: -250px;
}

#how-work-section .card-container.third .img-wrapper:before {
  background-image: url(/images/sky-union.svg);
  width: 264px;
  height: 134px;
  top: 50%;
  left: -250px;
}

#how-work-section .card-container.forth .img-wrapper:before {
  background-image: url(/images/yellow-union.svg);
  width: 264px;
  height: 134px;
  top: 50%;
  left: -250px;
}

#how-work-section .card-container.forth .img-wrapper:after {
  content: "";
  display: inline-block;
  position: absolute;
  background-image: url(/images/pink-union.svg);
  width: 208px;
  height: 134px;
  top: 50%;
  right: -100px;
}

#how-work-section .card-container.second .card-heading {
  color: #33bfe8;
}

#how-work-section .card-container.third .card-heading {
  color: #f8c038;
}

#how-work-section .card-container.forth .card-heading {
  color: #d92c91;
}

/* Health section */

#your-health-section {
  background: linear-gradient(180deg, #401d54 0%, #692680 100%);
}

#your-health-section .section-container {
  width: 1337px;
  max-width: 1337px;
  display: flex;
  flex-flow: column;
  gap: 60px;
}

.custom-btn {
  border: 1px solid#33BFE8;
  color: #33bfe8;
  padding: 16px 32px;
  border-radius: 70px;
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  height: 65px;
}

.custom-btn:hover {
  border: 1px solid#33BFE8;
  color: #33bfe8;
  background: transparent;
}

#your-health-section h2 {
  color: #ffffff;
}

#your-health-section p {
  font-size: 24px;
  font-weight: 400;
  line-height: 38px;
  color: #ffffff;
}

#your-health-section .health-flow .wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 4;
}

#your-health-section .health-flow button {
  position: relative;
  border-radius: 16px;
  padding: 24px;
  background-color: #ee087f;
  border: none;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: white;
  height: 88px;
  z-index: 2;
}

#your-health-section .health-flow button img {
  width: 40px;
  height: 40px;
}

#your-health-section .health-flow button .chevron-icon {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

#your-health-section .health-flow button:hover .chevron-icon {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.button-accordion {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  position: relative;
  left: 0;
  width: 100%;
  background: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 0 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
  top: 10px;
  gap: 24px;
  transition: all 0.5s ease-in-out;
}

.accordion-item h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0%;
}

.accordion-item p {
  font-weight: 400;
  font-size: 16px !important;
  line-height: 26px !important;
  letter-spacing: 0%;
  color: #0e0510 !important;
}

#your-health-section .health-flow .img-wrapper {
  position: relative;
  z-index: 0;
}

#your-health-section .health-flow .img-wrapper img {
  z-index: 3;
  position: relative;
}

#your-health-section .health-flow .img-wrapper:before {
  content: "";
  display: inline-block;
  position: absolute;
  background-position: center;
  background-size: cover;
  height: 244px;
  width: 244px;
  left: auto;
  right: -50px;
  top: 10px;
  z-index: 1;
  background: #caa3b7b2;
  filter: blur(80px);
}

#your-health-section .health-flow {
  display: flex;
  flex-flow: column;
  gap: 60px;
  justify-content: center;
}

#your-health-section .health-flow .button-wrapper button {
  max-width: 310px;
}

#your-health-section .health-flow .button-wrapper .well-service {
  max-width: 100% !important;
}

#your-health-section .health-flow .button-wrapper {
  text-align: center;
  z-index: 4;
}

#your-health-section .health-flow .img-wrapper:after {
  content: "";
  position: absolute;
  height: 380px;
  width: 350px;
  right: -90px;
  bottom: 0;
  z-index: 1;
  background: rgba(238, 8, 127, 0.3);
  filter: blur(180px);
  pointer-events: none;
}

#your-health-section .health-flow img.image-lines {
  position: absolute;
  width: 560px;
  height: 197px;
  left: 50%;
  top: 50%;
  transform: translatex(-50%);
  z-index: 0;
}

/* End health section */

/* What to Expect */

#what-to-expect-section .what-to-expect-btn {
  background-color: #d92c9133;
  border: 1px solid #ee087f;
  border-radius: 70px;
  color: #ee087f;
  padding: 16px 30px;
  line-height: 100%;
  width: 223px;
  height: 65px;
}

#what-to-expect-section .section-container {
  gap: 60px;
}

.three-col-layout {
  display: flex;
  gap: 20px;
}

.left-col,
.right-col {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.center-col {
  width: 50%;
}

.center-col .block {
  width: 610px;
}

.block {
  width: 295px;
  height: 348px;
}

.left-col .budget {
  background: #f4e7f8;
}

.left-col .timelime {
  background: #e3f6fc;
}

.left-col .budget .card-image-wrapper {
  background: #692680;
}

.left-col .timelime .card-image-wrapper {
  background: #33bfe8;
}

.right-col .brain {
  background: #fef6e1;
}

.right-col .brain .card-image-wrapper {
  background: #f8c038;
}

.right-col .heart {
  background: #fee1f0;
}

.right-col .heart .card-image-wrapper {
  background: #ee087f;
}

.inner-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.block .inner-content .card-image-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  padding: 10px;
}

.block .inner-content .card-heading {
  font-weight: 600;
  font-size: 28px;
  line-height: 38px;
  letter-spacing: 0%;
  color: #0e0510;
}

.block .inner-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #0e0510;
}

.rounded-16px {
  border-radius: 16px;
}

#healthcare-math-section {
  background: linear-gradient(180deg, #401d54 0%, #692680 100%);
  padding: 60px 100px 60px 100px;
}

#healthcare-math-section h2 {
  font-weight: 700;
  font-size: 56px;
  line-height: 76px;
  letter-spacing: 0%;
  text-align: center;
  color: #ffffff;
}

#healthcare-math-section p {
  line-height: 40px;
  font-weight: 300;
}

.healthcard-wrapper {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

.health-card {
  display: flex;
  width: 610px;
  height: 220px;
  padding: 23px;
  border: 1px solid #ffffffcc;
  border-radius: 16px;
  gap: 10px;
  background: #ffffff1a;
  backdrop-filter: blur(32px);
  flex-direction: column;
}

.inner-health-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.health-card .card-heading {
  font-weight: 700;
  font-size: 60px;
  line-height: 82px;
  letter-spacing: 0%;
  color: #33bfe8;
}

.health-card .card-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.health-card .card-text p {
  font-weight: 600 !important;
  font-size: 28px;
  line-height: 38px;
  letter-spacing: 0%;
  color: #ffffff;
}

.health-card .card-text span {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #ffffff;
}

.pricing-section {
  margin-top: 60px;
  gap: 40px;
  display: flex;
  flex-direction: column;
}

.pricing-section h3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #ffffff;
}

.pricing-card-wrapper {
  display: flex;
  gap: 20px;
}

.pricing-card-wrapper .pricing-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 295px;
  height: 344px;
  gap: 10px;
  border-radius: 16px;
  border-width: 1px;
  padding: 24px;
  border: 1px solid #ffffffcc;
  background: #ffffff1a;
}

.inner-pricing {
  display: flex;
  gap: 12px;
  flex-direction: column;
  align-items: center;
  height: 296px;
}

.inner-pricing .icon-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #33bfe8;
  border-radius: 80px;
  padding: 10px;
  height: 80px;
  width: 80px;
}

.inner-pricing .card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inner-pricing h3 {
  font-weight: 700;
  font-size: 44px;
  line-height: 60px;
  text-align: center;
}

.inner-pricing p {
  font-weight: 600 !important;
  font-size: 21px;
  line-height: 32px !important;
  letter-spacing: 0%;
  text-align: center;
  color: #f8c038;
  width: 247px;
}

.inner-pricing span {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: center;
  color: #ffffff;
}

.section-container .form {
  background: linear-gradient(180deg, #401d54 0%, #692680 100%);
  border-radius: 24px;
}

.form-inner-content {
  padding: 60px 116px;
  gap: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.form-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-inner-content h2 {
  font-weight: 600;
  font-size: 52px;
  line-height: 76px;
  letter-spacing: 0%;
  text-align: center;
  color: #ffffff;
}

.payment-options {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.payment-options img {
  height: 28px;
  width: 28px;
}

.payment-options p {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: center;
  color: #ffffff;
}

.form-inner-content form {
  width: 1009px;
  height: 344px;
  gap: 32px;
  border-radius: 12px;
  border-width: 1px;
  padding: 32px;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.28) 100%);
  border: 1px solid transparent;
  /* border-image-source: linear-gradient(
    171.11deg,
    rgba(255, 255, 255, 0.2) 1.4%,
    #c9c9c9 100.6%
  ); */
}

.form-input-wrapper {
  width: 945px;
  height: 192px;
  gap: 24px;
}

.form-input {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-input label {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0%;
  color: #ffffff;
}

.form-input span {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0%;
  color: #ee087f;
}

.form-input input {
  width: 460.5px;
  height: 50px;
  gap: 10px;
  padding-top: 14px;
  padding-right: 24px;
  padding-bottom: 14px;
  padding-left: 24px;
  border-radius: 50px;
  color: #0e051099;
  border: transparent;
}

.btn-wrapper {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.form-btn {
  width: 299px;
  height: 56px;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  border: transparent;
  padding-top: 14px;
  padding-right: 24px;
  padding-bottom: 14px;
  padding-left: 24px;
  border-radius: 50px;
  background: #ee087f;
  color: #ffffff;
}

.form-btn:hover {
  background-color: #02daff;
  color: #ffffff;
}

.testimonial-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.testimonial-content {
  height: 249px;
}

.testimonial-content .testimonial-btn {
  background-color: #d92c9133;
  border: 1px solid #ee087f;
  border-radius: 70px;
  color: #ee087f;
  padding: 16px 30px;
  line-height: 100%;
  width: 212px;
  height: 65px;
}

.testimonial-content p {
  width: 966px;
  font-weight: 300;
  line-height: 40px;
  color: #0e0510;
}

.testimonial-cards-wrapper {
  display: flex;
  gap: 20px;
}

.testimonial-card .card-inner {
  gap: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testimonial-card {
  width: 400px;
  height: 232px;
  border-radius: 16px;
  padding: 24px;
  gap: 10px;
  display: flex;
  flex-direction: column;
  border: 1px solid #fce0ef;
  backdrop-filter: blur(20px);
  background: linear-gradient(146.25deg,
      rgba(238, 8, 127, 0.01) 18.68%,
      rgba(238, 8, 127, 0.03) 92.68%);
}

.testimonial-card img {
  height: 60px;
  width: 60px;
}

.testimonial-card p {
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #0e0510;
  text-align: center;
}

.testimonial-card h6 {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: center;
  color: #0e0510;
}

.testimonial-wrapper .view-all-btn {
  border: none;
  background-color: var(--primary-color);
  color: #ffff;
  width: 180px;
  height: 56px;
  border-radius: 50px;
}

#main-hero-section {
  padding-top: 32px;
  background-color: #692680;
  height: 746px;
}

.main-content-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 40px;
  padding-top: 80px;
}

.header-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.header-content h2 {
  font-family: Open Sans;
  font-weight: 700;
  font-size: 56px;
  line-height: 76px;
  letter-spacing: 0%;
  color: #FFFFFF;
}

.header-content button {
  font-family: Open Sans;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0%;
  height: 56px;
  gap: 10px;
  border-radius: 50px;
  padding: 14px 32px;
  border: none;
  color: #FFFFFF;
  background: #EE087F;
  align-self: self-start;
  display: inline-flex;
}

.header-content p {
  font-family: Open Sans;
  font-weight: 600;
  font-size: 21px;
  line-height: 44px;
  letter-spacing: 0%;
  color: #FFFFFF;
}

.header-image img {
  width: 610px;
  height: 501px;
  border-radius: 30px;
  object-fit: cover;
}

.frame-image {
  position: absolute;
  width: 100%;
  bottom: -28px;
  z-index: 0;
  height: 234px;
}

#form-section {
  box-shadow: none;
}

#newsletter-section {
  padding: 40px 20px;
  background: linear-gradient(180deg, #401d54 0%, #692680 100%);
  margin-bottom: 30px;
  border-radius: 24px;
}

.footer-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 460px;
  margin: auto;
}

.footer-form-wrapper .footer-form-heading {
  font-weight: 400;
  font-size: 24px;
  line-height: 33px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #ffffff;
}

.footer-form-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-form-wrapper form label {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: middle;
  color: #ffffff;
}

.footer-form-wrapper form label {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #ffffff;
}

.footer-form-wrapper form .inline-form {
  display: flex;
  flex-flow: row;
  width: 100%;
  justify-content: space-between;
  border-radius: 6px;
  border: 1px solid #ffffff;
  height: 44px;
  align-items: center;
  padding: 4px 4px 4px 16px;
}

.footer-form-wrapper form .inline-form input {
  flex: 1;
  background: none;
  border: none;
  color: #ffffffb2;
}

.footer-form-wrapper form .inline-form input:focus-visible {
  border: none;
  outline: none;
}

.footer-form-wrapper input::placeholder {
  color: #ffffffb2;
}

.footer-form-wrapper form .inline-form button {
  height: 36px;
  width: 36px;
  background: #692680;
  border: none;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}


footer {
  background: #692680;
  padding: 24px;
  height: 72px;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-wrapper .privacy-modal {
  cursor: pointer;
}

.footer-wrapper .social-icon {
  gap: 24px;
  display: flex;
  font-weight: 400;
}

.footer-wrapper .social-icon img {
  height: 24px;
  width: 24px;
}

.footer-wrapper p {
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0%;
  line-height: auto;
}

.copy-right {
  display: flex;
  gap: 3px;
  align-items: center;
}

.copy-right img {
  height: 16px;
  width: 16px;
}

.modal-body p {
  margin-bottom: 1rem;
}

.modal-body a {
  color: #6b3e7f;
  text-decoration: none;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}

.web-image {
  display: block;
}

.mob-image {
  display: none;
}



/* Main Footer styling */

.main footer {
  height: auto;
  background-color: #401d54;
  padding: 60px 0 24px 0;
}

.footer-top-wrapper .column-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 505px;
  flex: 0 0 505px;
}

.footer-logo-wrapper {
  width: 310px;
  max-width: 100%;
}

.footer-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer form label {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: middle;
  color: #ffffff;
}

footer form label {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #ffffff;
}

.main footer form .inline-form {
  display: flex;
  flex-flow: row;
  width: 100%;
  justify-content: space-between;
  border-radius: 6px;
  border: 1px solid #ffffff;
  height: 44px;
  align-items: center;
  padding: 4px 4px 4px 16px;
}

.main footer form .inline-form input {
  flex: 1;
  background: none;
  border: none;
  color: #ffffffb2;
}

.main footer form .inline-form input:focus-visible {
  border: none;
  outline: none;
}

.main footer input::placeholder {
  color: #ffffffb2;
}

.main footer form .inline-form button {
  height: 36px;
  width: 36px;
  background: #692680;
  border: none;
  border-radius: 4px;
}

.social-icon-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.social-icon-wrapper p {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0;
  vertical-align: middle;
}

.main footer .social-icon {
  max-width: 216px;
}

.main footer .social-icon a {
  height: 24px;
  width: 24px;
}

.main footer .footer-wrapper {
  flex-direction: column;
}

.main .copy-right {
  justify-content: center;
  padding-top: 20px;
  border-top: 1px solid #ffffff33;
}

.main footer .footer-wrapper {
  flex-direction: column;
}

.main .footer-top-wrapper {
  display: flex;
  justify-content: space-between;
}

.main .copy-right {
  justify-content: center;
  padding-top: 20px;
  border-top: 1px solid #ffffff33;
}

.main footer .column-right {
  display: flex;
  flex-direction: row;
  gap: 32px;
  max-width: 381px;
  flex: 0 0 381px;
  justify-content: space-between;
}

.main footer .column-right .footer-menu,
.main footer .column-right .footer-learn-more {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.main footer .menu-heading {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #ffffff;
  padding-bottom: 16px;
}

.main footer .footer-menu a,
.main footer .footer-learn-more a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0;
  vertical-align: middle;
}

.chatbot-wrapper {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  z-index: 9999;
}

.chatbot {
  width: 360px;
  height: 657px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  flex-direction: column;
  gap: 20px;
}

.chatbot-btn {
  position: relative;
  width: 100px;
  height: 100px;
}

.chatbot-btn button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Hide button visually and disable interaction */
.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Rotation classes */
.rotate-180 {
  transform: rotate(180deg);
}

.rotate--180 {
  transform: rotate(-180deg);
}

/* Chatbox */
.chatbot {
  opacity: 0;
  display: none;
  transition: opacity 0.4s ease;
}

.chatbot-wrapper .chatbot {
  border-radius: 24px;
  background: #f2f4f7;
  border: 1px solid #e4e7ec;
}

.chatbot-header {
  height: 74px;
  width: 100%;
  border-bottom-width: 0.82px;
  background: #692680;
  border-radius: 24px 24px 0 0;
  border-bottom: 0.82px solid #e3e3e3;
  padding: 12px 20px;
}

.chatbot-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.chat-header-right {
  display: flex;
  flex-direction: row;
  gap: 9.82px;
}

.chat-header-right span {
  height: 50px;
  width: 50px;
  background: #ffffff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-header-heading {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #ffffff;
}

.chat-header-status {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #ffffff;
}

.chatbot {
  position: relative;
}

.inner-chatbot-wrapper {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 200px);
}

.chatbot-inner span {
  padding: 6px;
  background: #ffffff;
  height: 24px;
  width: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 0.82px solid #d0d5dd;
}

.chatbot-inner span img {
  height: 11.52px;
  width: 11.52px;
}

.chatbot-inner .message {
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #e4e7ec;
  padding: 12px 16px 12px 16px;
}

.chatbot-inner .message p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #667085;
}

.chatbot-inner .message p strong {
  font-weight: 600;
}

.livechat-timestamp {
  color: #667085;
  font-weight: 400;
  font-size: 10px;
  line-height: 10px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.faq-item {
  display: inline-block;
  border: 1px solid #d0d5dd;
  border-radius: 999px;
  padding: 8px 16px;
  color: #692680;
  font-size: 14px;
  font-weight: 400;
  background-color: transparent;
  align-self: flex-start;
}

.chatbot-footer {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  background: #fcfcfd;
  border-radius: 0 0 24px 24px;
}

.chatbot-footer .poweredby {
  font-weight: 400;
  width: 100%;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #98a2b3;
  border-top: 1px solid #e4e7ec;
  border-radius: 0 0 24px 24px;
  height: 34px;
  gap: 2px;
}

.chatbot-footer .poweredby span {
  background: linear-gradient(91.55deg, #401d54 48.68%, #692680 90.54%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* For better cross-browser support: */
  background-clip: text;
  color: transparent;
}

.chatbot-footer .write-message {
  height: 56px;
  width: 100%;
  border-top: 1px solid #e4e7ec;
  padding: 16px 20px;
}

.chatbot-footer .write-message form {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.chatbot-footer .write-message form input {
  border: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0;
  vertical-align: middle;
  color: gray;
  width: 90%;
}

.chatbot-footer .write-message form input:focus-visible {
  border: none;
  outline: none;
}

.chatbot-footer .write-message form input::placeholder {
  color: #667085;
}

@media (max-height: 800px) {
  .chatbot {
    height: 545px;
  }
}


@media screen and (min-width:601px) {

  #how-work-section .card-container .img-wrapper img:nth-of-type(2) {
    display: none;
  }

  #how-work-section .cards-wrapper>img {
    display: none;
  }

}


@media screen and (max-width:600px) {
  #how-work-section .card-container .img-wrapper img:nth-of-type(1) {
    display: none;
  }

  #how-work-section .card-container {
    flex-direction: column-reverse;
  }

  #how-work-section .card-heading {
    order: 1;
  }

}


@media (max-width: 575px) {
  .main-logo {
    width: auto;
  }

  .hero-section .hero-section-heading {
    height: auto;
    width: auto;
    gap: 60px;
    margin-top: 30px;
  }

  .hero-section-heading .highlighter {
    margin-left: 0px;
    position: relative;
    display: inline-block;
    background: #f8c03833;
    padding: 3px 3px;
    color: #ffb500;
    margin-top: 5px;
  }

  .hero-section-heading .highlighter:before,
  .hero-section-heading .highlighter:after {
    content: "";
    display: block;
    position: absolute;
    width: 7px;
    height: 38px;
    /* background-repeat: no-repeat; */
    /* background-size: contain; */
  }

  .hero-section h1 {
    font-size: 31px;
  }

  .hero-section p {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 12px;
  }

  #hero-section {
    /* background-color: #692680; */
    background-size: auto;
    padding: 30px 20px;
  }

  .provider-now-content .card-wrapper {
    border: 1px solid lightgray;
  }

  .provider-now-content .card-heading {
    color: #000000;
  }

  .card-section-wrapper {
    flex-direction: column;
  }

  .provider-now-content .card-wrapper {
    width: auto;
  }

  .product {
    color: black !important;
    margin-top: 10rem;
  }

  #how-work-section h2 {
    font-size: 2rem;
    line-height: 40px;
    text-align: center;
  }

  #how-work-section .section-container {
    gap: 30px;
  }

  #how-work-section .cards-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  #how-work-section .card-container .img-wrapper {
    margin-bottom: 30px;
  }

  #how-work-section .card-container .img-wrapper:before,
  #how-work-section .card-container .img-wrapper:after {
    display: none !important;
  }

  section {
    padding: 30px 20px;
  }

  #your-health-section .section-container {
    width: auto;
    gap: 30px;
  }

  h2 {
    font-size: 2rem;
    line-height: 40px;
    text-align: center;
  }

  #your-health-section p {
    font-size: 17px;
    line-height: 30px;
    text-align: center;
  }

  #your-health-section .health-flow {
    gap: 30px;
  }

  #your-health-section .health-flow .wrapper {
    flex-direction: column;
    gap: 30px;
  }

  #your-health-section .health-flow img.image-lines {
    display: none;
  }

  #your-health-section .health-flow .button-wrapper button {
    max-width: 100%;
  }

  #your-health-section .health-flow button {
    font-size: 20px;
    width: 100%;
    max-width: 100%;
    height: 65px;
    padding: 0;
  }

  .three-col-layout {
    display: inline-block;
  }

  .center-col {
    width: 100%;
  }

  .center-col .block {
    width: 100%;
  }

  .left-col,
  .right-col {
    width: 100%;
  }

  .block {
    width: 100%;
    height: auto;
  }

  .center-col .block img {
    width: 100%;
    margin: 20px 0;
  }

  #healthcare-math-section {
    padding: 30px 20px;
  }

  #healthcare-math-section h2 {
    font-size: 2rem;
    line-height: 40px;
  }

  .healthcard-wrapper {
    display: inline-block;
  }

  .health-card {
    margin-bottom: 20px;
    width: auto;
    height: auto;
  }

  .health-card .card-heading {
    line-height: 0;
    font-size: 40px;
  }

  .health-card .card-text p {
    font-size: 25px;
    line-height: 30px !important;
  }

  .health-card .card-text span {
    font-size: 15px;
    line-height: 25px;
  }

  .pricing-section h3 {
    line-height: 40px;
  }

  .pricing-card-wrapper {
    flex-direction: column;
  }

  .pricing-card-wrapper .pricing-card {
    width: auto;
  }

  .inner-pricing p {
    width: auto;
  }

  .form-inner-content {
    padding: 20px;
  }

  .form-inner-content h2 {
    font-size: 2rem;
    line-height: 40px;
  }

  .payment-options {
    flex-direction: column;
  }

  .form-inner-content form {
    width: auto;
    height: auto;
    padding: 15px;
  }

  .form-input-wrapper {
    width: auto;
    height: auto;
  }

  .form-input input {
    width: auto;
  }

  .form .form-bg-img {
    display: none;
  }

  .form-btn {
    width: 170px;
    font-size: 15px;
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .web-image {
    display: none;
  }

  .mob-image {
    display: block;
  }

  .content-wrapper {
    gap: 34px;
  }

  .provider-now-content {
    gap: 50px;
  }

  .testimonial-cards-wrapper {
    flex-direction: column;
  }

  .testimonial-content p {
    width: auto;
  }

  .testimonial-card {
    width: auto;
    height: auto;
  }

  #how-work-section img {
    height: auto;
    width: 255px;
    position: relative;
    z-index: 1;
  }

  #how-work-section .bar-line {
    height: 136px !important;
    width: auto;
  }

  footer {
    height: auto;
    padding: 20px;
  }

  .footer-wrapper {
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }

  .main footer {
    padding: 30px 20px;
  }

  .main footer .footer-wrapper {
    align-items: normal;
  }

  .footer-top-wrapper {
    flex-direction: column;
  }

  .footer-top-wrapper .column-left {
    flex: 0 0 335px;
  }

  footer .column-right {
    flex: 0 0 260px;
  }
}