/* ==========================================================
   VHRI PREMIUM HERO TYPOGRAPHY SYSTEM v1.0
   Vakratund Hospital & Research Institute
========================================================== */

:root {
  --vhri-primary: #0d4a7a;
  --vhri-accent: #d89a00;
  --vhri-white: #ffffff;
  --vhri-text: #f5f7fa;
}

/* ===========================
   HERO EYEBROW
=========================== */

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 22px;

  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;

  text-transform: uppercase;
  letter-spacing: 2.5px;

  color: var(--vhri-accent);
}

.hero-eyebrow::before {
  content: "";

  width: 48px;
  height: 2px;

  background: var(--vhri-accent);

  border-radius: 100px;
}

.hero-eyebrow-white {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--vhri-white);
}

.hero-eyebrow-white::before {
  content: "";
  width: 48px;
  height: 2px;
  background: var(--vhri-accent);
  border-radius: 100px;
}

/* ===========================
   HERO TITLE
=========================== */

.hero-title {
  position: relative;
  padding-left: 25px;
}

.hero-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 82%;
  background: #d89a00;
  border-radius: 100px;
}
.hero-title1::before {
  content: "";
  position: absolute;
  /* left: 0; */
  /* top: 6px; */
  width: 5px;
  height: 8%;
  background: #d89a00;
  border-radius: 100px;
  transform: translateX(-350%);
}
/* ===========================
   GOLD HIGHLIGHT
=========================== */
.hero-highlight {
  color: #d89a00;
  position: relative;
  z-index: 1;
}

.hero-highlight::before {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  bottom: 8px;
  height: 18px;
  background: rgba(216, 154, 0, 0.15);
  z-index: -1;
  border-radius: 4px;
}

/* ===========================
   SUPPORTING PARAGRAPH
=========================== */

.hero-description {
  max-width: 650px;

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

  font-size: 18px;

  line-height: 1.8;

  font-weight: 400;

  margin-bottom: 38px;
}

/* ===========================
   CTA GROUP
=========================== */

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 992px) {
  .hero-title {
    font-size: 54px;

    line-height: 1.1;
  }

  .hero-description {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 1.6px;
    gap: 10px;
  }

  .hero-eyebrow::before {
    width: 30px;
  }

  .hero-title {
    font-size: 40px;

    letter-spacing: -1px;
  }

  .hero-highlight::before {
    display: none;
  }

  .hero-description {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 34px;
  }

  .hero-description {
    font-size: 15px;
  }
}

/* Nav Icon */
.nav-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid#D68A00;
  border-radius: 50%;
  color: #d68a00;
  background: transparent;
  font-size: 15px;
  transition: 0.3s ease;
}

/*=========================================================
    VHRI - PATIENT ACTION CENTER
=========================================================*/

.patient-action-section {
  position: relative;
  /* margin-top:-70px; */
  z-index: 10;
}

/*=========================
    Floating Card
==========================*/

.patient-action-card {
  background: #fff;

  border-radius: 22px;

  padding: 40px 45px;

  border: 1px solid rgba(13, 74, 122, 0.08);

  box-shadow: 0 15px 50px rgba(13, 74, 122, 0.08);

  margin-bottom: 35px;
}

/*=========================
    Left Side
==========================*/

.action-label {
  display: inline-block;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: #d68a00;

  margin-bottom: 15px;
}

.action-title {
  font-size: 34px;

  font-weight: 700;

  color: #0d4a7a;

  line-height: 1.2;

  margin-bottom: 15px;
}

.action-desc {
  font-size: 16px;

  line-height: 1.8;

  color: #5c6c7b;

  max-width: 420px;
}

/*=========================
    CTA Layout
==========================*/

.action-buttons {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;
}

/*=========================
    CTA Card
==========================*/

.action-btn {
  display: flex;

  align-items: center;

  gap: 18px;

  padding: 22px;

  border-radius: 18px;

  text-decoration: none;

  transition: 0.35s;

  border: 1px solid #e7edf4;

  background: #fff;

  min-height: 110px;
}

.action-btn:hover {
  transform: translateY(-5px);

  box-shadow: 0 15px 35px rgba(13, 74, 122, 0.12);

  border-color: #0d4a7a;
}

/*=========================
    Icon
==========================*/

.action-btn i {
  width: 52px;

  height: 52px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  border: 1.5px solid rgba(214, 138, 0, 0.35);

  color: #d68a00;

  font-size: 24px;

  flex-shrink: 0;
}
.action-btn1 i {
  width: 52px;

  height: 52px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  border: 1.5px solid rgba(214, 138, 0, 0.35);

  color: #d68a00;

  font-size: 24px;

  flex-shrink: 0;
}
.action-btn-1 {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid rgba(214, 138, 0, 0.35);
  color: #d68a00;
  font-size: 24px;
  margin-bottom: 15px;
}
.brand-accent {
  font-size: 13px !important;
}

.action-btn-1 i {
  line-height: 1;
}
.action-btn2 i {
  width: 42px;

  height: 42px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  border: 1.5px solid rgba(214, 138, 0, 0.35);

  color: #d68a00;

  font-size: 20px;

  flex-shrink: 0;
  margin-right: 10px;
}

/*=========================
    Text
==========================*/

.action-btn span {
  display: block;

  font-size: 17px;

  font-weight: 700;

  color: #0d4a7a;
}

.action-btn small {
  display: block;

  margin-top: 6px;

  color: #7b8794;

  font-size: 14px;

  line-height: 1.5;
}

/*=========================
    Primary
==========================*/

.action-btn.primary {
  background: #0d4a7a;

  border-color: #0d4a7a;
}

.action-btn.primary span,
.action-btn.primary small {
  color: #fff;
}

.action-btn.primary i {
  background: #fff;
}

/*=========================
    Emergency
==========================*/

.action-btn.emergency {
  border-color: #d68a00;
}

.action-btn.emergency:hover {
  background: #fff9f0;
}

/*=========================================================
        TRUST STRIP
=========================================================*/

.trust-strip {
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 20px;
}

.trust-item {
  background: #0d4a7a;

  border-radius: 18px;

  padding: 24px;

  text-align: center;

  transition: 0.35s;
}

.trust-item:hover {
  transform: translateY(-4px);
}

.trust-icon {
  width: 54px;

  height: 54px;

  margin: auto auto 18px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  border: 1.5px solid rgba(255, 255, 255, 0.2);

  color: #d68a00;

  font-size: 22px;
}
.trust-icon1 {
  width: 54px;

  height: 54px;

  /* margin:auto; */

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  border: 1.5px solid rgba(255, 255, 255, 0.2);

  color: #d68a00;

  font-size: 22px;
}

.trust-item strong {
  display: block;

  color: #fff;

  font-size: 28px;

  font-weight: 700;
}

.trust-item small {
  display: block;

  margin-top: 6px;

  color: rgba(255, 255, 255, 0.75);

  font-size: 14px;
}

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

@media (max-width: 992px) {
  .action-buttons {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .patient-action-card {
    padding: 30px;
  }
  .hero-title1::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 12px;
    width: 5px;
    height: 82%;
    background: #d89a00;
    border-radius: 100px;
  }
}

@media (max-width: 576px) {
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .action-title {
    font-size: 28px;
  }

  .patient-action-card {
    border-radius: 18px;

    padding: 24px;
  }
}
.mr-4 {
  margin-left: 60px !important;
}

.menu-column-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.menu-column-2 .view-all-specialities {
  grid-column: 1 / -1; /* span both columns */
}

.menu-column-2 .view-all-specialities a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.menu-column-2 .view-all-specialities .brand-accent {
  display: flex;
  align-items: center;
  justify-content: center;
}
.row.equal-height {
  display: flex;
  flex-wrap: wrap;
}

.row.equal-height > div {
  display: flex;
}

.row.equal-height .card-equal {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-item-modern {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  min-width: 42px;
  border-radius: 50%;
  background: #fff;
  color: #d68a00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: 0.3s;
}

.contact-item-modern:hover .contact-icon {
  transform: translateY(-2px);
}

.contact-content a {
  color: #fff;
  text-decoration: none;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
  transition: 0.3s;
}

.contact-content a:hover {
  color: #ffd166;
}

.move-text1 {
  position: relative;
  overflow: hidden;
  height: 40px;
}

.move-text1 ul {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  animation: mymove 22s linear infinite alternate;
}

.move-text1 ul li {
  display: inline-block;
  font-size: 22px;
  font-weight: 500;
  line-height: 40px;
  color: #0d4a7a;
  /* color: transparent; */
  margin: 0 9px;
  padding: 0 45px 0 0;
  /* -webkit-text-stroke: 1px rgba(0, 13, 68, 0.9); */
  position: relative;
}

.move-text1 ul li:last-child:after {
  display: none;
}

.move-text1 ul li:after {
  position: absolute;
  /* top: 50%; */
  right: 0px;
  content: "";
  width: 20px;
  height: 20px;
  background-size: 30px 30px;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%);
}

@keyframes mymove {
  from {
    left: 0;
  }

  to {
    left: -100%;
  }
}

:root {
  --navy: #003f6e;
  --navy-deep: #00294a;
  --navy-tint: #e9f0f6;
  --amber: #d68a00;
  --amber-light: #f4b73f;
  --ink: #0d2033;
  --muted: #5c7488;
  --paper: #f6f9fb;
  --white: #ffffff;
}

/* ---------- Radial diagram ---------- */
.fbc-diagram {
  position: relative;
  width: min(530px, 60vw);
  aspect-ratio: 1/1;
  margin: 0 auto;
}

.fbc-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px dashed #acd4f3;
  animation: fbc-spin 90s linear infinite;
}

.fbc-ring--inner {
  inset: 9%;
  border-color: rgba(214, 138, 0, 0.3);
  animation-duration: 70s;
  animation-direction: reverse;
}

@keyframes fbc-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fbc-ring {
    animation: none;
  }
}

/* center medallion */
.fbc-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #003f6e;
  /* radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.16), transparent 45%),
            linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%); */
  box-shadow:
    0 24px 48px -18px rgba(0, 42, 74, 0.55),
    0 0 0 10px var(--paper),
    0 0 0 11px rgba(0, 63, 110, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8%;
  color: var(--white);
  z-index: 3;
}

.fbc-center-icon {
  width: 34%;
  height: auto;
  margin-bottom: 10%;
}

.fbc-center-count {
  font-weight: 600;
  font-size: clamp(26px, 5vw, 34px);
  line-height: 1;
}

.fbc-center-label {
  font-size: clamp(10.5px, 1.4vw, 12.5px);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--amber-light);
  font-weight: 700;
  margin-top: 8px;
}

/* spoke items */
.fbc-item {
  position: absolute;
  width: 150px;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.fbc-item-badge {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px -8px rgba(0, 63, 110, 0.35);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.fbc-item-badge svg {
  width: 20px;
  height: 20px;
}

.fbc-item:hover .fbc-item-badge {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 12px 22px -8px rgba(214, 138, 0, 0.45);
}

.fbc-item-label {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.3;
}

/* hexagon positions: top, upper-right, lower-right, bottom, lower-left, upper-left */
.fbc-pos-1 {
  top: 6%;
  left: 50%;
}

.fbc-pos-2 {
  top: 29%;
  left: 87%;
}

.fbc-pos-3 {
  top: 71%;
  left: 87%;
}

.fbc-pos-4 {
  top: 94%;
  left: 50%;
}

.fbc-pos-5 {
  top: 71%;
  left: 13%;
}

.fbc-pos-6 {
  top: 29%;
  left: 13%;
}

/* ---------- Footer strip: suitable-for + CTA ---------- */
.fbc-footer {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 28px;
}

.fbc-suitable {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy-tint);
  border: 1px solid rgba(0, 63, 110, 0.16);
  color: var(--navy-deep);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 999px;
}

.fbc-suitable strong {
  color: var(--navy);
  font-weight: 700;
}

.fbc-suitable svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--amber);
}

.fbc-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--amber) 0%, #c17e00 100%);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 14px 30px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 14px 26px -10px rgba(214, 138, 0, 0.55);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.fbc-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -10px rgba(214, 138, 0, 0.65);
}

.fbc-cta svg {
  width: 16px;
  height: 16px;
}

/* ---------- Mobile: collapse radial to a clean list ---------- */
@media (max-width: 720px) {
  .fbc-section {
    padding: 64px 18px 72px;
  }

  .fbc-diagram {
    display: none;
  }

  .fbc-mobile-list {
    display: grid !important;
  }
}

.fbc-mobile-list {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 520px;
  margin: 0 auto;
}

.fbc-mobile-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.fbc-mobile-center {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 2px;
}

.fbc-mobile-center svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.fbc-mobile-center-title {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
}

.fbc-mobile-center-sub {
  font-size: 12px;
  color: var(--amber-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 2px;
}

.fbc-mobile-card {
  background: var(--white);
  border: 1px solid rgba(0, 63, 110, 0.12);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.fbc-mobile-card .fbc-item-badge {
  margin: 0;
}

.fbc-mobile-card .fbc-item-label {
  font-size: 12.5px;
}


    /* ============ Filters ============ */
    .filter-btn {
        background: transparent;
        border: 1.5px solid #d1d9e0;
        color: #003f6e;
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 600;
        margin: 4px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .filter-btn:hover {
        border-color: #d68a00;
        color: #d68a00;
    }

    .filter-btn.active {
        background: #003f6e;
        border-color: #003f6e;
        color: #fff;
    }

    /* ============ Bento Grid ============ */
    .bento-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 220px;
        gap: 18px;
    }

    .bento-square {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-wide {
        grid-column: span 2;
        grid-row: span 1;
    }

    .bento-tall {
        grid-row: span 2;
        grid-column: span 1;
    }

    .bento-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .bento-item {
        position: relative;
        border-radius: 18px;
        overflow: hidden;
        cursor: pointer;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
        opacity: 0;
        transform: translateY(20px);
        animation: bentoFadeIn 0.6s ease forwards;
    }

    .bento-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s cubic-bezier(.25, .8, .25, 1);
    }

    .bento-item:hover img {
        transform: scale(1.12);
    }

    .bento-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 63, 110, 0.9) 0%, rgba(0, 63, 110, 0) 60%);
        display: flex;
        align-items: flex-end;
        padding: 16px;
        opacity: 0;
        transition: opacity 0.35s ease;
    }

    .bento-item:hover .bento-overlay {
        opacity: 1;
    }

    .bento-overlay span {
        color: #fff;
        font-weight: 600;
        font-size: 14px;
        border-left: 3px solid #d68a00;
        padding-left: 10px;
    }

    @keyframes bentoFadeIn {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .bento-item.hidden {
        display: none;
    }

    @media (prefers-reduced-motion: reduce) {
        .bento-item {
            animation: none;
            opacity: 1;
            transform: none;
        }

        .bento-item img,
        .bento-overlay {
            transition: none;
        }
    }

    @media (max-width: 991px) {
        .bento-grid {
            grid-template-columns: repeat(2, 1fr);
            grid-auto-rows: 180px;
        }

        .bento-large,
        .bento-wide {
            grid-column: span 2;
        }
    }

    @media (max-width: 575px) {
        .bento-grid {
            grid-template-columns: 1fr;
            grid-auto-rows: 220px;
        }

        .bento-large,
        .bento-wide,
        .bento-tall {
            grid-column: span 1;
            grid-row: span 1;
        }
    }

    /* ============ Lightbox ============ */
    .gallery-lightbox {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 9999;
        align-items: center;
        justify-content: center;
    }

    .gallery-lightbox.active {
        display: flex;
    }

    .lightbox-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 20, 40, 0.92);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        opacity: 0;
    }

    .gallery-lightbox img {
        position: relative;
        max-width: 85%;
        max-height: 80vh;
        border-radius: 12px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
        will-change: transform, opacity;
        z-index: 1;
    }

    .lightbox-close,
    .lightbox-nav {
        position: absolute;
        background: rgba(255, 255, 255, 0.15);
        border: none;
        color: #fff;
        font-size: 26px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.3s;
        z-index: 2;
    }

    .lightbox-close:hover,
    .lightbox-nav:hover {
        background: #d68a00;
    }

    .lightbox-close {
        top: 24px;
        right: 24px;
    }

    .lightbox-prev {
        left: 24px;
        top: 50%;
        transform: translateY(-50%);
    }

    .lightbox-next {
        right: 24px;
        top: 50%;
        transform: translateY(-50%);
    }

    .lightbox-caption {
        position: absolute;
        bottom: 30px;
        color: #fff;
        font-size: 15px;
        font-weight: 500;
        z-index: 2;
    }

    @media (max-width: 575px) {
        .lightbox-nav {
            width: 40px;
            height: 40px;
            font-size: 20px;
        }

        .lightbox-prev {
            left: 10px;
        }

        .lightbox-next {
            right: 10px;
        }

        .lightbox-close {
            top: 14px;
            right: 14px;
            width: 40px;
            height: 40px;
        }
    }.image-center-blur {        position: relative;        overflow: hidden;    }     .image-center-blur img {        width: 100%;        height: 100%;        display: block;        object-fit: cover;    }     .image-center-blur .center-blur {        position: absolute;        top: 50%;        left: 50%;        width: 35%;        height: 35%;        transform: translate(-50%, -50%);        backdrop-filter: blur(3px);        -webkit-backdrop-filter: blur(3px);        border-radius: 12px;        pointer-events: none;    }

