      /* ============================================================
       HERO SECTION – scoped under .hc-hero to prevent conflicts
    ============================================================ */

      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }

      body {
        font-family: "Inter", sans-serif;
        background: #f0f2ff;
      }

      /* ── Wrapper ── */
      .hc-hero {
        position: relative;
        width: 100%;
        min-height: 420px;
        background: linear-gradient(
          120deg,
          #eef0ff 0%,
          #f7eaf8 40%,
          #fdeee6 100%
        );
        overflow: hidden;
        display: flex;
        align-items: center;
      }

      /* ── Inner layout ── */
      .hc-hero__inner {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 48px 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
      }

      /* ── LEFT COLUMN ── */
      .hc-hero__left {
        flex: 0 0 48%;
        max-width: 480px;
      }

      .hc-hero__heading {
        font-size: clamp(20px, 3vw, 39px);
        line-height: 1.18;
        font-weight: 700;
        color: #1a1f5e;
        margin-bottom: 20px;
      }

      .hc-hero__heading span.hc-accent {
        color: #a54584;
        display: block;
      }

      /* ECG + Heart line */
      .hc-hero__ecg {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 36px;
      }

      .hc-hero__ecg svg {
        display: block;
      }

      /* CTA Button */
      .hc-hero__cta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #d58fbd;
        color: #fff;
        font-size: 15px;
        font-weight: 600;
        padding: 14px 28px;
        border-radius: 50px;
        text-decoration: none;
        cursor: pointer;
        border: none;
        transition: background 0.2s;
        margin-bottom: 20px;
      }

      .hc-hero__cta:hover {
        background: #a54584;
      }

      .hc-hero__cta-arrow {
        width: 30px;
        height: 30px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .hc-hero__cta-arrow svg {
        color: #a54584;
      }

      /* Sign-in line */
      .hc-hero__signin {
        font-size: 13px;
        color: #6b7280;
        margin-top: 4px;
      }

      .hc-hero__signin a {
        color: #a54584;
        font-weight: 600;
        text-decoration: none;
      }

      .hc-hero__signin a:hover {
        text-decoration: underline;
      }

      /* ── RIGHT COLUMN ── */
      .hc-hero__right {
        flex: 0 0 50%;
        position: relative;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        min-height: 340px;
      }

      /* Nurse image */
      .hc-hero__nurse {
        position: relative;
        z-index: 3;
        height: 360px;
        width: auto;
        object-fit: contain;
        /* Placeholder – swap src to your actual image */
        display: flex;
        align-items: flex-end;
      }

      /* Hexagon background shape behind nurse */
      .hc-hero__hex-bg {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 260px;
        height: 300px;
        border-radius: 32px;
        background: linear-gradient(160deg, #c7d2fe 0%, #e0e7ff 100%);
        clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
        z-index: 1;
      }

      /* ── Floating badge: Newest methodic ── */
      .hc-hero__badge-method {
        position: absolute;
        top: 30px;
        left: 10px;
        z-index: 10;
        background: #fff;
        border-radius: 50px;
        padding: 8px 16px 8px 8px;
        display: flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        font-size: 13px;
        font-weight: 600;
        color: #1a1f5e;
        white-space: nowrap;
      }

      .hc-hero__badge-method-icon {
        width: 36px;
        height: 36px;
        background: linear-gradient(135deg, #a54584, #8e7583);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      /* ── Stethoscope badge (top-right) ── */
      .hc-hero__badge-steth {
        position: absolute;
        top: 20px;
        right: 0;
        z-index: 10;
        width: 52px;
        height: 52px;
        background: #a54584;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
      }

      /* ── Heart badge (mid-left) ── */
      .hc-hero__badge-heart {
        position: absolute;
        bottom: 110px;
        left: -10px;
        z-index: 10;
        width: 52px;
        height: 52px;
        background: #d58fbd;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 16px rgba(239, 68, 68, 0.35);
      }

      /* ── Syringe badge (bottom-center) ── */
      .hc-hero__badge-syringe {
        position: absolute;
        bottom: 32px;
        left: 50%;
        transform: translateX(-130%);
        z-index: 10;
        width: 52px;
        height: 52px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
      }

      /* ── Channel card (bottom-right) ── */
      .hc-hero__channel {
        position: absolute;
        bottom: 40px;
        right: 0;
        z-index: 10;
        background: #fff;
        border-radius: 14px;
        padding: 14px 18px;
        box-shadow: 0 6px 28px rgba(0, 0, 0, 0.1);
        min-width: 160px;
      }

      .hc-hero__channel-title {
        font-size: 12px;
        font-weight: 700;
        color: #1a1f5e;
        margin-bottom: 10px;
      }

      .hc-hero__channel-item {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 8px;
        font-size: 12px;
        color: #374151;
        font-weight: 500;
      }

      .hc-hero__channel-item:last-child {
        margin-bottom: 0;
      }

      .hc-hero__channel-dot {
        width: 22px;
        height: 22px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }

      /* Dotted decorative lines */
      .hc-hero__dots-tr {
        position: absolute;
        top: 10px;
        right: 60px;
        z-index: 1;
        opacity: 0.5;
      }

      .hc-hero__dots-br {
        position: absolute;
        bottom: 20px;
        right: 30px;
        z-index: 1;
        opacity: 0.4;
      }

      /* ── Responsive ── */
      @media (max-width: 768px) {
        .hc-hero__inner {
          flex-direction: column;
          padding: 36px 20px;
          text-align: center;
        }

        .hc-hero__left {
          max-width: 100%;
          flex: unset;
        }
        .hc-hero__right {
          width: 100%;
          min-height: 260px;
          flex: unset;
        }
        .hc-hero__nurse {
          height: 260px;
        }
        .hc-hero__hex-bg {
          width: 200px;
          height: 230px;
        }

        .hc-hero__badge-method {
          top: 10px;
          left: 0;
        }
        .hc-hero__badge-steth {
          top: 0;
          right: 0;
        }
        .hc-hero__channel {
          right: 0;
          bottom: 10px;
        }
      }

      /* ===========================
   HOME SERVICES SECTION
=========================== */

      .home-services-section {
        min-height: 90vh;
        background: #ffffff;

        display: flex;
        align-items: center;

        padding: 40px 0;
      }

      .home-services-container {
        width: 90%;
        max-width: 1200px;
        margin: auto;
      }

      /* Header */

      .home-services-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 55px;
        gap: 20px;
      }

      .home-services-subtitle {
        display: block;
        font-size: 15px;
        font-weight: 600;
        color: #222;
        margin-bottom: 14px;
      }

      .home-services-title {
        font-size: 30px;
        line-height: 1.2;
        font-weight: 700;
        color: #1f2b5a;
        max-width: 750px;
      }

      .home-services-title span {
        color: #a54584;
         position: relative;
      }

      .home-services-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;

  width: 0;
  height: 3px;

  /* background: #d58fbd; */

  transition: width 1s ease;
}

.home-services-header.active .home-services-title span::after {
  width: 100%;
}
      /* Button */

      .home-services-btn {
        display: flex;
        align-items: center;
        gap: 10px;
        background: #a54584;
        color: #fff;
        text-decoration: none;
        padding: 10px 15px;
        border-radius: 50px;
        font-size: 15px;
        font-weight: 500;
        transition: 0.3s ease;
        white-space: nowrap;
      }

      .home-services-btn span {
        width: 20px;
        height: 20px;
        background: #fff;
        color: #d58fbd;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease;
      }

      .home-services-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(165, 69, 132, 0.3);
      }

      /* Cards */

      .home-services-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
      }
.home-services-card {
  position: relative;
  background: #f1e9f3;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.45s ease;
}

.home-services-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(165, 69, 132, 0.18);
}

      /* .home-services-card:hover {
        transform: translateY(-8px);
         box-shadow: 0 12px 35px rgb(240, 209, 215);
        border-bottom: 6px solid #a54584;
      } */

      /* .active-card {
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
        border-bottom: 6px solid #a54584;
      } */

      .home-services-image {
        height: 180px;
        overflow: hidden;
      }

      .home-services-image img {
        width: 100%;
        height: 100%;
          transition: transform 0.7s ease;
        object-fit: cover;
      }
      .home-services-card:hover .home-services-image img {
  transform: scale(1.08);
}

      /* Icon */

      .home-services-icon {
        width: 60px;
        height: 60px;
        background: #a54584;
        border-radius: 50%;
        border: 6px solid #fff;
        position: absolute;
        top: 135px;
        left: 25px;

        display: flex;
        align-items: center;
        justify-content: center;
         transition: all 0.4s ease;
      }

      .home-services-icon i {
        color: #fff;
        font-size: 30px;
      }

      .home-services-card:hover .home-services-icon {
  transform: rotate(12deg) scale(1.1);
}
      /* Content */

      .home-services-content {
        padding: 60px 25px 28px;
      }

      .home-services-content h3 {
        font-size: 24px;
        font-weight: 700;
        color: #1a1f5e;
        margin-bottom: 15px;
      }

      .home-services-content p {
        font-size: 15px;
        line-height: 1.7;
        color: #666;
        margin-bottom: 22px;
      }

      .home-services-content a {
        text-decoration: none;
        color: #1a1f5e;
        font-weight: 600;
        font-size: 15px;
      }

      /* Responsive */

      @media (max-width: 991px) {
        .home-services-header {
          flex-direction: column;
          align-items: flex-start;
        }

        .home-services-title {
          font-size: 40px;
        }

        .home-services-cards {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 576px) {
        .home-services-title {
          font-size: 32px;
        }

        .home-services-btn {
          width: 100%;
          justify-content: center;
        }
      }

      /* ===========================
   SCROLL REVEAL ANIMATION
=========================== */

.services-reveal {
  opacity: 0;
  transition: all 1s ease;
}

.services-left {
  transform: translateX(-100px);
}

.services-right {
  transform: translateX(100px);
}

.services-up {
  transform: translateY(80px);
}

.services-down {
  transform: translateY(-80px);
}

.services-reveal.active {
  opacity: 1;
  transform: translate(0, 0);
}
.home-services-card:nth-child(1) {
  transition-delay: 0.2s;
}

.home-services-card:nth-child(2) {
  transition-delay: 0.5s;
}

.home-services-card:nth-child(3) {
  transition-delay: 0.8s;
}


      /* ==================================
   HOME ABOUT SECTION
================================== */

      .home-about-section {
        min-height: 90vh;
        padding: 80px 0;
        background: #ffffff;
      }

      .home-about-container {
        width: 90%;
        max-width: 1200px;
        margin: auto;
      }

      /* Heading */

      .home-about-heading {
        text-align: center;
        margin-bottom: 60px;
      }

      .home-about-subtitle {
        display: block;
        font-size: 15px;
        font-weight: 600;
        color: #222;
        margin-bottom: 12px;
      }

      .home-about-title {
        font-size: 30px;
        line-height: 1.2;
        font-weight: 700;
        color: #1a1f5e;
      }

      .home-about-title span {
        color: #a54584;
      }

      /* Top Layout */

      .home-about-top {
        display: grid;
        grid-template-columns: 320px 1fr 280px;
        gap: 35px;
        align-items: start;
      }

      /* Left Image */

      .home-about-image-box img {
        width: 100%;
        height: 470px;
        object-fit: cover;
        border-radius: 12px;
      }

      /* Content */

      .home-about-content {
        padding-top: 15px;
      }

      .home-about-content p {
        font-size: 18px;
        color: #666;
        line-height: 1.7;
        margin-bottom: 25px;
      }

      .home-about-content ul {
        list-style: disc;
        padding-left: 20px;
      }

      .home-about-content li {
        margin-bottom: 4px;
        color: #222;
        font-size: 16px;
        font-weight: 400;
      }

      /* Hours Card */

.home-about-hours-card {
  background: rgba(213, 143, 189, 0.2);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.4);

  box-shadow:
    0 8px 32px rgba(213, 143, 189, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.4);

  border-radius: 24px;
  padding: 20px;
  color: #1a1f5e;
  
}

.home-about-hours-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(213, 143, 189, 0.4);
}

.home-about-hours-badge {
  background: rgba(255, 255, 255, 0.9);
  color: #1a1f5e;

  display: inline-block;
  padding: 8px 25px;
  border-radius: 40px;
  font-weight: 700;
  margin-bottom: 20px;

  transition: all 0.3s ease;
}

.home-about-hours-badge:hover {
  transform: scale(1.05);
}

.home-about-small-text {
  font-size: 18px;
  margin-bottom: 2px;
  line-height: 1.6;
  color: #1a1f5e;
}

.home-about-hours-card h4 {
  margin-bottom: 1px;
  font-size: 20px;
  color: #1a1f5e;
}

.home-about-hours-card h5 {
  margin-top: 20px;
  margin-bottom: 12px;
  color: #1a1f5e;
  font-size: 17px;
  font-weight: 700;
}

.home-about-hours-card p {
  line-height: 1.2;
  color: #1a1f5e;
}

/* Floating animation */
@keyframes floatCard {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}
      /* Bottom Image */

      .home-about-bottom-image {
        margin-top: -70px;
        margin-left: 355px;
      }

      .home-about-bottom-image img {
        width: 100%;
        max-width: 850px;
        height: 330px;
        object-fit: cover;
        border-radius: 24px;
        display: block;
      }

      /* Responsive */

      @media (max-width: 1100px) {
        .home-about-top {
          grid-template-columns: 1fr;
        }

        .home-about-bottom-image {
          margin-top: 40px;
          margin-left: 0;
        }

        .home-about-bottom-image img {
          max-width: 100%;
        }
      }

      @media (max-width: 768px) {
        .home-about-title {
          font-size: 34px;
        }

        .home-about-image-box img {
          height: 350px;
        }

        .home-about-content p,
        .home-about-content li {
          font-size: 16px;
        }
      }

      /* =========================
   SCROLL ANIMATION
========================= */

.reveal {
  opacity: 0;
  transition: all 1s ease;
}

.reveal-left {
  transform: translateX(-80px);
}

.reveal-right {
  transform: translateX(80px);
}

.reveal-up {
  transform: translateY(80px);
}

.reveal-down {
  transform: translateY(-80px);
}

.zoom {
  transform: scale(0.8);
}

.reveal.active {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
}

/* =========================
   IMAGE HOVER EFFECT
========================= */

.home-about-image-box,
.home-about-bottom-image {
  overflow: hidden;
  border-radius: 24px;
}

.home-about-image-box img,
.home-about-bottom-image img {
  transition: transform 0.6s ease;
}

.home-about-image-box:hover img,
.home-about-bottom-image:hover img {
  transform: scale(1.05);
}

/* =========================
   HEADING ANIMATION
========================= */

.home-about-title span {
  position: relative;
}

.home-about-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 3px;
  background: #a54584;
  transition: width 1s ease;
}

.home-about-heading.active::after {
  width: 100%;
}

      /* ===== HOW IT WORKS SECTION ===== */
      .hiw-section {
        background: linear-gradient(
          135deg,
          #eef2fb 0%,
          #f4f6fd 50%,
          #eceef8 100%
        );
        padding: 70px 40px 80px;
        text-align: center;
      }

      .hiw-section__label {
        font-size: 13px;
        font-weight: 600;
        color: #1a1f5e;
        letter-spacing: 0.04em;
        margin-bottom: 8px;
      }

      .hiw-section__heading {
        font-size: 36px;
        font-weight: 700;
        color: #1a1f5e;
        margin-bottom: 60px;
      }

      .hiw-section__heading span {
        color: #a54584
      }

      /* ===== STEPS GRID ===== */
      .hiw-steps {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 0;
        max-width: 900px;
        margin: 0 auto;
        /* background: #640e0e; */
        position: relative;
      }

      .hiw-step {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
      }

      /* Dashed connector arrows between steps */
      .hiw-step:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 90px;
        right: -30px;
        width: 60px;
        height: 2px;
        border-top: 2.5px dashed #728ec6;
        z-index: 1;
      }

      /* ===== ILLUSTRATION CARDS ===== */
      .hiw-step__illustration {
        position: relative;
        width: 200px;
        height: 180px;
        margin-bottom: 28px;
      }

      /* Step 1 — Book an Appointment */
      .hiw-illus-1__doc {
        position: absolute;
        top: 10px;
        left: 30px;
        width: 120px;
        height: 145px;
        background: #ffffff;
        border-radius: 14px;
        box-shadow: 0 6px 24px rgba(59, 127, 232, 0.12);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 20px 18px;
        gap: 10px;
      }

      .hiw-illus-1__line {
        height: 8px;
        background: #e8ecf5;
        border-radius: 4px;
      }

      .hiw-illus-1__line--short {
        width: 60%;
      }

      .hiw-illus-1__thumb {
        position: absolute;
        top: 12px;
        left: 12px;
        width: 38px;
        height: 38px;
        background: #e8f0fd;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .hiw-illus-1__thumb svg {
        width: 20px;
        height: 20px;
      }

      .hiw-illus-1__badge {
        position: absolute;
        bottom: 16px;
        left: 14px;
        background: #d58fbd;
        border-radius: 10px;
        padding: 6px 12px;
        display: flex;
        align-items: center;
        gap: 6px;
      }

      .hiw-illus-1__badge-box {
        width: 24px;
        height: 24px;
        background: rgba(255, 255, 255, 0.25);
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        color: #fff;
        font-weight: 700;
      }

      .hiw-illus-1__badge-line {
        width: 40px;
        height: 6px;
        background: rgba(255, 255, 255, 0.4);
        border-radius: 3px;
      }

      /* Step 2 — Get Evaluated */
      .hiw-illus-2__card {
        position: absolute;
        top: 5px;
        left: 25px;
        width: 125px;
        height: 155px;
        background: #d58fbd;
        border-radius: 14px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 18px 16px;
        gap: 10px;
      }

      .hiw-illus-2__row {
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .hiw-illus-2__check {
        width: 16px;
        height: 16px;
        border-radius: 3px;
        background: rgba(255, 255, 255, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }

      .hiw-illus-2__check svg {
        width: 10px;
        height: 10px;
      }

      .hiw-illus-2__line {
        height: 7px;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 4px;
        flex: 1;
      }

      .hiw-illus-2__add-btn {
        position: absolute;
        bottom: 14px;
        right: 8px;
        background: #fff;
        border-radius: 20px;
        padding: 5px 12px;
        font-size: 11px;
        color: #d58fbd;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 4px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      }

      .hiw-illus-2__doc-icon {
        position: absolute;
        top: 18px;
        right: 14px;
        width: 36px;
        height: 44px;
        background: #fff;
        border-radius: 6px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        padding: 8px 6px;
      }

      .hiw-illus-2__doc-line {
        width: 100%;
        height: 4px;
        background: #d0daf0;
        border-radius: 2px;
      }

      /* Step 3 — Receive Care */
      .hiw-illus-3__card {
        position: absolute;
        top: 10px;
        left: 20px;
        width: 140px;
        height: 150px;
        background: #fff;
        border-radius: 14px;
        box-shadow: 0 6px 24px rgba(59, 127, 232, 0.12);
        display: flex;
        align-items: flex-end;
        padding: 16px 16px 16px;
        gap: 6px;
      }

      .hiw-illus-3__bar {
        background: #d58fbd;
        border-radius: 3px 3px 0 0;
        flex: 1;
      }

      .hiw-illus-3__hands {
        position: absolute;
        top: 12px;
        left: 18px;
        width: 36px;
        height: 36px;
        background: #e8f0fd;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .hiw-illus-3__hands svg {
        width: 22px;
        height: 22px;
      }

      .hiw-illus-3__shield {
        position: absolute;
        top: 14px;
        right: 10px;
        width: 40px;
        height: 40px;
        background: #d58fbd;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .hiw-illus-3__shield svg {
        width: 22px;
        height: 22px;
      }

      /* ===== STEP TEXT ===== */
      .hiw-step__title {
        font-size: 17px;
        font-weight: 700;
         color: #1a1f5e;
          opacity: 0.75;
        margin-bottom: 10px;
      }

      .hiw-step__desc {
        font-size: 14px;
        color: #6b7280;
        line-height: 1.65;
        max-width: 200px;
      }

      /* ===== RESPONSIVE ===== */
      @media (max-width: 700px) {
        .hiw-steps {
          flex-direction: column;
          align-items: center;
          gap: 48px;
        }

        .hiw-step:not(:last-child)::after {
          display: none;
        }
      }

      .hiw-step {
  transition: all 0.4s ease;
}

.hiw-step:hover {
  transform: translateY(-12px);
}

.hiw-step__illustration {
  transition: all 0.4s ease;
}

.hiw-step:hover .hiw-step__illustration {
  transform: scale(1.05);
}
/* =======================
   SCROLL ANIMATIONS
======================= */

.hiw-reveal {
  opacity: 0;
  transition: all 1s ease;
}

.hiw-left {
  transform: translateX(-80px);
}

.hiw-right {
  transform: translateX(80px);
}

.hiw-up {
  transform: translateY(80px);
}

.hiw-down {
  transform: translateY(-80px);
}

.hiw-reveal.active {
  opacity: 1;
  transform: translate(0, 0);
}
.hiw-step:nth-child(1) {
  transition-delay: 0.2s;
}

.hiw-step:nth-child(2) {
  transition-delay: 0.5s;
}

.hiw-step:nth-child(3) {
  transition-delay: 0.8s;
}

      /* ===================================
   HOME AWARDS SECTION
=================================== */

      .home-awards-section {
        min-height: 45vh;
        background: #f4f9fc;
        display: flex;
        align-items: center;
        padding: 70px 0;
      }

      .home-awards-container {
        width: 90%;
        max-width: 1300px;
        margin: auto;

        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 60px;
        align-items: center;
      }

      /* Left Side */

      .home-awards-title {
        font-size: 30px;
        font-weight: 600;
        color: #a54584;
        line-height: 1.3;
        margin-bottom: 10px;
      }

      .home-awards-text {
        color: #6b7280;
        line-height: 1.5;
        font-size: 16px;
      }

      /* Right Side */

      .home-awards-cards {
        display: flex;
        justify-content: flex-end;
        gap: 28px;
      }

      /* Card */

      .home-awards-card {
        width: 250px;
        height: 240px;

        background: #fff;
        border: 1.5px solid #c6d7ea;
        border-radius: 14px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        transition: 0.3s ease;
      }

      .home-awards-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      }

      .home-awards-icon {
        width: 70px;
        height: 70px;

        border: 2px dashed #cfd8e3;
        border-radius: 50%;

        display: flex;
        align-items: center;
        justify-content: center;

        margin-bottom: 18px;
      }

      .home-awards-icon i {
        font-size: 30px;
        color: #a54584;
      }

      .home-awards-card h3 {
        font-size: 18px;
        font-weight: 700;
        color: #1f2b5a;
        margin-bottom: 10px;
      }

      .home-awards-card p {
        font-size: 13px;
        color: #8a8a8a;
        margin-bottom: 15px;
        text-align: center;
      }

      .home-awards-card a {
        text-decoration: none;
        color: #a54584;
        font-weight: 600;
        font-size: 14px;
      }

      /* Responsive */

      @media (max-width: 1100px) {
        .home-awards-container {
          grid-template-columns: 1fr;
          text-align: center;
        }

        .home-awards-cards {
          justify-content: center;
          flex-wrap: wrap;
        }
      }

      @media (max-width: 768px) {
        .home-awards-title {
          font-size: 36px;
        }

        .home-awards-card {
          width: 100%;
          max-width: 320px;
        }
      }

      /* ==============================
   HOME FAQ SECTION
============================== */

      .home-faq-section {
        min-height: 100vh;
        display: flex;
        align-items: center;
        background: #fff;
        padding: 80px 0;
        margin-bottom: -10px;
      }

      .home-faq-container {
        width: 90%;
        max-width: 1300px;
        margin: auto;
      }

      /* Heading */

      .home-faq-heading {
        text-align: center;
        margin-bottom: 70px;
      }

      .home-faq-subtitle {
        display: block;
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 12px;
        color: #111;
      }

      .home-faq-title {
        font-size: 30px;
        font-weight: 700;
        color: #111;
      }

      .home-faq-title span {
        color: #a54584;
      }

      /* Layout */

      .home-faq-content {
        display: grid;
        grid-template-columns: 350px 1fr;
        gap: 70px;
        align-items: center;
      }

      /* Image */

      .home-faq-image-wrapper {
        position: relative;
        width: 100%;
      }

      .home-faq-frame {
        position: absolute;
        left: 0;
        bottom: 0;

        width: 250px;
        height: 230px;

        border-left: 16px solid #a54584;
        border-bottom: 16px solid #a54584;
      }

      .home-faq-image-wrapper img {
        width: 280px;
        position: relative;
        z-index: 2;
        display: block;
        margin-left: 20px;
      }

      /* FAQ */

      .home-faq-accordion {
        width: 100%;
      }

      .home-faq-item {
        border: 1px solid #e5e5e5;
        margin-bottom: 12px;
        background: #fff;
      }

      .home-faq-question {
        width: 100%;
        background: none;
        border: none;
        cursor: pointer;

        display: flex;
        justify-content: space-between;
        align-items: center;

        padding: 18px 20px;

        font-size: 16px;
        font-weight: 600;
        color: #444;

        text-align: left;
      }

      .home-faq-question span {
        font-size: 22px;
        font-weight: 700;
      }

      /* Answer */

      .home-faq-answer {
        max-height: 0;
        overflow: hidden;

        transition: max-height 0.35s ease;
      }

      .home-faq-answer p {
        padding: 0 20px 20px;
        color: #8a8a8a;
        line-height: 1.8;
      }

      .home-faq-answer.show {
        max-height: 200px;
      }

      /* Active */

      .home-faq-item.active {
        background: #fafafa;
      }

      /* Responsive */

      @media (max-width: 992px) {
        .home-faq-content {
          grid-template-columns: 1fr;
        }

        .home-faq-image-wrapper {
          text-align: center;
        }

        .home-faq-frame {
          left: 50%;
          transform: translateX(-50%);
        }

        .home-faq-image-wrapper img {
          margin: auto;
        }
      }

      @media (max-width: 768px) {
        .home-faq-title {
          font-size: 34px;
        }

        .home-faq-content {
          gap: 40px;
        }
      }