:root {
  --head-font: "DM Sans", sans-serif;
  --body-font: "Urbanist", sans-serif;
  --main-color: #35C9BC;
  --sub-color: #35E0B4;
  --grey-color: #6A6A6A;
  --text-main: #21AEA2;
  --smooth: all 0.3s ease-in-out;
}

a,
a:hover {
  text-decoration: none !important;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 25px;
  background-color: #fff;
  overflow-x: hidden;
}

.main-color {
  color: var(--main-color);
}

.sub-color {
  color: var(--sub-color);
}

.grey-color {
  color: var(--grey-color);
}

.text-main {
  color: var(--text-main);
}

strong {
  color: var(--sub-color);
}

.color-white {
  color: #fff !important;
}

.head-font {
  font-family: var(--head-font) !important;
}

.body-font {
  font-family: var(--body-font) !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-900 {
  font-weight: 900;
}

.section-padding-xl {
  padding-top: 150px;
  padding-bottom: 150px;
}

.section-padding-lg {
  padding-top: 110px;
  padding-bottom: 110px;
}

.section-padding-md {
  padding-top: 75px;
  padding-bottom: 75px;
}

.auto-container {
  position: static;
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}

.display-font {
  color: #000;
  font-family: var(--head-font);
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.5px;
}

.section-type {
  font-family: var(--body-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 27px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--head-font);
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 58px;
  letter-spacing: -1.1px;
}

.head-xs {
  font-family: var(--head-font);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -1px;
}

.head-sm {
  font-family: var(--head-font);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1.35;
}

.head-lg {
  font-family: var(--head-font);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.para-lg {
  font-family: var(--body-font);
  font-size: 18px;
  font-style: normal;
  line-height: 28px;
}

.para-m {
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px;
}

.para-sm {
  font-family: var(--body-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
}

.section-type-box {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  padding: 0 10px;
  align-items: center;
  gap: 8px;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.section-type-box.white-boxy {
  border: 1px solid rgba(255, 255, 255, 0.31) !important;
}

.primary-btn {
  min-height: 55px;
  position: relative;
  display: flex;
  padding: 10px 42px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  color: #FFF !important;
  font-family: var(--head-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  background-color: #21AEA2 !important;
  border: solid 1px #21AEA2;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.primary-btn .button-text {
  position: relative;
  z-index: 2;
}

.primary-btn .fill-container {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  padding-bottom: 100%;
  transform: translateY(-50%) rotate(180deg);
}

.primary-btn .fill-container::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--sub-color);
  border-radius: 50px;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateY(-100%);
}

.primary-btn:hover {
  border-color: var(--sub-color);
  transform: translateY(-4px);
}

.primary-btn:hover .fill-container {
  transform: translateY(-50%) rotate(0);
}

.primary-btn:hover .fill-container::after {
  transform: translateY(0);
}

.secondary-btn {
  height: 55px;
  display: flex;
  padding: 10px 42px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  background: #FFF;
  color: #000;
  font-family: var(--head-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: var(--smooth);
}
.secondary-btn:hover {
  color: #21AEA2;
  border: 2px dashed #21AEA2 !important;
  background-color: #eefffb;
}

.img-wrapper {
  position: relative;
  overflow: hidden;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
}

/* Fill from Left */
.fill-img-left img {
  clip-path: inset(0 100% 0 0);
}

/* Fill from Right */
.fill-img-right img {
  clip-path: inset(0 0 0 100%);
}

/* Fill from Top */
.fill-img-top img {
  clip-path: inset(0 0 100% 0);
}

/* Fill from Bottom */
.fill-img-bottom img {
  clip-path: inset(100% 0 0 0);
}

.home-banner {
  height: 1020px;
  background: linear-gradient(180deg, #E3FFFD 0%, #EFFFFB 100%);
  width: 100%;
  padding: 170px 0 45px 0;
  overflow: hidden;
  position: relative;
}
.home-banner::before {
  content: "";
  background-image: url("../images/banner-pattern.svg");
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: -180px;
  width: 100%;
  height: 100%;
}
.home-banner .banner-illus-left {
  position: absolute;
  left: -34px;
  bottom: 40px;
  opacity: 0.7;
}
.home-banner .banner-illus-right {
  position: absolute;
  right: -12px;
  top: -105px;
  opacity: 0.7;
}
.home-banner .dashboard-container {
  position: relative;
  perspective: 1200px;
  margin-top: 40px;
}
.home-banner .banner-dashboard {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.08);
  transform-style: preserve-3d;
  transform-origin: center bottom;
  will-change: transform;
}

.about-illus {
  position: absolute;
  top: -20px;
}

.home-services-section {
  background-color: #F9F9F9;
}
.home-services-section .service-card {
  background-color: #fff;
  padding: 24px 24px 0 24px;
  border-radius: 20px;
  height: 365px;
  overflow: hidden;
  position: relative;
  transition: var(--smooth);
}
.home-services-section .service-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1BADA0 0%, #FFF 100%);
  opacity: 0;
  transition: var(--smooth);
}
.home-services-section .service-card p {
  color: var(--grey-color);
  transition: var(--smooth);
  min-height: 54px;
}
.home-services-section .service-card .service-card-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  padding: 5px 8px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--main-color);
  color: #fff;
  transition: var(--smooth);
}
.home-services-section .service-card img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid #F5F5F5;
  box-shadow: -6px -6px 12px 0 rgba(0, 0, 0, 0.05);
}
.home-services-section .service-card:hover {
  transform: translateY(-10px);
  box-shadow: -6px -6px 12px 0 rgba(0, 0, 0, 0.05), 6px 6px 12px 0 rgba(0, 0, 0, 0.05);
  color: #fff;
}
.home-services-section .service-card:hover:before {
  opacity: 1;
}
.home-services-section .service-card:hover p {
  color: #fff;
}
.home-services-section .service-card:hover .service-card-icon {
  background-color: #fff;
  color: #000;
}

.benefit-box {
  transition: var(--smooth);
}
.benefit-box .benefit-icon {
  width: 80px;
  height: 80px;
  background-color: #EEFFFB;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  border-radius: 50%;
  position: relative;
}
.benefit-box .benefit-icon img {
  transform: translateX(31px);
  transition: var(--smooth);
}
.benefit-box:hover {
  color: var(--main-color);
  transform: translate(-10px, -10px);
}
.benefit-box:hover .benefit-icon img {
  transform: translateX(0px) scale(0.8);
}

.cta-banner {
  padding: 120px 60px;
  background-image: url("../images/cta-bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
  background-color: #21AEA2;
}
.cta-banner .cta-image {
  position: absolute;
  top: -218px;
  right: 0;
  height: auto;
  width: 371px;
}

.page-banner {
  padding: 120px 0 30px 0;
  background-color: #06435D;
  color: #fff;
  min-height: 40vh;
}

.breadcrumbs {
  color: #fff;
  font-family: var(--body-font);
  font-size: 14px;
  line-height: normal;
  text-transform: uppercase;
}
.breadcrumbs a {
  font-weight: 100;
  color: #fff;
}
.breadcrumbs span {
  font-weight: 700;
}

.pharma-count {
  position: absolute;
  bottom: 32px;
  left: 43px;
  color: #fff;
  border-radius: 15px;
  background-color: #1C6760;
  padding: 24px;
  color: #fff;
}
.pharma-count .pharma-stat {
  font-size: 40px;
  font-weight: 900;
  line-height: 28px;
}

.about-approach-section {
  padding: 0 30px;
}
.about-approach-section .approach-banner {
  background-color: #06435D;
  border-radius: 20px;
  overflow: hidden;
  background-image: url("../images/approach-pattern.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.about-process-box h3 {
  color: #06435D;
}
.about-process-box span {
  background-color: var(--main-color);
  color: #fff;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 30px;
  font-style: normal;
  font-weight: 900;
  line-height: 27px;
  flex-shrink: 0;
}

.about-process-wrapper {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 -9px 12.4px 0 rgba(0, 0, 0, 0.25);
  margin-top: -140px;
  z-index: 1;
  position: relative;
}

.about-process-benefits.engagement {
  border-left: 1px solid rgba(255, 255, 255, 0.2588235294);
  border-right: 1px solid rgba(255, 255, 255, 0.2588235294);
}

.about-process-benefits {
  display: flex;
  padding: 24px 16px;
  height: 100%;
  flex-direction: column;
  align-items: center;
  background-color: var(--main-color);
  transition: var(--smooth);
}
.about-process-benefits:hover {
  background-color: #06435D;
}

.rep-tracking-service {
  background-color: #F9F9F9;
}
.rep-tracking-service .rep-tracking-box {
  display: flex;
  padding: 74px 24px 24px 24px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  border-radius: 30px 0;
  background: #FFF;
  position: relative;
}
.rep-tracking-service .rep-tracking-box h3 {
  color: #06435D;
}
.rep-tracking-service .rep-tracking-box .rep-icon {
  height: 95px;
  width: 95px;
  border-radius: 50%;
  background: linear-gradient(270deg, #21AEA2 0%, #0E4843 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -47px;
}

.rep-process-part {
  display: flex;
  flex-direction: column;
  gap: 42px;
}
.rep-process-part .rep-process {
  padding: 24px 24px 24px 50px;
  border-radius: 20px;
  border: 1px solid #21AEA2;
  flex: 1 0 0;
  color: #21AEA2;
  font-family: var(--body-font);
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  line-height: 27px;
  position: relative;
}
.rep-process-part .rep-process .rep-process-no {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: #06435D;
  align-self: stretch;
  color: #FFF;
  text-align: center;
  font-family: var(--head-font);
  font-size: 44px;
  font-style: normal;
  font-weight: 900;
  line-height: 43px;
  position: absolute;
  top: -20px;
  left: -39px;
}

.contact-section {
  background-color: #F9F9F9;
}
.contact-section .form-box {
  background-color: #fff;
  padding: 50px;
  border-radius: 30px;
}
.contact-section .form-box input, .contact-section .form-box textarea {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6em;
  color: #06435D;
  background: transparent;
  border-width: 0 0 1px 0;
  border-color: #dfe1de;
  border-radius: 0;
  padding: 12px 0;
  outline: none;
  box-shadow: none;
}
.contact-section .contact-info-box {
  padding: 24px 0;
  border-bottom: 1px solid #dfe1de;
}
.contact-section .contact-info-box .contact-info p {
  font-family: var(--body-font);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6em;
  color: var(--main-color);
}
.contact-section .contact-info-box .contact-info div {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-section .contact-info-box .contact-info div img {
  width: auto;
  height: 34px;
}

.pricing-section {
  background: linear-gradient(180deg, rgba(166, 255, 232, 0.42) 0%, rgba(255, 255, 255, 0) 100%);
}
.pricing-section .pricing-card {
  padding: 32px 24px;
  border-radius: 20px;
  background-color: #fff;
  border: 1px solid #dfe1de;
  height: 100%;
}
.pricing-section .pricing-card h3 {
  color: #06435D;
  font-family: var(--head-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 27px;
}
.pricing-section .pricing-card .secondary-btn {
  border: 2px solid #bae9dd;
  border-radius: 11px;
}
.pricing-section .pricing-card .pricing-features {
  padding: 24px 0;
  border-top: 1px solid #dfe1de;
}
.pricing-section .pricing-card .pricing-features svg {
  color: var(--main-color);
}

.essential-card {
  border: 2px solid var(--sub-color) !important;
  position: relative;
}
.essential-card .recommended-badge {
  background-color: var(--sub-color);
  border-radius: 20px;
  padding: 5px 16px;
  position: absolute;
  top: -16px;
  left: 20px;
  color: #fff;
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 27px;
}

.dva-section {
  background-color: #fff;
}

.dva-alt-bg {
  background-color: #F9F9F9;
}

.dva-feature-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.dva-feature-no {
  font-family: var(--head-font);
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #21AEA2, #35E0B4);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}

.dva-check-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--main-color);
  flex-shrink: 0;
}

.dva-visual-card,
.dva-engagement-visual {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.dva-visual-img {
  width: 100%;
  display: block;
  border-radius: 20px;
  border: 1px solid #F0F0F0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: var(--smooth);
}

.dva-visual-card:hover .dva-visual-img,
.dva-engagement-visual:hover .dva-visual-img {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12), 0 12px 32px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.dva-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background-color: #fff;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
  z-index: 2;
  transition: var(--smooth);
}
.dva-float-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.dva-float-top-right {
  top: -16px;
  right: -10px;
}

.dva-float-top-left {
  top: -16px;
  left: -10px;
}

.dva-float-bottom-left {
  bottom: -16px;
  left: 20px;
}

.dva-float-bottom-right {
  bottom: -16px;
  right: 20px;
}

.dva-engagement-section {
  background: linear-gradient(180deg, #F9F9F9 0%, #fff 100%);
}

.dva-stat-box {
  padding: 20px 16px;
  border-radius: 16px;
  background-color: #fff;
  border: 1px solid #F0F0F0;
  transition: var(--smooth);
}
.dva-stat-box:hover {
  border-color: var(--main-color);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(33, 174, 162, 0.1);
}

.dva-stat-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-color: #EEFFFB;
  margin-bottom: 12px;
}

.perf-hero-section {
  background-color: #fff;
}

.perf-kpi-card {
  padding: 28px 24px;
  border-radius: 20px;
  background-color: #fff;
  border: 1px solid #F0F0F0;
  text-align: center;
  transition: var(--smooth);
  height: 100%;
}
.perf-kpi-card:hover {
  border-color: var(--main-color);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(33, 174, 162, 0.12);
}

.perf-kpi-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background-color: #EEFFFB;
  margin: 0 auto 16px auto;
}

.perf-kpi-number {
  font-family: var(--head-font);
  font-size: 40px;
  font-weight: 800;
  color: #06435D;
  line-height: 1.1;
  margin-bottom: 4px;
}

.perf-kpi-unit {
  font-size: 28px;
  font-weight: 700;
  color: var(--main-color);
}

.perf-step-card {
  padding: 32px 24px;
  border-radius: 20px;
  background-color: #fff;
  border: 1px solid #F0F0F0;
  text-align: center;
  position: relative;
  transition: var(--smooth);
  height: 100%;
}
.perf-step-card:hover {
  border-color: var(--main-color);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(33, 174, 162, 0.1);
}

.perf-step-no {
  font-family: var(--head-font);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #21AEA2, #35E0B4);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin: 0 auto 20px auto;
}

.perf-step-line {
  position: absolute;
  top: 50%;
  right: -28px;
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--main-color), transparent);
  transform: translateY(-50%);
  opacity: 0.3;
}

.perf-process-section {
  background-color: #fff;
}

.perf-final-cta {
  background: linear-gradient(180deg, #EEFFFB 0%, #F9F9F9 100%);
}

footer {
  padding: 150px 0 0 0;
  position: relative;
  background-color: #09564F;
}
footer a {
  transition: var(--smooth);
}
footer a:hover {
  color: var(--main-color);
}
footer .footer-head {
  font-family: var(--font);
  font-size: 24px;
  font-weight: 700;
}
footer .footer-logo img {
  height: 130px;
}
footer .social-icon {
  color: #35E0B4;
  transition: var(--smooth);
}
footer .social-icon:hover {
  color: #fff;
}/*# sourceMappingURL=pharma.css.map */