/* =========================================
   GLOBAL
========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Geist";
  src: url("../fonts/Geist-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("../fonts/Geist-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("../fonts/Geist-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("../fonts/Geist-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html,
body {
  font-family: "Geist", sans-serif;
}
img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}
/* =========================================
   COMMON HEADER
========================================= */

.site-header {
  position: absolute;
  top: 28px;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================================
   LOGO
========================================= */

.site-logo {
  flex-shrink: 0;
}

.site-logo a {
  display: inline-flex;
  align-items: center;
}

/*.site-logo img {*/
/*    width: 100px;*/
/*    height: auto;*/
/*    display: block;*/
/*}*/

/* =========================================
   NAVIGATION
========================================= */

.main-navigation {
  display: flex;
  align-items: center;
  gap: 3px;

  background: #ffffff;

  padding: 5px 10px;

  border-radius: 9px;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.main-navigation a {
  display: flex;
  align-items: center;

  padding: 8px 13px;

  border-radius: 6px;

  color: #111111;

  font-size: 14px;
  font-weight: 400;

  white-space: nowrap;

  transition: all 0.2s ease;
}

.main-navigation a:hover {
  background: #823cff;
  color: #ffffff;
}

.main-navigation a.active {
  background: #823cff;
  color: #ffffff;
}

/* =========================================
   MOBILE MENU BUTTON
========================================= */

.mobile-menu-btn {
  display: none;

  width: 42px;
  height: 42px;

  padding: 8px;

  border: 0;
  background: #ffffff;

  border-radius: 8px;

  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);

  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 5px;

  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;

  width: 21px;
  height: 2px;

  background: #111111;

  border-radius: 2px;
}

/* =========================================
   MOBILE OFFCANVAS
========================================= */

.mobile-offcanvas {
  width: 300px !important;

  border: 0;

  background: #ffffff;

  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
}

/* HEADER */

.mobile-offcanvas .offcanvas-header {
  min-height: 60px;

  padding: 12px 18px;

  border-bottom: 1px solid #eeeeee;
}

.mobile-menu-title {
  font-size: 18px;

  font-weight: 600;

  color: #111111;
}

.mobile-close {
  width: 32px;
  height: 32px;

  border: 0;

  background: transparent;

  font-size: 25px;

  color: #222222;

  line-height: 1;

  cursor: pointer;
}

/* =========================================
   MOBILE NAVIGATION
========================================= */

.mobile-offcanvas .offcanvas-body {
  padding: 15px 12px;
}

.mobile-navigation {
  display: flex;

  flex-direction: column;

  gap: 5px;
}

.mobile-navigation a {
  display: flex;

  align-items: center;

  gap: 12px;

  padding: 11px 14px;

  border-radius: 6px;

  color: #111111;

  font-size: 14px;

  text-decoration: none;

  transition: all 0.2s ease;
}

.mobile-navigation a:hover,
.mobile-navigation a.active {
  background: #eadbff;

  color: #111111;
}

.mobile-nav-icon {
  width: 20px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  font-size: 17px;

  color: #111111;
}

.offcanvas-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* =========================================
   MOBILE BREAKPOINT
========================================= */

@media (max-width: 767px) {
  .site-header {
    top: 15px;
  }

  .header-inner {
    width: 100%;
  }

  /* Hide desktop navigation */
  .main-navigation {
    display: none !important;
  }

  /* Show hamburger */
  .mobile-menu-btn {
    display: flex;
  }

  .site-logo img {
    width: 125px;
    height: auto;
  }
}

.healthcare-cta {
  position: relative;

  width: 100%;

  display: flex;
  align-items: center;
  background: url(../new-th-img/cta-banner.webp) center center / cover no-repeat;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
  margin-bottom: 45px;
}

.healthcare-cta-content {
  position: relative;

  z-index: 2;

  text-align: center;

  padding: 40px 15px;
}

.healthcare-cta h2 {
  margin: 0 0 7px;

  font-size: 28px;
  line-height: 1.15;

  font-weight: 600;

  color: #111;
}

.healthcare-cta p {
  margin: 0 0 20px;

  font-size: 16px;
  line-height: 1.4;

  color: #222;
}

.healthcare-cta-buttons {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 15px;
}

.cta-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;
  padding: 11px 20px;

  border-radius: 5px;

  font-size: 14px;
  font-weight: 500;

  text-decoration: none;

  transition: all 0.25s ease;
}

.cta-btn-primary {
  background: #fff;
  color: #7546e8;
  border: 1px solid #fff;
}

.cta-btn-secondary {
  background: transparent;
  color: #222;

  border: 1px solid rgba(117, 70, 232, 0.35);
}

.cta-btn-primary:hover {
  color: #7546e8;
  transform: translateY(-1px);
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

/* =========================================
   HEADER ACTIONS
========================================= */

.header-actions {
  margin-left: auto;
  gap: 10px;
}

/* =========================================
   SEARCH BUTTON
========================================= */

.search-menu-btn {
  width: 38px;
  height: 38px;

  border: 0;
  border-radius: 8px;

  background: #823cff;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  padding: 0;

  transition: all 0.2s ease;
}

.search-menu-btn:hover {
  background: #6d2ee0;
}

/* CSS SEARCH ICON - NO LIBRARY REQUIRED */

.search-icon {
  width: 14px;
  height: 14px;

  border: 2px solid #ffffff;
  border-radius: 50%;

  position: relative;

  display: block;
}

.search-icon::after {
  content: "";

  position: absolute;

  width: 7px;
  height: 2px;

  background: #ffffff;

  right: -6px;
  bottom: -3px;

  transform: rotate(45deg);

  border-radius: 2px;
}

/* =========================================
   MOBILE HAMBURGER
========================================= */

.mobile-menu-btn {
  width: 38px;
  height: 38px;

  border: 0;
  background: #ffffff;

  display: none;

  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 4px;

  padding: 0;

  cursor: pointer;
}

.mobile-menu-btn span {
  width: 20px;
  height: 2px;

  background: #111111;

  display: block;

  border-radius: 2px;
}

@media (max-width: 767px) {
  .site-header {
    top: 15px;
  }

  .header-inner {
    padding-left: 15px;
    padding-right: 15px;
  }

  .site-logo img {
    width: 125px;
    height: auto;
  }

  /* Hide desktop navigation */
  .main-navigation {
    display: none !important;
  }

  /* Show hamburger */
  .mobile-menu-btn {
    display: flex;
  }

  .header-actions {
    gap: 8px;
  }

  .search-menu-btn {
    width: 36px;
    height: 36px;
  }
}

/* =========================================
   SEARCH POPUP OVERLAY
========================================= */

.search-popup-overlay {
  display: none;

  position: fixed;

  inset: 0;

  width: 100%;
  height: 100%;

  background: rgba(15, 10, 25, 0.62);

  z-index: 99999;

  align-items: center;
  justify-content: center;

  padding: 20px;
}

/* Open */

.search-popup-overlay.active {
  display: flex;
}

/* =========================================
   POPUP
========================================= */

.search-popup {
  position: relative;

  width: 100%;

  max-width: 850px;

  overflow: hidden;

  background: #ffffff;

  border-radius: 18px;

  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

/* =========================================
   POPUP HEADER
========================================= */

.search-popup-header {
  min-height: 90px;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 12px 30px;

  background: linear-gradient(135deg, #f8f4ff 0%, #eee4ff 100%);

  border-bottom: 1px solid #eee5ff;
}

.search-popup-logo {
  display: inline-flex;

  align-items: center;

  justify-content: center;
}

.search-popup-logo img {
  display: block;

  width: 150px;

  height: auto;
}

/* =========================================
   CLOSE BUTTON
========================================= */

.search-popup-close {
  position: absolute;

  top: 15px;

  right: 18px;

  width: 34px;

  height: 34px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 0;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.85);

  color: #222;

  font-size: 25px;

  line-height: 1;

  cursor: pointer;

  z-index: 5;
}

.search-popup-close:hover {
  background: #823cff;

  color: #ffffff;
}

/* =========================================
   CONTENT
========================================= */

.search-popup-content {
  padding: 55px 70px 45px;

  text-align: center;

  background: radial-gradient(
      circle at 5% 90%,
      rgba(130, 60, 255, 0.1),
      transparent 35%
    ),
    radial-gradient(
      circle at 95% 10%,
      rgba(190, 150, 255, 0.13),
      transparent 35%
    ),
    linear-gradient(135deg, #ffffff 0%, #fbf8ff 50%, #f4ecff 100%);
}

/* Heading */

.search-popup-content h2 {
  margin: 0 0 5px;

  color: #111111;

  font-size: 32px;

  font-weight: 700;

  line-height: 1.25;
}

.search-popup-content p {
  margin: 0 auto 30px;

  font-size: 16px;

  line-height: 1.6;
}

/* =========================================
   SEARCH INPUT
========================================= */

.search-popup-form {
  width: 100%;

  max-width: 700px;

  margin: 0 auto;
}

.search-popup-input {
  position: relative;

  width: 100%;

  height: 68px;

  background: #ffffff;

  border: 1px solid #e3d9f4;

  border-radius: 9px;

  box-shadow: 0 5px 18px rgba(80, 40, 130, 0.08);
}

.search-popup-input input {
  width: 100%;

  height: 100%;

  padding: 0 65px 0 20px;

  border: 0;

  outline: none;

  background: transparent;

  color: #222222;

  font-size: 14px;
}

.search-popup-input input::placeholder {
  color: #aaa;
}

/* Search button */

.search-popup-input button {
  position: absolute;

  right: 12px;

  top: 50%;

  transform: translateY(-50%);

  width: 36px;

  height: 36px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 0;

  border-radius: 6px;

  background: #823cff;

  color: #ffffff;

  cursor: pointer;

  transition: 0.2s ease;
}

.search-popup-input button:hover {
  background: #6d28d9;

  transform: translateY(-50%) scale(1.04);
}

.search-popup-input button span {
  font-size: 19px;

  line-height: 1;
}

/* =========================================
   SUGGESTIONS
========================================= */

.search-popup-suggestions {
  margin-top: 13px;

  text-align: left;
}

.suggestion-label {
  display: block;

  margin-bottom: 9px;

  font-size: 14px;
}

.suggestion-list {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;
}

.suggestion-list button {
  padding: 8px 13px;

  border: 1px solid #e8def7;

  border-radius: 5px;

  background: #ffffff;

  font-size: 14px;

  cursor: pointer;

  transition: 0.2s ease;
}

.suggestion-list button:hover {
  border-color: #823cff;

  background: #823cff;

  color: #ffffff;
}

/* =========================================
   FOOTER
========================================= */

.search-popup-footer {
  padding: 15px 25px;

  text-align: center;

  background: #ffffff;

  border-top: 1px solid #eeeeee;
}

.search-popup-footer span {
  font-size: 14px;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
  .search-popup-overlay {
    padding: 12px;
  }

  .search-popup {
    max-height: 90vh;

    overflow-y: auto;

    border-radius: 14px;
  }

  .search-popup-header {
    min-height: 75px;

    padding: 8px 20px;
  }

  .search-popup-logo img {
    width: 125px;
  }

  .search-popup-content {
    padding: 35px 20px 30px;
  }

  .search-popup-content h2 {
    font-size: 24px;
  }

  .search-popup-content p {
    font-size: 12px;

    margin-bottom: 22px;
  }

  .search-popup-input {
    height: 58px;
  }

  .search-popup-input input {
    font-size: 13px;
  }

  .suggestion-list button {
    font-size: 10px;

    padding: 7px 9px;
  }
}
/* =========================================
   TOWARDS HEALTHCARE FOOTER
========================================= */

.th-footer {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: url(../new-th-img/footer-bg.webp) center center / cover no-repeat;

  color: #111;
  padding: 30px 0 15px;
}

/* =========================================
   LOGO
========================================= */

.th-footer-logo {
  display: inline-block;

  margin-bottom: 20px;
}

.th-footer-logo img {
  width: 160px;

  height: auto;

  display: block;
}

/* =========================================
   HEADINGS
========================================= */

.th-footer h4 {
  margin: 0 0 16px;

  font-size: 18px;

  font-weight: 500;

  line-height: 1.3;
}

.th-footer-main h4 {
  margin-bottom: 10px;
}

/* =========================================
   REGISTERED OFFICE
========================================= */

.th-office {
  display: flex;

  align-items: flex-start;
}

.th-office-icon {
  flex: 0 0 28px;

  font-size: 20px;

  padding-top: 2px;
}

.th-office-content {
  max-width: 430px;
}

.th-office-content strong {
  display: block;

  margin-bottom: 10px;

  font-size: 16px;

  font-weight: 500;
}

.th-office-content p {
  margin: 0 0 10px;

  font-size: 14px;

  line-height: 1.45;
}

/* =========================================
   FOOTER COLUMNS
========================================= */

.th-footer-column {
  padding-top: 2px;
}

.th-footer-column h4 {
  margin-bottom: 10px;
}

.th-footer-column a {
  display: block;

  width: fit-content;

  margin-bottom: 10px;

  color: black;

  font-size: 14px;

  line-height: 1.45;

  text-decoration: none;

  transition: 0.2s ease;
}

.th-footer-column a:hover {
  color: #5e0eeb;
}

/* =========================================
   CLIENT SUPPORT
========================================= */

.th-phone-list {
  display: flex;

  flex-direction: column;

  gap: 9px;

  margin-bottom: 15px;
}

.th-phone-list span {
  font-size: 14px;

  line-height: 1.35;
}

/* =========================================
   EMAIL
========================================= */

.th-email {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 15px;
}

.th-email i {
  font-size: 20px;
  margin-top: -5px;
}

.th-email a {
  font-size: 14px;

  text-decoration: none;
}

.th-email a:hover {
  color: #5d11e0;
}

/* =========================================
   PARTNER
========================================= */

.th-partner-title {
  margin-bottom: 10px !important;
}

.th-partner-logo {
  display: block;

  width: 160px;

  height: auto;
}

/* =========================================
   GOOGLE BADGE
========================================= */

.th-google-badge {
  margin-top: 35px;

  margin-left: 0;
}

.th-google-badge img {
  width: 340px;

  max-width: 100%;

  height: auto;

  display: block;
}

/* =========================================
   BOTTOM
========================================= */

.th-footer-bottom {
  display: flex;

  align-items: center;

  justify-content: space-between;

  /*margin-top: 45px;*/

  padding-top: 15px;

  border-top: 1px solid rgba(255, 255, 255, 0.65);
}

.th-copyright {
  font-size: 14px;

  line-height: 1.4;
}

/* =========================================
   SOCIAL
========================================= */

.th-footer-social {
  display: flex;

  align-items: center;

  gap: 16px;
}

.th-footer-social a {
  width: 25px;

  height: 25px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #ffffff;

  color: #282064;

  border-radius: 2px;

  text-decoration: none;

  font-size: 15px;
}

.th-footer-social a:hover {
  background: #823cff;

  color: #ffffff;
}

/* =========================================
   DESKTOP COLUMN ALIGNMENT
========================================= */

@media (min-width: 992px) {
  .th-footer .col-lg-4 {
    padding-right: 35px;
  }

  .th-footer .col-lg-3 {
    padding-left: 20px;
  }

  .th-footer .col-lg-2 {
    padding-left: 40px;
  }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
  .th-footer {
    padding: 35px 0 20px;
  }

  .th-footer h4 {
    font-size: 18px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  .th-footer-logo img {
    width: 175px;
  }

  .th-footer-column {
    margin-bottom: 25px;
  }

  .th-footer-bottom {
    flex-direction: column;

    align-items: flex-start;

    gap: 18px;

    margin-top: 15px;
  }
}
