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

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: 'Nunito Sans', system-ui, sans-serif;
      color: #334155;
      background: #fff;
      line-height: 1.7;
      overflow-x: hidden;
      font-size: 16px
    }

    a {
      text-decoration: none;
      color: inherit
    }

    img {
      max-width: 100%;
      display: block
    }

    /* ── URGENCY BAR ── */
    .urgency {
      background: #1e3a5f;
      color: #fff;
      text-align: center;
      padding: 9px 16px;
      font-size: .82rem;
      font-weight: 600;
      position: sticky;
      top: 0;
      z-index: 1001
    }

    .urgency strong {
      color: #fbbf24
    }

    /* ── HEADER ── */
    .hdr {
      position: sticky;
      top: 37px;
      left: 0;
      right: 0;
      z-index: 999;
      background: #fff;
      border-bottom: 2px solid #1a56a0;
      padding: 0 32px;
      height: 62px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 2px 20px rgba(26, 86, 160, .12);
    }

    .hdr-logo {
      display: flex;
      align-items: center;
      gap: 10px
    }

    .hdr-logo-icon {
      width: 36px;
      height: 36px;
      background: #1a56a0;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    .hdr-logo-text {
      font-family: 'Merriweather', Georgia, serif;
      font-size: 1.08rem;
      font-weight: 900;
      color: #1a56a0;
      line-height: 1.1
    }

    .hdr-logo-text span {
      color: #0d9488
    }

    .hdr-logo-sub {
      font-size: .6rem;
      color: #94a3b8;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase;
      margin-top: 1px
    }

    .hdr-nav {
      display: flex;
      align-items: center;
      gap: 18px
    }

    .hdr-nav a {
      font-size: .81rem;
      font-weight: 700;
      color: #475569;
      transition: color .2s;
      white-space: nowrap
    }

    .hdr-nav a:hover {
      color: #1a56a0
    }

    .hdr-actions {
      display: flex;
      align-items: center;
      gap: 10px
    }

    .hdr-phone {
      font-size: .79rem;
      font-weight: 700;
      color: #1a56a0;
      white-space: nowrap
    }

    .btn-hdr {
      background: #1a56a0;
      color: #fff;
      font-weight: 800;
      font-size: .78rem;
      padding: 8px 16px;
      border-radius: 6px;
      white-space: nowrap;
      transition: all .2s;
      border: none;
      cursor: pointer
    }

    .btn-hdr:hover {
      background: #0f3366
    }

    /* ── HERO ── */
    .hero {
      padding-top: 0;
      background: linear-gradient(160deg, #f0f5fd 0%, #e8f1fb 55%, #f0f9f7 100%);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      right: -100px;
      top: -100px;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(26, 86, 160, .07), transparent 70%);
      pointer-events: none
    }

    .hero::after {
      content: '';
      position: absolute;
      left: -80px;
      bottom: 0;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(13, 148, 136, .06), transparent 70%);
      pointer-events: none
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1.08fr 1fr;
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      padding: 52px 32px 52px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: #dcfce7;
      border: 1px solid rgba(22, 163, 74, .25);
      color: #16a34a;
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 5px 13px;
      border-radius: 999px;
      margin-bottom: 14px
    }

    .badge-dot {
      width: 6px;
      height: 6px;
      background: #16a34a;
      border-radius: 50%;
      flex-shrink: 0;
      animation: pdot 1.8s infinite
    }

    @keyframes pdot {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: .4;
        transform: scale(1.6)
      }
    }

    .hero-h1 {
      font-family: 'Merriweather', Georgia, serif;
      color: #0f172a;
      font-size: clamp(1.7rem, 3.1vw, 2.8rem);
      font-weight: 900;
      line-height: 1.18;
      margin-bottom: 14px
    }

    .hero-h1 em {
      font-style: normal;
      color: #1a56a0
    }

    .hero-sub {
      color: #64748b;
      font-size: 1.05rem;
      margin-bottom: 22px;
      line-height: 1.75
    }

    .hero-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 24px
    }

    .hero-pill {
      display: flex;
      align-items: center;
      gap: 6px;
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 7px;
      padding: 7px 13px;
      font-size: .82rem;
      font-weight: 700;
      color: #334155;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .07)
    }

    .hero-cta-row {
      display: flex;
      gap: 11px;
      flex-wrap: wrap;
      align-items: center
    }

    /* ── BUTTONS ── */
    .btn-primary {
      background: #1a56a0;
      color: #fff;
      font-weight: 800;
      font-size: .93rem;
      padding: 14px 26px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      box-shadow: 0 4px 18px rgba(26, 86, 160, .35);
      transition: all .25s
    }

    .btn-primary:hover {
      background: #0f3366;
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(26, 86, 160, .45)
    }

    .btn-wa {
      background: #25D366;
      color: #fff;
      font-weight: 800;
      font-size: .88rem;
      padding: 13px 20px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: all .25s
    }

    .btn-wa:hover {
      background: #1fb558;
      transform: translateY(-2px)
    }

    .btn-white {
      background: #fff;
      color: #1a56a0;
      font-weight: 800;
      font-size: .95rem;
      padding: 15px 30px;
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      transition: all .25s;
      box-shadow: 0 4px 18px rgba(0, 0, 0, .15)
    }

    .btn-white:hover {
      background: #e8f0fb;
      transform: translateY(-2px)
    }

    .btn-wa-lg {
      background: #25D366;
      color: #fff;
      font-weight: 800;
      font-size: .95rem;
      padding: 15px 26px;
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      transition: all .25s
    }

    .btn-wa-lg:hover {
      background: #1fb558;
      transform: translateY(-2px)
    }

    /* ── FORM CARD ── */
    .form-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 20px 60px rgba(26, 86, 160, .15);
      padding: 30px 26px;
      border: 1.5px solid rgba(26, 86, 160, .1);
      position: relative;
      overflow: hidden
    }

    .form-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, #1a56a0, #0d9488)
    }

    .form-title {
      font-family: 'Merriweather', Georgia, serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 2px
    }

    .form-sub {
      font-size: .78rem;
      color: #94a3b8;
      margin-bottom: 14px
    }

    .fgrp {
      margin-bottom: 9px
    }

    .fgrp label {
      display: block;
      font-size: .79rem;
      font-weight: 700;
      color: #475569;
      margin-bottom: 4px;
      letter-spacing: .01em
    }

    .fgrp input,
    .fgrp select,
    .fgrp textarea {
      width: 100%;
      padding: 11px 13px;
      border: 1.5px solid #e2e8f0;
      border-radius: 8px;
      font-family: 'Nunito Sans', system-ui, sans-serif;
      font-size: .9rem;
      color: #0f172a;
      background: #fff;
      transition: border-color .2s;
      outline: none
    }

    .fgrp input:focus,
    .fgrp select:focus,
    .fgrp textarea:focus {
      border-color: #1a56a0;
      box-shadow: 0 0 0 3px rgba(26, 86, 160, .09)
    }

    .fgrp textarea {
      resize: vertical;
      min-height: 64px
    }

    .frow {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px
    }

    .btn-submit {
      width: 100%;
      background: linear-gradient(135deg, #e02020, #b91c1c);
      color: #fff;
      font-weight: 800;
      font-size: .93rem;
      padding: 13px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      letter-spacing: .02em;
      box-shadow: 0 4px 16px rgba(220, 38, 38, .3);
      transition: all .25s;
      margin-top: 3px
    }

    .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(220, 38, 38, .4)
    }

    .form-trust {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 4px;
      margin-top: 8px;
      font-size: .7rem;
      color: #94a3b8;
      font-weight: 600;
      text-align: center
    }

    /* ── TRUST STRIP ── */
    .trust-strip {
      background: #1a56a0;
      padding: 12px 20px;
      display: flex;
      justify-content: center;
      gap: 28px;
      flex-wrap: wrap;
      align-items: center
    }

    .ti-item {
      display: flex;
      align-items: center;
      gap: 6px;
      color: rgba(255, 255, 255, .92);
      font-size: .84rem;
      font-weight: 700
    }

    .ti-item .ico {
      color: #fbbf24
    }

    /* ── SECTION COMMONS ── */
    section {
      padding: 68px 24px
    }

    .inner {
      max-width: 1160px;
      margin: 0 auto
    }

    .sec-tag {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: #e8f0fb;
      color: #1a56a0;
      font-size: .71rem;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 999px;
      margin-bottom: 9px;
      border: 1px solid rgba(26, 86, 160, .18)
    }

    .sec-h2 {
      font-family: 'Merriweather', Georgia, serif;
      font-size: clamp(1.5rem, 2.4vw, 2.1rem);
      font-weight: 900;
      color: #0f172a;
      line-height: 1.22;
      margin-bottom: 9px
    }

    .sec-desc {
      color: #64748b;
      font-size: 1rem;
      max-width: 580px;
      line-height: 1.75
    }

    .sec-head {
      text-align: center;
      margin-bottom: 44px
    }

    .sec-head .sec-desc {
      margin: 0 auto
    }

    /* ── STATS BAR ── */
    .stats {
      background: #f7f9fc;
      border-top: 1px solid #f1f5f9;
      border-bottom: 1px solid #f1f5f9;
      padding: 0
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr)
    }

    .stat-box {
      text-align: center;
      padding: 30px 14px;
      border-right: 1px solid #e2e8f0
    }

    .stat-box:last-child {
      border-right: none
    }

    .stat-num {
      font-family: 'Merriweather', Georgia, serif;
      font-size: 2rem;
      font-weight: 900;
      color: #1a56a0;
      line-height: 1
    }

    .stat-num span {
      font-size: 1rem
    }

    .stat-lbl {
      font-size: .78rem;
      font-weight: 700;
      color: #64748b;
      letter-spacing: .05em;
      text-transform: uppercase;
      margin-top: 5px
    }

    .stat-sub {
      font-size: .73rem;
      color: #94a3b8;
      margin-top: 2px
    }

    /* ══════════════════════════════════════════════
   1 MILLION PATIENTS SECTION
══════════════════════════════════════════════ */
    .million {
      background: linear-gradient(160deg, #f0f5fd 0%, #e8f4fb 60%, #eef9f6 100%);
      padding: 72px 24px;
      border-top: 1px solid #e2e8f0;
      border-bottom: 1px solid #e2e8f0
    }

    .million .sec-tag {
      background: #e8f0fb;
      color: #1a56a0;
      border-color: rgba(26, 86, 160, .2)
    }

    .million .sec-h2 {
      color: #0f172a
    }

    .million .sec-desc {
      color: #64748b
    }

    .mil-hero-row {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 48px;
      align-items: center;
      margin-bottom: 40px;
      padding: 36px 40px;
      background: #fff;
      border: 1.5px solid #e2e8f0;
      border-radius: 16px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .07)
    }

    .mil-big-num {
      text-align: center;
      flex-shrink: 0
    }

    .mil-big {
      font-family: 'Merriweather', Georgia, serif;
      font-size: clamp(3.2rem, 6vw, 5.5rem);
      font-weight: 900;
      color: #1a56a0;
      line-height: 1;
      white-space: nowrap
    }

    .mil-big strong {
      color: #0d9488
    }

    .mil-sub-label {
      font-size: .79rem;
      color: #94a3b8;
      font-weight: 700;
      letter-spacing: .05em;
      text-transform: uppercase;
      margin-top: 5px;
      text-align: center
    }

    .mil-right h3 {
      font-family: 'Merriweather', Georgia, serif;
      font-size: clamp(1.3rem, 2vw, 1.7rem);
      font-weight: 900;
      color: #0f172a;
      margin-bottom: 10px;
      line-height: 1.3
    }

    .mil-right p {
      font-size: .93rem;
      color: #64748b;
      line-height: 1.72;
      margin-bottom: 16px
    }

    .mil-flags {
      display: flex;
      flex-wrap: wrap;
      gap: 7px
    }

    .mil-flag {
      display: flex;
      align-items: center;
      gap: 5px;
      background: #e8f0fb;
      border: 1px solid rgba(26, 86, 160, .18);
      border-radius: 7px;
      padding: 5px 11px;
      font-size: .76rem;
      font-weight: 700;
      color: #1a56a0
    }

    /* 6 reason cards */
    .mil-reasons {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px
    }

    .mil-card {
      background: #fff;
      border: 1.5px solid #e2e8f0;
      border-radius: 16px;
      padding: 22px 20px;
      transition: all .25s;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .07)
    }

    .mil-card:hover {
      border-color: #1a56a0;
      box-shadow: 0 12px 40px rgba(0, 0, 0, .13);
      transform: translateY(-3px)
    }

    .mil-card-icon {
      font-size: 1.9rem;
      margin-bottom: 10px
    }

    .mil-card-title {
      font-weight: 800;
      font-size: .97rem;
      color: #0f172a;
      margin-bottom: 7px
    }

    .mil-card-desc {
      font-size: .85rem;
      color: #64748b;
      line-height: 1.6
    }

    /* ── WHY INDIA ── */
    .why {
      background: #fff
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 52px;
      align-items: center
    }

    .why-img-block {
      position: relative
    }

    .why-img {
      width: 100%;
      height: 600px;
      border-radius: 16px;
      background: url('/lp/cancer-hospital-in-india/images/doctor-patient.jpg') center/cover no-repeat;
      box-shadow: 0 12px 40px rgba(0, 0, 0, .13)
    }

    .why-float {
      position: absolute;
      bottom: -14px;
      right: -14px;
      background: #fff;
      border-radius: 10px;
      padding: 15px 20px;
      box-shadow: 0 12px 40px rgba(0, 0, 0, .13);
      border-left: 4px solid #1a56a0;
      text-align: center;
      min-width: 140px
    }

    .why-float .big {
      font-family: 'Merriweather', Georgia, serif;
      font-size: 1.8rem;
      font-weight: 900;
      color: #1a56a0;
      line-height: 1
    }

    .why-float .lbl {
      font-size: .66rem;
      color: #94a3b8;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .06em;
      margin-top: 2px
    }

    .why-points {
      display: flex;
      flex-direction: column;
      gap: 12px
    }

    .why-point {
      display: flex;
      gap: 13px;
      align-items: flex-start;
      padding: 15px;
      border-radius: 10px;
      border: 1px solid #f1f5f9;
      background: #f7f9fc;
      transition: all .25s
    }

    .why-point:hover {
      border-color: #1a56a0;
      background: #f0f5fd;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .07)
    }

    .w-icon {
      width: 44px;
      height: 44px;
      border-radius: 11px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 19px;
      flex-shrink: 0
    }

    .w-icon.b {
      background: #e8f0fb
    }

    .w-icon.g {
      background: #dcfce7
    }

    .w-icon.t {
      background: #e6f7f5
    }

    .w-icon.a {
      background: #fef3c7
    }

    .why-point h4 {
      font-size: .97rem;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 3px
    }

    .why-point p {
      font-size: .86rem;
      color: #64748b;
      line-height: 1.6
    }

    /* ══════════════════════════════════════════════
   CANCERS & TREATMENTS
══════════════════════════════════════════════ */
    .cancers {
      background: #f7f9fc
    }

    .cancer-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px
    }

    .cancer-card {
      background: #fff;
      border-radius: 16px;
      padding: 20px 16px;
      border: 1.5px solid #f1f5f9;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .07);
      transition: all .28s;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .cancer-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #1a56a0, #0d9488);
      transform: scaleX(0);
      transition: .28s
    }

    .cancer-card:hover {
      border-color: #1a56a0;
      box-shadow: 0 12px 40px rgba(0, 0, 0, .13);
      transform: translateY(-4px)
    }

    .cancer-card:hover::after {
      transform: scaleX(1)
    }

    .cancer-icon {
      font-size: 1.9rem;
      margin-bottom: 8px
    }

    .cancer-name {
      font-family: 'Merriweather', Georgia, serif;
      font-weight: 700;
      font-size: .96rem;
      color: #0f172a;
      margin-bottom: 7px;
      line-height: 1.3
    }

    .cancer-txs {
      font-size: .8rem;
      color: #64748b;
      line-height: 1.6;
      margin-bottom: 10px;
      flex: 1
    }

    .cancer-txs strong {
      color: #334155
    }

    .cancer-rate {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: #dcfce7;
      color: #16a34a;
      font-size: .66rem;
      font-weight: 800;
      padding: 3px 9px;
      border-radius: 999px;
      margin-bottom: 10px
    }

    .cancer-cta {
      display: block;
      margin-top: auto;
      text-align: center;
      background: #e8f0fb;
      color: #1a56a0;
      font-size: .78rem;
      font-weight: 800;
      padding: 9px;
      border-radius: 6px;
      transition: all .2s;
      border: none;
      cursor: pointer;
      font-family: 'Nunito Sans', system-ui, sans-serif;
      letter-spacing: .02em
    }

    .cancer-cta:hover {
      background: #1a56a0;
      color: #fff
    }

    /* ── COST TABLE ── */
    .cost {
      background: linear-gradient(140deg, #0f2c5a 0%, #1a4080 100%);
      padding: 68px 24px
    }

    .cost .sec-tag {
      background: rgba(13, 148, 136, .2);
      color: #5eead4;
      border-color: rgba(13, 148, 136, .3)
    }

    .cost .sec-h2 {
      color: #fff
    }

    .cost .sec-desc {
      color: rgba(255, 255, 255, .65)
    }

    .cost-table-wrap {
      overflow-x: auto;
      border-radius: 16px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
      margin-bottom: 12px;
      -webkit-overflow-scrolling: touch
    }

    .cost-table {
      width: 100%;
      border-collapse: collapse;
      background: #fff;
      min-width: 580px
    }

    .cost-table th {
      background: #1a3060;
      color: #fff;
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .09em;
      text-transform: uppercase;
      padding: 12px 15px;
      text-align: left;
      white-space: nowrap
    }

    .cost-table th.th-india {
      background: #0d9488
    }

    .cost-table td {
      padding: 12px 15px;
      font-size: .85rem;
      border-bottom: 1px solid #f1f5f9;
      color: #334155;
      vertical-align: middle
    }

    .cost-table tr:last-child td {
      border-bottom: none
    }

    .cost-table tbody tr:hover td {
      background: #f0f5fd
    }

    .td-india {
      font-weight: 800;
      color: #0d9488 !important;
      font-size: .92rem !important
    }

    .save-pill {
      display: inline-block;
      background: #16a34a;
      color: #fff;
      font-size: .65rem;
      font-weight: 800;
      padding: 3px 8px;
      border-radius: 999px
    }

    .cost-note {
      color: rgba(255, 255, 255, .42);
      font-size: .76rem;
      text-align: center;
      margin-top: 9px
    }

    /* ══════════════════════════════════════════════
   HOSPITALS (full detail cards)
══════════════════════════════════════════════ */
    .hospitals {
      background: #f7f9fc;
      padding: 68px 24px
    }

    .hosp-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px
    }

    .hosp-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .07);
      border: 1px solid #f1f5f9;
      transition: all .28s;
      display: flex;
      flex-direction: column
    }

    .hosp-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, .16);
      border-color: rgba(26, 86, 160, .25)
    }

    /* Banner — tall with real image */
    .hosp-banner {
      height: 200px;
      display: flex;
      align-items: flex-end;
      justify-content: flex-start;
      padding: 0;
      position: relative;
      overflow: hidden;
      background-size: cover;
      background-position: center
    }

    .hosp-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0, 0, 0, .18) 0%, rgba(0, 0, 0, .7) 100%)
    }

    .hosp-banner-inner {
      position: relative;
      z-index: 2;
      padding: 16px 18px 46px;
      width: 100%
    }

    .hosp-banner-icon {
      font-size: 2.2rem;
      margin-bottom: 6px;
      filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .4))
    }

    .hosp-banner-name {
      font-family: 'Merriweather', Georgia, serif;
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
      line-height: 1.3
    }

    /* Accreditation bar */
    .hosp-accred {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 3;
      background: rgba(8, 18, 36, .72);
      backdrop-filter: blur(6px);
      display: flex;
      gap: 4px;
      padding: 6px 12px;
      flex-wrap: wrap
    }

    .hacc {
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .22);
      border-radius: 4px;
      color: #fff;
      font-size: .62rem;
      font-weight: 800;
      padding: 3px 7px;
      letter-spacing: .04em;
      white-space: nowrap
    }

    .hacc.gold {
      background: rgba(251, 191, 36, .2);
      border-color: rgba(251, 191, 36, .45);
      color: #fde68a
    }

    /* Body */
    .hosp-body {
      padding: 18px 18px 20px;
      flex: 1;
      display: flex;
      flex-direction: column
    }

    .hosp-rank {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: #fef3c7;
      color: #d97706;
      font-size: .68rem;
      font-weight: 800;
      padding: 4px 10px;
      border-radius: 999px;
      margin-bottom: 8px;
      width: fit-content
    }

    .hosp-name {
      font-family: 'Merriweather', Georgia, serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 4px;
      line-height: 1.3
    }

    .hosp-loc {
      font-size: .82rem;
      color: #94a3b8;
      font-weight: 600;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 4px
    }

    .hosp-desc {
      font-size: .84rem;
      color: #475569;
      line-height: 1.65;
      margin-bottom: 12px
    }

    /* Specialty tags */
    .hosp-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      margin-bottom: 12px
    }

    .hosp-tag {
      background: #e8f0fb;
      color: #1a56a0;
      font-size: .73rem;
      font-weight: 700;
      padding: 5px 10px;
      border-radius: 999px
    }

    /* 3-col stat row */
    .hosp-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
      padding: 12px 0 0;
      border-top: 1px solid #f1f5f9;
      margin-top: auto
    }

    .hosp-stat {
      text-align: center
    }

    .hosp-stat .hn {
      font-family: 'Merriweather', Georgia, serif;
      font-size: 1.1rem;
      font-weight: 900;
      color: #1a56a0;
      line-height: 1
    }

    .hosp-stat .hl {
      font-size: .64rem;
      color: #94a3b8;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .04em;
      margin-top: 3px
    }

    /* CTA */
    .hosp-cta-btn {
      display: block;
      margin-top: 14px;
      text-align: center;
      background: #1a56a0;
      color: #fff;
      font-size: .82rem;
      font-weight: 800;
      padding: 11px;
      border-radius: 8px;
      transition: all .2s;
      border: none;
      cursor: pointer;
      font-family: 'Nunito Sans', system-ui, sans-serif;
      letter-spacing: .02em
    }

    .hosp-cta-btn:hover {
      background: #0f3366
    }

    /* ── DOCTORS ── */
    .doctors {
      background: #fff
    }

    .doc-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px
    }

    .doc-card {
      background: #fff;
      border-radius: 16px;
      border: 1.5px solid #f1f5f9;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .07);
      transition: all .28s;
      text-align: center
    }

    .doc-card:hover {
      border-color: #1a56a0;
      box-shadow: 0 12px 40px rgba(0, 0, 0, .13);
      transform: translateY(-5px)
    }

    /* Doctor photo area — tall with real image */
    .doc-avatar {
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      background-size: cover;
      background-position: top center
    }

    .doc-avatar::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0, 0, 0, .05) 40%, rgba(0, 0, 0, .55) 100%)
    }

    .doc-init {
      width: 96px;
      height: 96px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Merriweather', Georgia, serif;
      font-size: 2rem;
      font-weight: 900;
      color: #fff;
      margin: 0 auto;
      box-shadow: 0 6px 20px rgba(0, 0, 0, .22);
      position: relative;
      z-index: 1;
      border: 3px solid rgba(255, 255, 255, .8)
    }

    .doc-verified {
      position: absolute;
      top: 12px;
      right: 12px;
      background: #16a34a;
      color: #fff;
      font-size: .63rem;
      font-weight: 800;
      padding: 4px 9px;
      border-radius: 999px;
      letter-spacing: .04em;
      z-index: 2
    }

    .doc-body {
      padding: 16px 16px 18px
    }

    .doc-name {
      font-family: 'Merriweather', Georgia, serif;
      font-size: 1rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 3px;
      line-height: 1.3
    }

    .doc-spec {
      font-size: .78rem;
      font-weight: 800;
      color: #1a56a0;
      margin-bottom: 3px;
      letter-spacing: .01em
    }

    .doc-hosp {
      font-size: .73rem;
      color: #94a3b8;
      margin-bottom: 9px;
      font-weight: 600;
      line-height: 1.4
    }

    .doc-exp {
      display: inline-block;
      background: #e8f0fb;
      color: #1a56a0;
      font-size: .72rem;
      font-weight: 800;
      padding: 4px 10px;
      border-radius: 6px;
      margin-bottom: 10px
    }

    .doc-train {
      font-size: .75rem;
      color: #475569;
      line-height: 1.6;
      margin-bottom: 9px;
      padding: 9px 10px;
      background: #f1f5f9;
      border-radius: 8px;
      text-align: left
    }

    .doc-langs {
      font-size: .72rem;
      color: #64748b;
      font-weight: 600;
      margin-bottom: 10px
    }

    .doc-btn {
      display: block;
      width: 100%;
      background: #e8f0fb;
      color: #1a56a0;
      font-weight: 800;
      font-size: .78rem;
      padding: 10px;
      border-radius: 7px;
      border: none;
      cursor: pointer;
      transition: all .2s;
      font-family: 'Nunito Sans', system-ui, sans-serif
    }

    .doc-btn:hover {
      background: #1a56a0;
      color: #fff
    }

    /* ── PROCESS ── */
    .process {
      background: #f0f5fd;
      padding: 68px 24px
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      position: relative
    }

    .process-steps::before {
      content: '';
      position: absolute;
      top: 34px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: linear-gradient(90deg, #1a56a0, #0d9488);
      z-index: 0
    }

    .step {
      text-align: center;
      position: relative;
      z-index: 1
    }

    .step-num {
      width: 68px;
      height: 68px;
      border-radius: 50%;
      background: #1a56a0;
      color: #fff;
      font-family: 'Merriweather', Georgia, serif;
      font-size: 1.2rem;
      font-weight: 900;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 11px;
      box-shadow: 0 4px 16px rgba(26, 86, 160, .35);
      border: 3px solid #fff
    }

    .step-title {
      font-weight: 800;
      font-size: .92rem;
      color: #0f172a;
      margin-bottom: 5px
    }

    .step-desc {
      font-size: .81rem;
      color: #64748b;
      line-height: 1.6
    }

    /* ── TESTIMONIALS ── */
    .testi {
      background: #fff
    }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px
    }

    .testi-card {
      background: #f7f9fc;
      border-radius: 16px;
      padding: 24px 20px;
      border: 1.5px solid #f1f5f9;
      transition: all .28s
    }

    .testi-card:hover {
      border-color: rgba(26, 86, 160, .2);
      box-shadow: 0 2px 8px rgba(0, 0, 0, .07)
    }

    .testi-stars {
      color: #f59e0b;
      font-size: .92rem;
      letter-spacing: 2px;
      margin-bottom: 10px
    }

    .testi-quote {
      font-size: 2.6rem;
      color: #e8f0fb;
      line-height: 1;
      font-family: Georgia, serif;
      font-weight: 900;
      margin-bottom: -5px
    }

    .testi-text {
      font-size: .9rem;
      color: #475569;
      line-height: 1.75;
      margin-bottom: 16px;
      font-style: italic
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 10px;
      padding-top: 12px;
      border-top: 1px solid #e2e8f0
    }

    .testi-av {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #1a56a0;
      color: #fff;
      font-weight: 800;
      font-size: .82rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Merriweather', Georgia, serif;
      flex-shrink: 0
    }

    .testi-name {
      font-weight: 800;
      font-size: .92rem;
      color: #0f172a
    }

    .testi-country {
      font-size: .7rem;
      color: #94a3b8;
      font-weight: 600;
      margin-top: 1px
    }

    .testi-type {
      font-size: .67rem;
      color: #0d9488;
      font-weight: 700;
      margin-top: 1px
    }

    /* ── INLINE FORM SECTION ── */
    .form-section {
      background: #f0f5fd;
      border-top: 1px solid rgba(26, 86, 160, .1);
      padding: 68px 24px
    }

    .form-section-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 52px;
      align-items: center
    }

    .fs-left h2 {
      font-family: 'Merriweather', Georgia, serif;
      font-size: clamp(1.4rem, 2.1vw, 1.9rem);
      font-weight: 900;
      color: #0f172a;
      margin-bottom: 10px;
      line-height: 1.25
    }

    .fs-left p {
      font-size: .9rem;
      color: #64748b;
      line-height: 1.72;
      margin-bottom: 18px
    }

    .fs-checks {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px
    }

    .fs-checks li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: .84rem;
      color: #475569;
      font-weight: 600
    }

    .fs-checks li::before {
      content: '✓';
      background: #16a34a;
      color: #fff;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .62rem;
      font-weight: 900;
      flex-shrink: 0;
      margin-top: 1px
    }

    /* ── FAQ ── */
    .faq {
      background: #f7f9fc
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px
    }

    .faq-item {
      background: #fff;
      border: 1.5px solid #f1f5f9;
      border-radius: 10px;
      overflow: hidden;
      transition: border-color .2s
    }

    .faq-item.open {
      border-color: #1a56a0
    }

    .faq-q {
      padding: 17px 18px;
      font-weight: 700;
      font-size: .93rem;
      color: #0f172a;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      transition: background .2s;
      user-select: none
    }

    .faq-q:hover {
      background: #f0f5fd
    }

    .faq-item.open .faq-q {
      background: #f0f5fd;
      color: #1a56a0
    }

    .faq-arr {
      width: 21px;
      height: 21px;
      border-radius: 50%;
      background: #e8f0fb;
      color: #1a56a0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .82rem;
      flex-shrink: 0;
      transition: transform .3s
    }

    .faq-item.open .faq-arr {
      transform: rotate(45deg);
      background: #1a56a0;
      color: #fff
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease, padding .3s ease;
      font-size: .88rem;
      color: #64748b;
      line-height: 1.7;
      padding: 0 18px
    }

    .faq-item.open .faq-a {
      max-height: 280px;
      padding: 0 18px 18px
    }

    /* ── FINAL CTA ── */
    .fcta {
      background: linear-gradient(135deg, #0f2c5a 0%, #1a56a0 55%, #0d7a6b 100%);
      padding: 68px 24px;
      text-align: center
    }

    .fcta h2 {
      font-family: 'Merriweather', Georgia, serif;
      color: #fff;
      font-size: clamp(1.55rem, 2.5vw, 2.2rem);
      font-weight: 900;
      margin-bottom: 11px;
      line-height: 1.22
    }

    .fcta p {
      color: rgba(255, 255, 255, .72);
      font-size: .95rem;
      max-width: 520px;
      margin: 0 auto 30px;
      line-height: 1.72
    }

    .fcta-btns {
      display: flex;
      gap: 13px;
      justify-content: center;
      flex-wrap: wrap
    }

    .fcta-note {
      color: rgba(255, 255, 255, .36);
      font-size: .72rem;
      margin-top: 20px
    }

    /* ── FOOTER ── */
    footer {
      background: #0a1f3d;
      color: rgba(255, 255, 255, .65);
      padding: 34px 24px 20px;
      text-align: center
    }

    .foot-logo {
      font-family: 'Merriweather', Georgia, serif;
      font-size: 1.1rem;
      font-weight: 900;
      color: #fff;
      margin-bottom: 7px
    }

    .foot-logo span {
      color: #5eead4
    }

    footer p {
      font-size: .78rem;
      margin-bottom: 4px;
      line-height: 1.6
    }

    footer a {
      color: rgba(255, 255, 255, .48);
      transition: color .2s
    }

    footer a:hover {
      color: #5eead4
    }

    .foot-disc {
      font-size: .67rem;
      color: rgba(255, 255, 255, .26);
      margin-top: 14px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6
    }

    /* ── FLOATING WA ── */
    .wa-fab {
      position: fixed;
      bottom: 22px;
      right: 22px;
      z-index: 9999;
      width: 54px;
      height: 54px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
      animation: fab-up 3s ease-in-out infinite
    }

    .wa-pulse {
      position: absolute;
      inset: -6px;
      border-radius: 50%;
      background: rgba(37, 211, 102, .28);
      animation: wa-p 2s infinite
    }

    @keyframes fab-up {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-7px)
      }
    }

    @keyframes wa-p {
      0% {
        transform: scale(1);
        opacity: .8
      }

      100% {
        transform: scale(1.5);
        opacity: 0
      }
    }

    /* ── FADE IN ── */
    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .6s ease, transform .6s ease
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0)
    }

    /* ══════════════════════════════════════════════
   RESPONSIVE — TABLET ≤1024px
══════════════════════════════════════════════ */
    @media(max-width:1024px) {
      .hdr {
        padding: 0 18px
      }

      .hdr-nav {
        display: none
      }

      .hdr-phone {
        display: none
      }

      .hero-inner {
        grid-template-columns: 1fr;
        padding: 36px 20px 40px;
        gap: 28px
      }

      .mil-hero-row {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px
      }

      .mil-big {
        font-size: 3.8rem
      }

      .mil-reasons {
        grid-template-columns: repeat(2, 1fr)
      }

      .why-grid {
        grid-template-columns: 1fr;
        gap: 32px
      }

      .why-float {
        right: 0
      }

      .cancer-grid {
        grid-template-columns: repeat(3, 1fr)
      }

      .hosp-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .doc-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .process-steps {
        grid-template-columns: repeat(3, 1fr)
      }

      .process-steps::before {
        display: none
      }

      .testi-grid {
        grid-template-columns: 1fr 1fr
      }

      .form-section-inner {
        grid-template-columns: 1fr;
        gap: 28px
      }
    }

    /* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE ≤768px
══════════════════════════════════════════════ */
    @media(max-width:768px) {
      .urgency {
        font-size: .74rem;
        padding: 8px 12px
      }

      .hdr {
        height: 54px;
        padding: 0 14px
      }

      .hdr-logo-text {
        font-size: .95rem
      }

      .btn-hdr {
        padding: 7px 12px;
        font-size: .74rem
      }

      .hero-inner {
        padding: 24px 14px 32px;
        gap: 22px
      }

      .hero-h1 {
        font-size: 1.6rem
      }

      .hero-sub {
        font-size: .88rem
      }

      .hero-pills {
        gap: 5px
      }

      .hero-pill {
        font-size: .71rem;
        padding: 5px 9px
      }

      .hero-cta-row {
        flex-direction: column;
        align-items: stretch
      }

      .btn-primary,
      .btn-wa {
        justify-content: center
      }

      .frow {
        grid-template-columns: 1fr
      }

      section {
        padding: 48px 14px
      }

      .cost {
        padding: 48px 14px
      }

      .hospitals {
        padding: 48px 14px
      }

      .process {
        padding: 48px 14px
      }

      .form-section {
        padding: 48px 14px
      }

      .stats-grid {
        grid-template-columns: repeat(3, 1fr)
      }

      .stat-box {
        padding: 22px 8px
      }

      .stat-num {
        font-size: 1.65rem
      }

      .mil-hero-row {
        padding: 18px 16px
      }

      .mil-big {
        font-size: 2.9rem
      }

      .mil-reasons {
        grid-template-columns: 1fr 1fr;
        gap: 10px
      }

      .mil-card {
        padding: 15px 13px
      }

      .mil-flags {
        gap: 5px
      }

      .mil-flag {
        font-size: .71rem;
        padding: 4px 9px
      }

      .cancer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px
      }

      .cancer-card {
        padding: 15px 13px
      }

      .hosp-grid {
        grid-template-columns: 1fr
      }

      .doc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px
      }

      .testi-grid {
        grid-template-columns: 1fr
      }

      .faq-grid {
        grid-template-columns: 1fr
      }

      .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px
      }

      .fcta-btns {
        flex-direction: column;
        align-items: stretch
      }

      .btn-white,
      .btn-wa-lg {
        justify-content: center
      }

      .trust-strip {
        gap: 12px;
        padding: 10px 14px
      }

      .ti-item {
        font-size: .72rem
      }

      .why-img {
        height: 320px
      }

      .why-float {
        right: 0;
        bottom: -8px;
        padding: 12px 16px
      }
    }

    /* ══════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE ≤420px
══════════════════════════════════════════════ */
    @media(max-width:420px) {
      .stats-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .stats-grid .stat-box:nth-child(odd) {
        border-right: 1px solid #e2e8f0
      }

      .stats-grid .stat-box:nth-child(even) {
        border-right: none
      }

      .stat-box {
        border-bottom: 1px solid #f1f5f9
      }

      .doc-grid {
        grid-template-columns: 1fr
      }

      .cancer-grid {
        grid-template-columns: 1fr 1fr
      }

      .mil-reasons {
        grid-template-columns: 1fr
      }

      .process-steps {
        grid-template-columns: 1fr
      }

      .hosp-stats {
        grid-template-columns: 1fr 1fr
      }

      .hero-h1 {
        font-size: 1.45rem
      }
    }

    /* ══════════════════════════════════════════════
   INFOGRAPHIC — INDIA VS WORLD COST VISUAL
══════════════════════════════════════════════ */
    .infographic {
      background: #fff;
      padding: 68px 24px
    }

    .infogrid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center
    }

    .info-visual {
      display: flex;
      flex-direction: column;
      gap: 18px
    }

    .info-bar-row {
      display: flex;
      flex-direction: column;
      gap: 6px
    }

    .info-bar-label {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: .82rem;
      font-weight: 700;
      color: #334155
    }

    .info-bar-label .country {
      display: flex;
      align-items: center;
      gap: 6px
    }

    .info-bar-label .amount {
      font-weight: 800;
      color: #0f172a;
      font-size: .85rem
    }

    .info-bar-track {
      height: 18px;
      background: #f1f5f9;
      border-radius: 999px;
      overflow: hidden
    }

    .info-bar-fill {
      height: 100%;
      border-radius: 999px;
      position: relative;
      min-width: 4%
    }

    .info-bar-fill.usa {
      background: linear-gradient(90deg, #ef4444, #dc2626);
      width: 100%
    }

    .info-bar-fill.uk {
      background: linear-gradient(90deg, #f97316, #ea580c);
      width: 72%
    }

    .info-bar-fill.sg {
      background: linear-gradient(90deg, #f59e0b, #d97706);
      width: 55%
    }

    .info-bar-fill.india {
      background: linear-gradient(90deg, #16a34a, #15803d);
      width: 12%
    }

    .info-bar-fill.india::after {
      content: '✓ INDIA';
      position: absolute;
      right: 8px;
      top: 50%;
      transform: translateY(-50%);
      font-size: .55rem;
      font-weight: 900;
      color: #fff;
      letter-spacing: .07em;
      white-space: nowrap
    }

    .info-saving-note {
      background: #dcfce7;
      border: 1.5px solid rgba(22, 163, 74, .25);
      border-radius: 10px;
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 4px
    }

    .info-saving-note .isk {
      font-size: 1.8rem
    }

    .info-saving-note p {
      font-size: .82rem;
      color: #334155;
      font-weight: 600;
      line-height: 1.5
    }

    .info-saving-note strong {
      color: #16a34a;
      font-size: .95rem
    }

    /* right side points */
    .info-points {
      display: flex;
      flex-direction: column;
      gap: 16px
    }

    .info-point {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 16px;
      border-radius: 10px;
      border: 1.5px solid #f1f5f9;
      background: #f7f9fc;
      transition: all .25s
    }

    .info-point:hover {
      border-color: #1a56a0;
      background: #f0f5fd;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .07)
    }

    .ip-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
      background: #e8f0fb
    }

    .ip-title {
      font-size: .92rem;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 3px
    }

    .ip-desc {
      font-size: .8rem;
      color: #64748b;
      line-height: 1.55
    }

    /* ══════════════════════════════════════════════
   TREATMENT JOURNEY VISUAL (HOW IT LOOKS)
══════════════════════════════════════════════ */
    .journey {
      background: #f7f9fc;
      padding: 68px 24px
    }

    .journey-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-bottom: 36px
    }

    .jcard {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .07);
      border: 1.5px solid #f1f5f9;
      transition: all .25s
    }

    .jcard:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, .13);
      border-color: rgba(26, 86, 160, .2)
    }

    .jcard-img {
      height: 150px;
      overflow: hidden;
      position: relative;
      background-size: cover;
      background-position: center
    }

    .jcard-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 50%, rgba(15, 51, 102, .55))
    }

    .jcard-img-label {
      position: absolute;
      bottom: 10px;
      left: 12px;
      color: #fff;
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .05em;
      text-transform: uppercase;
      z-index: 1;
      text-shadow: 0 1px 4px rgba(0, 0, 0, .4)
    }

    .jcard-body {
      padding: 14px 14px 16px
    }

    .jcard-title {
      font-family: 'Merriweather', Georgia, serif;
      font-size: .9rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 6px
    }

    .jcard-desc {
      font-size: .78rem;
      color: #64748b;
      line-height: 1.6
    }

    /* ══════════════════════════════════════════════
   ACCREDITATION & TRUST BADGES VISUAL
══════════════════════════════════════════════ */
    .accred-section {
      background: #fff;
      padding: 52px 24px;
      border-top: 1px solid #f1f5f9;
      border-bottom: 1px solid #f1f5f9
    }

    .accred-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 32px
    }

    .accred-title {
      font-family: 'Merriweather', Georgia, serif;
      font-size: 1.3rem;
      font-weight: 900;
      color: #0f172a;
      text-align: center
    }

    .accred-badges {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px
    }

    .accred-badge {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      padding: 20px 24px;
      border-radius: 16px;
      border: 2px solid #e2e8f0;
      background: #f7f9fc;
      min-width: 130px;
      transition: all .25s
    }

    .accred-badge:hover {
      border-color: #1a56a0;
      background: #f0f5fd;
      transform: translateY(-3px);
      box-shadow: 0 2px 8px rgba(0, 0, 0, .07)
    }

    .ab-icon {
      font-size: 2.2rem
    }

    .ab-name {
      font-family: 'Merriweather', Georgia, serif;
      font-size: .82rem;
      font-weight: 900;
      color: #1a56a0;
      letter-spacing: .04em
    }

    .ab-desc {
      font-size: .68rem;
      color: #94a3b8;
      font-weight: 600;
      text-align: center;
      line-height: 1.4
    }

    /* ── RESPONSIVE additions ── */
    @media(max-width:1024px) {
      .infogrid {
        grid-template-columns: 1fr;
        gap: 32px
      }

      .journey-cards {
        grid-template-columns: repeat(2, 1fr)
      }
    }

    @media(max-width:768px) {
      .journey-cards {
        grid-template-columns: 1fr 1fr;
        gap: 10px
      }

      .jcard-img {
        height: 120px
      }

      .accred-badges {
        gap: 10px
      }

      .accred-badge {
        min-width: 100px;
        padding: 14px 16px
      }
    }

    @media(max-width:420px) {
      .journey-cards {
        grid-template-columns: 1fr
      }

      .mil-hero-row {
        grid-template-columns: 1fr
      }
    }
 
    a {
    text-decoration: none !important;
}

@media only screen and (min-width: 220px) and (max-width: 600px) {
    
      .hdr {
        position: sticky;
        top: 9px !important;
        left: 0;
        right: 0;
        z-index: 999;
        background: #fff;
        border-bottom: 2px solid #1a56a0;
        padding: 0 20px;
        height: 62px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 2px 20px rgba(26, 86, 160, .12);
        gap: 10px;
    }
    
}