@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
/* ===============================
   CSS Reset + Normalization
=============================== */
:root {
    --color-primary: #1b1b5b;
    --color-secondary: #dd9624;
    --font-heading: "Noto Sans", sans-serif;
    --font-body: "Noto Sans", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
}
@media(max-width:992px)
{
body {
    font-size: 15px;
    line-height: 27px;
}
}
html {
    overflow-x: hidden;
}


.swiper-container {
    overflow: hidden;
}

.swiper img {
    width: 100%;
}


a {
    color: #000;
    text-decoration: none;
    display: inline-block;
}

img {
    max-width: 100%;
}

ul {
    padding: 0px;
    margin: 0px;
}

li {
    list-style: none;
}

button {
    border: none;
    background-color: transparent;
    cursor: pointer;
}
svg{
    width: 30px;
    height: 30px;
}
/* ===== END CSS Reset + Normalization ===== */


/* ===============================
   Sticky Header
=============================== */

#site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

#site-header.is-hidden {
  transform: translateY(-100%);
}

#site-header.is-visible {
  transform: translateY(0);
}
/* ===== END Sticky Header ===== */


/* ===============================
   Header Items
=============================== */

.nav-menu
{
    display: flex;
    justify-content: space-between;
    /* gap: 38px; */
}
.nav-menu li a
{
    padding: 28px 0;
}
.nav-menu li a:hover
{
  color: var(--color-primary);
}
.main-logo
{
    display: flex;
}
.main-logo img
{
    width: 400px;
}

@media (max-width: 992px) {
.main-logo img {
    width: 100%;
    margin: 7px 0;
}
.menu-toggle svg
{
    width: 20px;
    height: 20px;
}
    .hz69-menu-v2-container {
        position: fixed;
        inset: 0;
        z-index: 999999;

        background-color: #ffffff;

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

        padding: 30px 20px;

        opacity: 0;
        visibility: hidden;
    }

    /* Active state */
    .hz69-menu-v2-container.active {
        opacity: 1;
        visibility: visible;
    }

    /* Close button */
    .hz69-menu-v2-container .close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .hz69-menu-v2-container .close-btn svg {
        width: 26px;
        height: 26px;
    }

    /* Menu list */
    .nav-menu {
        display: flex;
        flex-direction: column;
        gap: 14px;
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .nav-menu li a {
        display: block;
        width: 100%;
        padding: 12px 0;

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

        color: var(--color-primary);
        border-bottom: 1px solid #eaeaea;
    }

    .nav-menu li:last-child a {
        border-bottom: none;
    }
}

/* ===== END Header Items ===== */

/* ===============================
   Main Slider
=============================== */
/* Main slider */
.main-slider .swiper-pagination {
  text-align: right;
  right: 20px;
  left: auto;
  bottom: 20px;
}

.main-slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #fff;
  opacity: 0.6;
  border-radius: 50%;
  margin: 0 4px !important;
  transition: all 0.3s ease;
}

.main-slider .swiper-pagination-bullet-active {
  width: 22px;
  height: 8px;
  border-radius: 20px;
  opacity: 1;
}
/* Main slider */
/* ===== END Main Slider ===== */





/* ===============================
   Home Services Carousel
=============================== */
/* Wrapper */
.hz-showcase-carousel-wrapper {
    position: relative;
}

/* Swiper */
.hz-showcase-carousel {
    padding: 6px 0;
}

.hz-showcase-carousel .swiper-slide {
    height: auto;
}

/* Pagination */
.hz-showcase-pagination {
    bottom: 0 !important;
}

.hz-showcase-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: #cfcfcf;
    opacity: 1;
}

.hz-showcase-pagination .swiper-pagination-bullet-active {
    width: 22px;
    border-radius: 20px;
    background-color: var(--color-primary);
}

/* Navigation wrapper */
.hz-showcase-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 9;
}

/* Navigation buttons */
.hz-showcase-prev,
.hz-showcase-next {
    pointer-events: all;
    width: 44px;
    height: 44px;
    /* background-color: #ffffff; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12); */
}

.hz-showcase-prev {
    margin-left: -33px;
}

.hz-showcase-next {
    margin-right: -32px;
}

.hz-showcase-prev svg,
.hz-showcase-next svg {
    width: 29px;
    height: 28px;
    fill: var(--color-secondary);
}
@media (max-width:768px)
{
  .hz-showcase-prev {
    margin-left: 0px;
}

.hz-showcase-next {
    margin-right: 0px;
}
}
/* ===== END Home Services Carousel ===== */

/* ===============================
   Home Service Carousel Card design
=============================== */
.hz-solution-card {
    background-color: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    padding: 28px 24px;
    height: 100%;

    transition: all 0.35s ease;
}

.hz-solution-icon {
    margin-bottom: 18px;
}

.hz-solution-icon svg {
    width: 42px;
    height: 42px;
    fill: var(--color-secondary);
    transition: transform 0.35s ease;
}

.hz-solution-title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.hz-solution-text {
    font-size: 16px;
    line-height: 26px;
    color: #333333;
    margin: 0;
}

/* Hover effects */
.hz-solution-card:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
}

.hz-solution-card:hover .hz-solution-icon svg {
    transform: scale(1.08);
}
@media (max-width:768px)
{
  .hz-solution-card {
    padding: 8px 14px;
    height: auto;
}
  .hz-solution-icon {
    margin-bottom: 0px;
}
  .hz-solution-title {
    margin-top: 0px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
}
  .hz-solution-card:hover {
    border-color: none;
    box-shadow: none;
    transform: none;
}
}
/* ===== END Home Service Carousel Card design ===== */


/* ===============================
   Buttons
=============================== */

.btn-s2 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 34px;
  background: var(--color-secondary);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 999px;
  transition: 
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
/* icon */
.btn-s2 .icon {
  width: 18px;
  height: 18px;
  fill: #fff;
  transition: transform 0.3s ease;
}

.btn-s2.white  .icon {
  fill: var(--color-primary);
}
/* hover animation */
.btn-s2:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

/* arrow slide */
.btn-s2:hover .icon {
  transform: translateX(6px);
}
.btn-s2:hover {
  box-shadow:
    0 10px 22px rgba(0,0,0,0.18),
    0 0 0 6px rgba(255,255,255,0.12);
}
/* ===== END Buttons ===== */


/* ===============================
   Titles
=============================== */
.title-s1
{
    font-size: 30px;
    font-weight: normal;
    line-height: 38px;
    color: var(--color-primary);
}
.title-s1 span {
  color: var(--color-secondary);
}
@media (max-width:768px)
{
.title-s1 {
    margin-bottom: 0;
}
}
/* ===== END Titles ===== */


/* ===============================
   Common Items
=============================== */
.text-justify
{
    text-align: justify;
}
.dark-section
{
    background-color: var(--color-primary);
    color: #FFF;
}
/* Wrapper */
.hz-split-section {
  width: 100%;
}

/* Desktop layout */
.hz-split-wrapper {
  display: flex;
  min-height: 520px;
}

/* Image column */
.hz-split-image {
  width: 50%;
}

.hz-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content column */
.hz-split-content {
  width: 50%;
  display: flex;
  align-items: center;
}

.hz-split-inner {
  max-width: 560px;
  padding: 0 60px;
}

/* Typography */



/* Mobile inversion */
@media (max-width: 767px) {
  .hz-split-wrapper {
    flex-direction: column;
  }

  /* Text first */
  .hz-split-content {
    order: 1;
    width: 100%;
  }

  /* Image second */
  .hz-split-image {
    order: 2;
    width: 100%;
    height: 50vh;
  }

  .hz-split-inner {
    padding: 30px 20px;
  }

  .hz-split-inner h2 {
    font-size: 28px;
    line-height: 38px;
  }
}
.dotted-bg
{
    background-image: url(../images/dotted-bg.webp);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}
/* ===== END Common Items ===== */


/* ===============================
   Partners Logo Scrolling
=============================== */

.logo-scroll {
  width: 100%;
  overflow: hidden;
  padding: 24px 0;
}

.logo-scroll-track {
  display: flex;
  align-items: center;
  gap: 24px; /* 👈 gap between logos */
  will-change: transform;
}

.logo-item {
  flex: 0 0 16%;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Mobile */
@media (max-width: 767px) {
  .logo-item {
    flex: 0 0 50%;
  }
}

/* ===== END Partners Logo Scrolling ===== */

/* ===============================
   Vision Mission Right Side boxes
=============================== */
.hz-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Box base */
.hz-feature-box {
  padding: 28px 26px;
  border-radius: 14px;
  transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Dark boxes */
.hz-feature-box.is-primary {
  background: var(--color-primary);
  color: #fff;
}

/* Light boxes */
.hz-feature-box.is-light {
  background: #ffffff;
  color: #000;
}

/* Icon */
.hz-feature-icon {
  width: 42px;
  height: 42px;
  fill: var(--color-secondary);
  transition: transform 0.35s ease, fill 0.35s ease;
}

.is-primary .hz-feature-icon {
  fill: #ffffff;
}

/* Title */
.hz-feature-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Text */
.hz-feature-box p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Hover animation */
.hz-feature-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255,255,255,0.12),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hz-feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.hz-feature-box:hover::after {
  opacity: 1;
}

.hz-feature-box:hover .hz-feature-icon {
  transform: translateY(-4px) scale(1.05);
}

/* Mobile – STILL 2×2 */
@media (max-width: 767px) {
  .hz-feature-grid {
    gap: 16px;
  }

  .hz-feature-box {
    padding: 22px 20px;
  }

  .hz-feature-box h3 {
    font-size: 18px;
  }

  .hz-feature-box p {
    font-size: 14px;
  }
}

/* ===== END Vision Mission Right Side boxes ===== */

/* ===============================
   Footer
=============================== */
.hz-footer {
  position: relative;
  background-image: url('../images/footer-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 80px 0 30px;
  overflow: hidden;
}

.hz-footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 27, 91, 0.92);
}

.hz-footer-inner {
  position: relative;
  z-index: 1;
}

.footer-logo {
  max-width: 410px;
}

.hz-footer-col h5 {
  font-size: 20px;
  margin-bottom: 18px;
  font-weight: 400;
}

.hz-footer-col p {
}

.hz-footer-links {
  padding: 0;
  margin: 0;
}

.hz-footer-links li {
  margin-bottom: 8px;
}

.hz-footer a {
  color: #fff;
  position: relative;
  transition: color 0.3s ease;
}

.hz-footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--color-secondary);
  transition: width 0.3s ease;
}

.hz-footer a:hover {
  color: var(--color-secondary);
}

.hz-footer a:hover::after {
  width: 100%;
}

.hz-footer-contact {
  display: flex;
  gap: 10px;
  font-size: 15px;
  line-height: 24px;
}

.hz-footer-contact .icon {
  width: 18px;
  height: 18px;
  fill: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 3px;
}

.hz-footer-social {
  display: flex;
  gap: 20px;
}

.hz-footer-social .icon {
  width: 26px;
  height: 26px;
  fill: #fff;
  transition: transform 0.3s ease, fill 0.3s ease;
}

.hz-footer-social a:hover .icon {
  fill: var(--color-secondary);
  transform: translateY(-4px) scale(1.05);
}

.hz-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 14px;
  opacity: 0.85;
}

.hz-footer-credit img {
  height: 18px;
  margin-left: 6px;
}

@media (max-width:768px)
{

.footer-logo {
  max-width: 80%;
}
}
/* ===== END Footer ===== */

/* ===============================
   Innerpage Header
=============================== */
.innerpage-header {
  padding: 136px 0 60px;
  text-align: center;
  /* background-image: url(../images/header-bg2.png); */ /* adjust if needed */
  background-size: cover;
  background-position: center center;
  background-repeat: repeat;
  background-color: #fff9f1;
}

.innerpage-header h2 {
  margin-bottom: 0;
  font-size: 33px;
  font-weight: 300;
  margin-top: 0;
  font-family: var(--font-heading);
  color: var(--color-secondary);
}

/* breadcrumb */
.innerpage-header .breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
}

/* breadcrumb items */
.innerpage-header .breadcrumb li {
  font-size: 14px;
  color: #000000;
  position: relative;
}

/* links */
.innerpage-header .breadcrumb a {
  text-decoration: none;
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.innerpage-header .breadcrumb a:hover {
  color: #000;
}

/* triangle separator */
.innerpage-header .breadcrumb li + li::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 12px;
  border-left: 6px solid var(--color-secondary);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
/* ===== END Innerpage Header ===== */


/* ===============================
   Healthcare Solutions
=============================== */

.hz-healthcare-solutions {
  padding: 90px 0;
}

.hz-section-head {
  max-width: 780px;
  margin: 0 auto 70px;
  text-align: center;
}

.hz-section-head h1 {
  font-size: 38px;
  font-weight: 300;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.hz-section-head p {
  font-size: 16px;
  line-height: 28px;
  color: #555;
}

.hz-solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.hz-solution-card {
  background: #ffffff;
  padding: 36px 34px;
  border-radius: 16px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hz-solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hz-solution-icon {
  width: 64px;
  height: 64px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.hz-solution-icon .icon {
  width: 34px;
  height: 34px;
  fill: var(--color-secondary);
}

.hz-solution-card h2 {
  font-size: 24px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.hz-solution-card p {
  font-size: 16px;
  line-height: 30px;
  color: #444;
  margin: 0;
}

@media (max-width: 991px) {
  .hz-solutions-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {

  .hz-section-head h1 {
    font-size: 30px;
  }

  .hz-solution-card {
    padding: 30px 26px;
  }

  .hz-solution-card h2 {
    font-size: 22px;
  }
}

/* ===== END Healthcare Solutions ===== */

/* ===============================
   Partners Page
=============================== */

.hz-partners-page {
  padding: 90px 0;
  background: #ffffff;
}

.hz-partners-head {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
}

.hz-partners-head h1 {
  font-size: 35px;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.hz-partners-head p {
  font-size: 16px;
  line-height: 28px;
  color: #555;
}

.hz-partners-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  align-items: center;
}

.hz-partner-logo {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hz-partner-logo img {
  width: 100%;
  /* max-width: 160px; */
  height: auto;
  object-fit: contain;
  /* filter: grayscale(100%); */
  /* opacity: 0.85; */
  transition: filter 0.3s ease, opacity 0.3s ease;
  border-radius: 10px;
}

.hz-partner-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.hz-partner-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

@media (max-width: 991px) {
  .hz-partners-logos {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575px) {


  .hz-partners-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .hz-partner-logo {
    padding: 18px;
  }
}

/* ===== END Partners Page ===== */


/* ===============================
   FAQ Page
=============================== */

.hz-faq-page {
  padding: 90px 0;
  background: #ffffff;
}

.hz-faq-head {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
}

.hz-faq-head h1 {
  font-size: 38px;
  font-weight: 300;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.hz-faq-head p {
  font-size: 16px;
  line-height: 28px;
  color: #555;
}

.hz-faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.hz-faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.hz-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  text-align: left;
  font-size: 17px;
  font-weight: 500;
  color: var(--color-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.hz-faq-icon {
  width: 14px;
  height: 14px;
  position: relative;
}

.hz-faq-icon::before,
.hz-faq-icon::after {
  content: "";
  position: absolute;
  background: var(--color-secondary);
  transition: transform 0.3s ease;
}

.hz-faq-icon::before {
  width: 14px;
  height: 2px;
  top: 6px;
  left: 0;
}

.hz-faq-icon::after {
  width: 2px;
  height: 14px;
  top: 0;
  left: 6px;
}

.hz-faq-question[aria-expanded="true"] .hz-faq-icon::after {
  transform: scaleY(0);
}

.hz-faq-answer {
  overflow: hidden;
  height: 0;
}

.hz-faq-answer p {
  padding: 0 0 22px;
  font-size: 15px;
  line-height: 26px;
  color: #555;
}

/* ===== END FAQ Page ===== */





/* ===============================
   Contact Page
=============================== */

.hz-contact-page {
  padding: 90px 0;
}

.hz-contact-head {
  max-width: 760px;
  margin: 0 auto 60px;
}

.hz-contact-head h1 {
  font-size: 38px;
  font-weight: 300;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.hz-contact-head p {
  font-size: 16px;
  line-height: 28px;
  color: #555;
}

.hz-contact-info {
  background: #ffffff;
  padding: 40px;
  border: 1px solid #e5e7eb;
}

.hz-contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 26px;
}

.hz-contact-item:last-child {
  margin-bottom: 0;
}

.hz-contact-item .icon {
  width: 28px;
  height: 28px;
  fill: var(--color-secondary);
  flex-shrink: 0;
}

.hz-contact-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.hz-contact-item p,
.hz-contact-item a {
  font-size: 15px;
  color: #555;
}

.hz-contact-item a:hover {
  color: var(--color-secondary);
}

.hz-contact-map {
  margin-top: 70px;
}

.hz-contact-map iframe {
  width: 100%;
  height: 420px;
  border: none;
}

/* ===== END Contact Page ===== */


/* ===============================
   Floating WhatsApp Button
=============================== */

.hz-whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 9999;
  /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25); */
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hz-whatsapp-float .icon {
  width: 26px;
  height: 26px;
  fill: #ffffff;
}

.hz-whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {
  .hz-whatsapp-float {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
  }

  .hz-whatsapp-float .icon {
    width: 24px;
    height: 24px;
  }
}

/* ===== END Floating WhatsApp Button ===== */


/* ===============================
   Our Major Clients Section
=============================== */

.hz-major-clients-section {
    background: #f4f7fb; /* light neutral separation */
    padding: 80px 0;
}

.hz-section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 50px;
}

.hz-clients-grid {
    row-gap: 30px;
}

.hz-client-item {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hz-client-item img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.hz-client-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

/* ===== END Our Major Clients Section ===== */




/* ===============================
   Why Choose Us Section
=============================== */

.hz-why-choose-section {
    background: #f6f8fc;
    padding: 100px 0;
}

.hz-why-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.hz-why-subtitle {
    font-size: 17px;
    color: #141414;
    max-width: 700px;
    margin: 0 auto 60px;
}

.hz-why-grid {
    row-gap: 30px;
}

.hz-why-card {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    transition: all 0.35s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.hz-why-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
}

.hz-why-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.hz-why-card p {
    font-size: 15px;
    color: #555;
    line-height: 24px;
    margin: 0;
}

.hz-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

/* ===== END Why Choose Us Section ===== */


/* ===============================
   Retail Pharmacies Highlight Box
=============================== */

.hz-client-highlight {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    margin-top: 30px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    transition: all 0.35s ease;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hz-client-highlight h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.hz-client-highlight p {
    font-size: 16px;
    color: #555;
    margin: 0;
    line-height: 26px;
}

.hz-client-highlight:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

/* ===== END Retail Pharmacies Highlight Box ===== */

/* ===============================
   Responsive
=============================== */


@media (max-width:768px)
{
    .hz-faq-head h1, .hz-contact-head h1, .hz-partners-head h1, .title-s1 {
    font-size: 28px;
    line-height: 34px;
        font-weight: 300;
    }
    .hz-faq-page, .hz-contact-page, .hz-partners-page, .hz-healthcare-solutions {
    padding: 40px 0;
}
    .hz-solution-text {
    font-size: 15px;
    line-height: 23px;
}
.hz-footer {
    padding: 40px 0 30px;
}
.hz-footer-col h5 {
    margin-top: 0px;
}
.innerpage-header {
    padding: 86px 0 30px;
}
}

/* ===== END Responsive ===== */
