@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
:root {
  --gradient: linear-gradient(
    247.88deg,
    #b1cde1cc 0%,
    rgba(208, 226, 238, 0.73) 33%,
    #d2e3f1 66%,
    #c7e1f0 100%
  );
  --gradient-2: linear-gradient(
    81.98deg,
    #6baed6 0%,
    #4f8ccf 50%,
    #306ba0 100%
  );
  --primary-color: #44769b;
  --secondary-color: #f5f5f5;
  --bg-color: #fff;
  --text-color: #333;
  --logo-bg: #f2f4ff;
  --primary-light: #6baed6;
  --primary-dark: #306ba0;
  --container: 1170px;
  --containerl: 1360px;
  --radius14: 14px;
  --border: rgb(206, 206, 234);
  --text-grey: rgb(41, 45, 52);
}

#chat-element {
  position: fixed !important;
  right: 60px;
  bottom: 30px;
  width: 0 !important;
  height: 0 !important;
  max-width: 500px;
  margin: 50px auto;
  border: 2px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.chatbox-frame {
  position: fixed !important;
  right: 60px;
  bottom: 30px;
  width: 0 !important;
  height: 0 !important;
  max-width: 500px;
  margin: 50px auto;
  border: 2px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

body {
  font-family: "Satoshi" !important;
  -webkit-font-smoothing: antialiased;
}

#mobileMenu {
  position: fixed;
  left: 0;
  top: 0;
  min-width: 300px;
  height: 100vh;
  background: white;
  z-index: 100;
}
#mobileMenu nav {
  height: 100%;
  padding: 1rem;
}
#mobileMenu nav .nav-link {
  padding: 2rem 0.3rem 0.8rem 0.3rem !important;
  border-bottom: 1px solid rgb(219, 219, 219);
  text-align: left;
  font-size: 1.5rem;
}

* {
  scroll-behavior: smooth;
}

.chat-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border: 1px solid rgb(189, 189, 189);
}
.chat-btn img {
  width: 80%;
  height: 80%;
  object-fit: cover;
}

.chatbox-frame {
  display: none;
}

.show-box #chat-element {
  width: 320px !important;
  height: 350px !important;
}

.show-box .chatbox-frame {
  display: block;
}

.container {
  max-width: var(--container) !important;
  padding: 0 2rem !important;
}
.container-l {
  max-width: var(--containerl) !important;
  padding: 0 2rem !important;
  margin-inline: auto;
}

p {
  font-size: 16px;
}

.digital {
  font-style: italic;
  position: relative;
  color: #306ba0;
  font-weight: 300;
  font-family: "Playfair Display", serif;
}
.digital::after {
  content: "";
  display: block;
  background-image: url(/assets/img/line.png);
  width: 100%;
  height: 18px;
  background-repeat: no-repeat;
  background-position: right;
  position: absolute;
  right: 20px;
  bottom: -15px;
}

.shadow-colored-2 {
  box-shadow: 2px 2px 100px #a4d7f5;
}

.nav-list li {
  background: var(--bg-color);
  border-radius: 14px;
}
.nav-list li a {
  text-decoration: none;
  color: var(--text-color);
  transition: background-color 0.3s ease;
  background: var(--bg-color);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 12px;
}
.nav-list li a:hover {
  background: #f2f2f2;
}
.nav-list li a:focus {
  outline: none;
}

.bg-gradient {
  background: var(--gradient-2) !important;
}

.header {
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  color: var(--text-color);
  position: sticky;
  top: 0px;
  z-index: 999;
}

.logo_container {
  display: flex;
  align-items: center;
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius14);
  background: var(--bg-color);
}

.logo {
  height: 35px;
}

nav {
  border: 1px solid var(--border);
  border-radius: var(--radius14) !important;
  overflow: hidden;
}
nav ul {
  gap: 1rem;
  align-items: center;
  border-radius: var(--radius14);
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
nav .nav-item {
  list-style: none;
  border-radius: 14px;
  background: var(--bg-color);
  border-radius: var(--radius14);
}
nav .nav-item a {
  text-decoration: none;
  color: rgb(41, 45, 52) !important;
  padding: 0.8rem 0.9rem;
  transition: background-color 0.3s ease;
  background: var(--bg-color);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}
nav .nav-item a:hover {
  background: #f2f2f2;
}
nav .nav-item a:focus {
  outline: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav .nav-item {
  list-style: none;
  border-radius: 14px;
  background: var(--bg-color);
  border-radius: var(--radius14);
  border: 1px solid var(--border);
  overflow: hidden;
}
.nav .nav-item a {
  text-decoration: none;
  color: rgb(41, 45, 52) !important;
  padding: 0.8rem 0.9rem;
  transition: background-color 0.3s ease;
  background: var(--bg-color);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}
.nav .nav-item a:hover {
  background: #f2f2f2;
}
.nav .nav-item a:focus {
  outline: none;
}

.one,
.two,
.three,
.four {
  position: absolute;
}

.one,
.three {
  top: 60px;
}

.two,
.four {
  bottom: 40px;
}

.one {
  left: 12%;
}

.four {
  left: 8%;
}

.two {
  right: 7%;
}

.three {
  right: 12%;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem !important;
}

.herobg {
  background: url("/assets/img/herobg.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.heroTitle {
  font-size: 4rem;
  max-width: 990px;
  margin-top: 1.4rem;
  font-weight: 400 !important;
  color: #333;
  text-align: center;
  line-height: 72px;
}
.light-bg {
  background-color: #fcfbff;
}

.heroTitleRounded {
  font-size: 1rem;
  margin: 0;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  border: 1px solid var(--primary-light);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-weight: 400;
  max-width: 810px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-top: 4rem;
}
.heroTitleRounded i {
  background: gold;
  background-clip: text;
}

.heading {
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
  text-align: center;
  color: #333;
  margin-bottom: 3rem;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item:not(:first-of-type) {
  border-top: 1px solid #dee2e6 !important;
}

.accordion-button:not(.collapsed) {
  color: #333 !important;
  background-color: white !important;
  box-shadow: none !important;
}

.accordion-button:focus {
  border-color: inherit !important;
  box-shadow: none !important;
}

.accordion-button {
  font-size: 1.25rem !important;
  color: black !important;
  font-weight: 500 !important;
}

.accordion-body {
  padding-top: 0 !important;
  font-size: 1.125rem !important;
}

.accordion-item .accordion-button {
  border-radius: 12px !important;
}

.accordion-button::after {
  content: "+" !important;
  font-size: 1.5rem;
  text-align: center;
  background-image: none !important;
  width: auto !important;
  height: auto !important;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(45deg) !important;
}

.accordion-item {
  border-radius: 12px !important;
}

.heroSubtitle {
  font-size: 1.38rem;
  max-width: 800px;
  margin-top: 1.4rem;
  color: #333333;
  font-weight: 300;
  line-height: 28px;
  text-align: center;
  word-spacing: 2px;
}

.heroButton {
  margin-top: 2rem;
  padding: 0.9rem;
  font-size: 1rem;
  background: var(--gradient-2);
  color: #fff;
  border: none;
  border-radius: var(--radius14);
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.heroButton:hover {
  background-size: cover;
  background-position-x: center;
  gap: 1rem;
}

/* Shimmer effect for prominent CTAs */
.shimmer-button {
  position: relative;
  overflow: hidden;
}
.shimmer-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  height: 100%;
  width: 50%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shimmer 2.2s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shimmer-button::after {
    animation: none;
    display: none;
  }
}

.heroFooter {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #888;
}

footer {
  padding: 4rem 0;
  color: #333;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
footer p {
  font: 400 0.9rem "inter";
}
footer ul li {
  margin-bottom: 0.5rem !important;
  list-style: none;
}
footer ul .nav-item {
  color: #484848;
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.3s;
  cursor: pointer;
}

.borderBg {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-color: white;
}

.main-img {
  border: 1px solid #95c1db;
  border-radius: 12px;
  overflow: hidden;
}
.main-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.text-red {
  color: #ff4c4c;
}

.text-green {
  color: #067647;
}

.box-red {
  color: #ff4c4c;
  background: #fff1f1;
}

.box-white {
  color: #4d4d4d;
  background: #fcfbff;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  height: 40px;
}
.box-white p {
  font-size: 14px;
  margin: 0 0 0 10px;
}
.box-white img {
  height: 20px;
  width: 20px;
}
.box-white + button {
  margin-top: 0.8rem;
}

.box-green {
  color: #067647;
  background: #ecfdf3;
}

.radius {
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 35px 23px;
  background-color: white;
}
.radius h5 {
  font-size: 1.75rem;
  color: #306ba0;
  font-weight: 500;
}

.box-sm {
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  height: 60px;
}
.box-sm p {
  font-size: 14px;
  margin: 0 0 0 10px;
}
.box-sm img {
  height: 20px;
  width: 20px;
}

.box-opd {
  border: 1px solid #e5e7eb;
  border-radius: 13px;
  padding: 20px 17px 55px 17px;
  height: 250px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
.box-opd:hover {
  border: 1px solid #1d84e1;
  background: #f7f9ff;
}
.box-opd:hover img {
  filter: sepia(1) saturate(600%) brightness(0.8) hue-rotate(190deg);
}
.box-opd h2 {
  font-size: 36px;
  color: #333333;
}
.box-opd p {
  font-size: 16px;
  color: #333333;
}
.box-opd .bg-box {
  position: absolute;
  right: 0;
  bottom: 0;
}

.p-custom {
  padding: 4rem 0;
}
.form-control:focus {
  border-color: var(--primary-light);
  box-shadow: none !important;
}
.patient-record h2 {
  font-size: 62px;
  text-align: center;
  font-weight: 500;
  max-width: 800px;
  margin-inline: auto;
  color: #333;
}

.contact {
  background: url("/assets/img/bopdbg.png") no-repeat;
  background-size: 100% 100%;
}

.marquee {
  margin: 0em 10px;
}
.marquee .marquee-box-one {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  margin: 3em 0 0 0;
}
.marquee .marquee-content-one {
  display: flex;
  gap: 15px;
  padding: 0 20px;
  animation: scroll-one 30s linear infinite;
}
.marquee .marquee-box-two {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  margin: 3em 0 6em 0;
}
.marquee .marquee-content-two {
  display: flex;
  gap: 15px;
  padding: 0px;
  animation: scroll-two 30s linear infinite;
}
.marquee .marquee-text {
  white-space: nowrap;
  text-transform: capitalize;
  font-size: 32px;
  flex-shrink: 0;
  margin: 0;
  color: #306ba0;
  font-weight: 500;
  display: flex;
  align-items: center;
  user-select: none;
  transition: all 0.3s ease-in-out;
}

.marquee-card {
  margin: 0em 10px;
}
.marquee-card .card {
  width: 475px;
  background-color: #fcfbff;
  border-color: #e5e7eb;
}
.marquee-card .marquee-box-one {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  margin: 3em 0 0 0;
}
.marquee-card .marquee-content-one {
  display: flex;
  gap: 0;
  padding: 0 10px;
  animation: scroll-one 50s linear infinite;
  transition: all 0.3s ease-in-out;
}
.marquee-card .marquee-box-two {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}
.marquee-card .marquee-content-two {
  display: flex;
  padding: 0 20px;
  animation: scroll-two 50s linear infinite;
  transition: all 0.3s ease-in-out;
}
.marquee-card .marquee-card {
  flex-shrink: 0;
  white-space: initial;
  margin: 0;
  padding: 15px;
  color: #306ba0;
  font-weight: 600;
  display: flex;
  align-items: center;
  user-select: none;
  gap: 30px;
  transition: all 0.3s ease-in-out;
}
.marquee-card .marquee-card .card {
  border-radius: 10px;
}

.marquee-card .marquee-content-one:hover,
.marquee-card .marquee-content-two:hover {
  animation-play-state: paused;
}

.success-bg {
  background: url("/assets/img/success.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.marquee-text:hover {
  scale: 1.05;
}
.mail {
  display: none;
}
.mailSent .mail {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.mailSent .modal-body form {
  display: none;
}

.loading {
  pointer-events: none;
  opacity: 0.7;
}

.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
  display: inline-block;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes scroll-one {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scroll-two {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@media screen and (max-width: 1025px) {
  p {
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) {
  .box-sm {
    height: auto;
    padding: 10px;
  }
  .box-opd br {
    display: none;
  }
  .box-opd h2 {
    font-size: 25px;
  }
  .heading {
    font-size: 32px;
    line-height: 43px;
    font-weight: 500;
  }
  .box-opd {
    padding: 20px;
    justify-content: flex-start;
  }
  .heroTitle {
    font-size: 2.5rem;
    line-height: 59px;
  }
  .main-img {
    min-height: auto !important;
  }
  .patient-record {
    padding-bottom: 8rem !important;
    overflow: hidden;
  }
  .patient-record h2 {
    font-size: 32px;
    text-align: start;
    padding: 1rem 0.5rem;
  }
  .patient-record .rounded-logo {
    width: 30%;
  }
  .patient-record img {
    width: 260% !important;
  }
  .patient-record .lottie {
    width: 30px !important;
    height: 30px !important;
  }
}
@media screen and (max-width: 768px) {
  .heroTitleRounded {
    font-size: 0.875rem;
  }
  br {
    display: none;
  }
  .hero {
    padding: 1rem 1.4rem !important;
  }
  .heroButton {
    font-size: 1rem;
  }
  .digital::after {
    height: 8px;

    right: -1px;
    bottom: -5px;
  }
  .heroSubtitle {
    font-size: 1.13rem;
  }
  .container,
  .container-l {
    padding: 0 1rem !important;
  }
  #solution .radius {
    border-radius: 8px;
    padding: 15px 5px;
    background-color: #fcfbff;
  }
  #solution h4 {
    font-size: 18px !important;
  }
  .heroButton {
    margin-top: 0.5rem;
  }
  .contact {
    padding-bottom: 14rem !important;
    background-size: cover;
  }
  .accordion {
    gap: 0;
  }
  .heroTitleRounded {
    margin-top: 8rem;
  }
  .accordion-item {
    border: none !important;
  }
  .accordion-button {
    font-size: 1rem !important;
  }
  .accordion-body {
    font-size: 0.88rem !important;
  }
  .accordion-item:not(:first-of-type) {
    border-top: 0 !important;
  }
  .heroTitle {
    font-size: 2.25rem;
    line-height: 44px;
  }
  #chat-element {
    right: 20px;
  }
  .chat-btn {
    right: 20px;
    bottom: 20px;
  }
  .marquee-card .card {
    width: 275px;
    background-color: #fcfbff;
    border-color: #e5e7eb;
  }
  footer {
    padding: 2rem 0;
  }
}

/*# sourceMappingURL=style.css.map */
