/*! CSS Used from: Embedded */
body {
  transition: opacity ease-in 0.2s;
}

/*! CSS Used from: https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css */
.fa-solid {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}

.fa-solid {
  font-family: "Font Awesome 6 Free";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-comments:before {
  content: "\f086";
}

.fa-ribbon:before {
  content: "\f4d6";
}

.fa-user-doctor:before {
  content: "\f0f0";
}

.fa-circle-info:before {
  content: "\f05a";
}

:root {
  --fa-style-family-brands: "Font Awesome 6 Brands";
  --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
}

:root {
  --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free";
}

:root {
  --fa-style-family-classic: "Font Awesome 6 Free";
  --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
}

.fa-solid {
  font-weight: 900;
}

/*! CSS Used from: http://127.0.0.1:5500/aster-calicut/assets/style.css */
:root {
  --bg: #f8fbfd;
  --text: #0f172a;
  --muted: #475569;
  --muted2: #64748b;
  --line: #e2e8f0;
  --white: #fff;
  --wa: #25d366;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.topbar,
.footer {
  color: #fff;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner,
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar {
  padding: 8px 0;
}

.header {
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-badge {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.12);
}

.logo p {
  margin: 0;
}

.small {
  font-size: 12px;
  color: var(--muted2);
}

.tiny {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted2);
}

.nav {
  display: none;
  gap: 8px;
  flex-wrap: wrap;
}

.pill {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 600;
  font-size: 14px;
}

.hero {
  border-bottom: 1px solid var(--line);
  padding: 48px 0 56px;
}

.hero-grid,
.grid-2,
.grid-3,
.grid-4,
.grid-docs {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: 1.35fr 0.95fr;
  align-items: center;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-docs {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.badge {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
}

h1 {
  font-size: 56px;
  line-height: 1.03;
  margin: 0 0 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 40px;
  line-height: 1.1;
  margin: 0 0 12px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 28px;
  line-height: 1.15;
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 12px;
}

.lead {
  font-size: 20px;
  line-height: 1.7;
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 18px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.btn-white {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn-primary {
  color: #fff;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.card-soft {
  background: #f8fafc;
}

.visual {
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.visual-image {
  aspect-ratio: 5/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 14px;
  text-align: center;
  padding: 24px;
}

.section {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}

.section.alt {
  background: #f8fafc;
}

.kpis .card p:first-child {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}

.muted {
  color: var(--muted);
}

.list {
  padding-left: 18px;
  margin: 12px 0 0;
}

.list li {
  margin: 8px 0;
  color: var(--muted);
}

.footer {
  padding: 28px 0;
  text-align: center;
  background: #fff;
  color: #64748b;
  border-top: 1px solid var(--line);
}

.doc-card .photo {
  aspect-ratio: 1;
  border: 1px dashed #cbd5e1;
  border-radius: 18px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 12px;
}

.linkrow {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.spacer {
  display: none;
  height: 76px;
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }
}

@media (max-width: 899px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-docs {
    grid-template-columns: 1fr;
  }

  .spacer {
    display: block;
  }
}

.topbar {
  background: linear-gradient(to bottom right, #00b48d, #164d92);
}

.logo-badge,
.btn-primary {
  background: linear-gradient(to bottom right, #00b48d, #164d92);
}

.hero {
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), linear-gradient(to bottom right, #00b48d, #164d92) 16, #9fe7df16);
}

.visual-image {
  background: linear-gradient(135deg, linear-gradient(to bottom right, #00b48d, #164d92) 18, #9fe7df26);
}

.accent {
  color: linear-gradient(to bottom right, #00b48d, #164d92);
}

.photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
}

.mar {
  margin: 0 5px;
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none;
  }
}

.footer {
  color: #000;
  font-size: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 40px;
}

.footer-container {
  max-width: 1180px;
  margin: auto;
  padding: 24px 16px;
}

.footer-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (min-width: 768px) {
  .footer-flex {
    flex-direction: row;
  }
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-text {
  margin-top: 16px;
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8);
  text-align: center;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .footer-text {
    text-align: left;
  }
}

.journey-section {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.journey-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 16px;
}

.journey-heading {
  font-size: 30px;
  font-weight: 900;
  color: #0f172a;
}

.journey-subtext {
  margin-top: 8px;
  color: #475569;
  font-size: 16px;
}

.journey-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .journey-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.journey-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.journey-step {
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
}

.journey-title {
  margin-top: 4px;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

.journey-text {
  margin-top: 8px;
  color: #475569;
  font-size: 15px;
}

/*! CSS Used from: https://css.zohocdn.com/salesiq/RESOURCE_BUNDLES/embedfloat/css/float.lxA5QpOPpkOzdyFrId69TnuMzZxGiKy6v3NVm8TZksItzlyzR4xjf7gPbEoiSDIV.css */
:root {
  --zsiqf-custom-bg-color: #06c;
  --zsiqf-cw-bg-color: var(--zsiqf-custom-bg-color);
  --zsiqf-tooltip-close-bg: #000;
  --zsiqf-intigator-bg-color: #ff3520;
  --zsiqf-mob-minimise-bg-color: rgba(0, 0, 0, .14);
  --zsiqf-progress-load-cont-bg: hsla(0, 0%, 90%, .3);
  --zsiqf-progress-load-bar-bg: hsla(0, 0%, 90%, .15);
  --zsiqf-primary-bg: #fff;
  --zsiqf-defualt-upload-bg: #666;
  --zsiqf-primary-color: #fff;
  --zsiqf-media-thumbnail-icon-bg: rgba(221, 28, 28, .05);
  --zsiqf-media-thumbnail-icon-color: #dd1c1c;
  --zsiqf-icon-color: #888;
  --zsiqf-d6-border: #d6d6d6;
  --zsiqf-float-close-height: 55px;
  --zsiq-seasonal-float-image-position: 0px;
  --zsiqf-custom-widget-images: url(https://css.zohocdn.com/salesiq/RESOURCE_BUNDLES/embedfloat/ASSETS_V6/images/png/Industry_2x_Q5LR9s-2HBcXR_Gub5iwGqwnlLeEufbtkM7cx6t58Ww2C3GSzdmr77INlC9VIm91_.png) no-repeat;
}

[class*=siqico-] {
  align-items: center;
  display: inline-flex;
  justify-content: center;
}

[class*=siqico-]:after,
[class*=siqico-]:before {
  font-family: siq !important;
  speak: none;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.siqico-close:before {
  content: "\e904";
}

[data-id=zsalesiq] {
  position: relative;
  z-index: 2247483647 !important;
}

[data-id=zsalesiq],
[data-id=zsalesiq] * {
  box-sizing: border-box;
}

.zsiq-float {
  background: var(--zsiqf-custom-bg);
  border-radius: 100%;
  bottom: 10px;
  cursor: pointer;
  font-size: 15px;
  height: var(--zsiqf-float-close-height);
  padding: 3px;
  position: fixed;
  right: calc(10px + var(--zsiq-seasonal-float-image-position));
  width: var(--zsiqf-float-close-height);
}

.zsiq-close-icn {
  color: var(--zsiqf-primary-color);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: .25s linear;
  width: 100%;
}

.zsiq-close-icn {
  font-size: 23px;
  opacity: 0;
  transform: rotate(-25deg);
}

.close-forward {
  animation: rotate-anim .4s linear forwards;
}

.zsiq-toggle:not(.zsiq-minview) .zsiq-close-icn {
  background: none;
  background-color: var(--zsiqf-cw-bg-color);
  border-radius: 100%;
  opacity: 1;
  transform: rotate(0);
}

.chat-iframe-wrap {
  bottom: calc(var(--zsiqf-float-close-height) + 20px);
  height: min(640px, 100% - 104px);
  opacity: 0;
  position: fixed;
  right: 5px;
  transform: translateY(15px);
  transform: scale(0);
  transform-origin: bottom right;
  transition: width .4s cubic-bezier(.25, .1, .17, 1.01), max-height .4s cubic-bezier(.25, .1, .26, .99), transform .4s cubic-bezier(0, 1.18, .99, .98), opacity .2s cubic-bezier(0, 0, .58, 1.05);
  visibility: hidden;
  width: min(361px, max(0px, -20px + 100vw));
  z-index: 1;
}

.chat-iframe-wrap iframe {
  border: none;
  border-radius: 18px;
  height: 100%;
  width: 100%;
}

.chat-iframe-open {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
}

.zsiq-large-size {
  height: min(674px, 100% - 104px);
  width: min(380px, max(0px, -20px + 100vw));
}

.zsiq-flexM {
  align-items: center;
  display: flex;
}

.zsiq-flexM {
  justify-content: center;
}

@media (max-width:554px) {
  .zsiq-toggle {
    display: none;
  }

  .seasonal-float-img,
  .zsiq-float {
    transform: scale(.8) !important;
  }

  .chat-iframe-wrap {
    bottom: 0 !important;
    height: 100% !important;
    left: auto !important;
    max-height: 100% !important;
    max-width: 100% !important;
    right: 0 !important;
    width: 100% !important;
  }

  .chat-iframe-wrap,
  .chat-iframe-wrap iframe {
    border-radius: 0 !important;
  }
}

/*! CSS Used keyframes */
@keyframes rotate-anim {
  0% {
    opacity: 0;
    transform: rotate(-25deg);
  }

  to {
    opacity: 1;
    transform: rotate(0);
  }
}

/*! CSS Used fontfaces */
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/webfonts/fa-regular-400.woff2) format("woff2"), url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/webfonts/fa-regular-400.ttf) format("truetype");
}

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/webfonts/fa-solid-900.woff2) format("woff2"), url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/webfonts/fa-solid-900.ttf) format("truetype");
}

@font-face {
  font-display: swap;
  font-family: siq;
  font-style: normal;
  font-weight: 400;
  src: url(https://css.zohocdn.com/salesiq/RESOURCE_BUNDLES/embedfloat/ASSETS_V6/fonts/siq_tjlsyz0I7_4SOURgudgPwd8-vtmw87ooMPBTjnuYANjPRwiimCNYvhc37SSu2SNn_.eot);
  src: url(https://css.zohocdn.com/salesiq/RESOURCE_BUNDLES/embedfloat/ASSETS_V6/fonts/siq_tjlsyz0I7_4SOURgudgPwd8-vtmw87ooMPBTjnuYANjPRwiimCNYvhc37SSu2SNn_.eot) format("embedded-opentype"), url(https://css.zohocdn.com/salesiq/RESOURCE_BUNDLES/embedfloat/ASSETS_V6/fonts/siq_6qFBvN4YSQR-6jIu-TdH0-Y2mv3M0QrH6Ct6CIB4t4kW16LnYf1-AQb2sFEWBKHL_.ttf) format("truetype"), url(https://css.zohocdn.com/salesiq/RESOURCE_BUNDLES/embedfloat/ASSETS_V6/fonts/siq_vQkvIcwK3cYhr6L3SAirTjAIgpPTfkx62DmrsQChP6w1CWMh8LvbHDbKh1NqH7rh_.woff) format("woff"), url(https://css.zohocdn.com/salesiq/RESOURCE_BUNDLES/embedfloat/ASSETS_V6/fonts/siq_TV4L9UKGs13Rh1AjkJ5f_AGisvV75Pnh2NdxbNCHopzJRH3tCKapKBJqMp3kRAq2_.svg) format("svg");
}