    /* ── HERO SLIDER ── */
    #heroSlider {
      position: relative;
      overflow: hidden;
      min-height: min(92vh, 820px);
      background: #0A1628;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .85s ease, visibility .85s ease;
      z-index: 1;
    }
    .hero-slide.active {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      z-index: 2;
    }

    .slide-media {
      position: absolute;
      inset: 0;
      background-color: #0A1628;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      transform: scale(1);
      transition: transform 7.5s ease-out;
      will-change: transform;
    }
    .hero-slide.active .slide-media {
      transform: scale(1.06);
    }

    /* Hero content entrance */
    .hero-slide .slide-brand,
    .hero-slide .slide-title,
    .hero-slide .slide-body,
    .hero-slide .slide-actions,
    .hero-slide .slide-facilities {
      opacity: 0;
      transform: translateY(18px);
    }
    .hero-slide.active .slide-brand {
      animation: heroIn .55s cubic-bezier(.22,.61,.36,1) .08s forwards;
    }
    .hero-slide.active .slide-title {
      animation: heroIn .65s cubic-bezier(.22,.61,.36,1) .18s forwards;
    }
    .hero-slide.active .slide-body {
      animation: heroIn .55s cubic-bezier(.22,.61,.36,1) .3s forwards;
    }
    .hero-slide.active .slide-body-sub {
      animation-delay: .36s;
    }
    .hero-slide.active .slide-actions {
      animation: heroIn .55s cubic-bezier(.22,.61,.36,1) .42s forwards;
    }
    .hero-slide.active .slide-facilities {
      animation: heroInRight .65s cubic-bezier(.22,.61,.36,1) .28s forwards;
    }
    @keyframes heroInRight {
      from { opacity: 0; transform: translateX(24px); }
      to { opacity: 1; transform: translateX(0); }
    }
    @keyframes heroIn {
      from { opacity: 0; transform: translateY(18px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .stat-cell {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity .55s ease, transform .55s ease;
    }
    .stat-cell.vis {
      opacity: 1;
      transform: translateY(0);
    }
    .pmc-stats .col-6:nth-child(1) .stat-cell { transition-delay: .05s; }
    .pmc-stats .col-6:nth-child(2) .stat-cell { transition-delay: .15s; }
    .pmc-stats .col-6:nth-child(3) .stat-cell { transition-delay: .25s; }
    .pmc-stats .col-6:nth-child(4) .stat-cell { transition-delay: .35s; }

    @media (prefers-reduced-motion: reduce) {
      .hero-slide {
        transition: none;
      }
      .slide-media,
      .hero-slide.active .slide-media {
        transform: none !important;
        transition: none !important;
      }
      .hero-slide .slide-brand,
      .hero-slide .slide-title,
      .hero-slide .slide-body,
      .hero-slide .slide-actions,
      .hero-slide .slide-facilities,
      .stat-cell {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
      }
      .slider-dot.active .slider-dot-bar {
        animation: none !important;
        width: 100% !important;
      }
    }

    /* ── SLIDE BACKGROUNDS ── */
    .slide-bg-1 {
      background-image: url('../images/slider/pmc-faculty.jpg');
    }
    .slide-bg-2 {
      background-image: url('../images/slider/pmc-classroom.jpg');
    }
    .slide-bg-3 {
      background-image: url('../images/slider/hero-slide-1.jpg');
      background-image:
        image-set(
          url('../images/slider/hero-slide-1.webp') type('image/webp'),
          url('../images/slider/hero-slide-1.jpg') type('image/jpeg')
        );
      background-position: left center;
    }
    .slide-bg-4 {
      background-color: #0A1628;
    }
    .slide-bg-4.bg-ready {
      background-image: url('../images/slider/hero-slide-2.jpg');
      background-image:
        image-set(
          url('../images/slider/hero-slide-2.webp') type('image/webp'),
          url('../images/slider/hero-slide-2.jpg') type('image/jpeg')
        );
    }

    .slide-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(105deg, rgba(10,22,40,.88) 0%, rgba(10,22,40,.62) 38%, rgba(10,22,40,.28) 68%, rgba(10,22,40,.4) 100%),
        linear-gradient(to top, rgba(10,22,40,.55) 0%, transparent 42%);
      pointer-events: none;
    }

    .slide-inner {
      position: relative;
      z-index: 2;
      padding: 120px 0 110px;
      width: 100%;
    }
    .slide-content {
      max-width: 640px;
    }
    .slide-brand {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(1.35rem, 3.2vw, 2.05rem);
      font-weight: 800;
      letter-spacing: -.01em;
      color: #fff;
      line-height: 1.2;
      margin: 0 0 14px;
      text-shadow: 0 2px 24px rgba(0,0,0,.25);
    }
    .slide-brand::after {
      content: '';
      display: block;
      width: 48px;
      height: 3px;
      margin-top: 16px;
      border-radius: 2px;
      background: linear-gradient(90deg, var(--teal), var(--gold));
    }
    .slide-title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(2.4rem, 6vw, 4.25rem);
      font-weight: 900;
      color: white;
      line-height: 1.05;
      letter-spacing: -.02em;
      margin: 0 0 18px;
      text-shadow: 0 4px 28px rgba(0,0,0,.28);
    }
    .slide-title .hl { color: var(--gold-light); }
    .slide-title .hl-teal { color: var(--teal-light); }
    .slide-body {
      font-family: 'Quicksand', sans-serif;
      font-size: clamp(1rem, 1.5vw, 1.12rem);
      color: rgba(255,255,255,.82);
      line-height: 1.7;
      max-width: 540px;
      margin: 0 0 14px;
      font-weight: 500;
    }
    .slide-content > .slide-body:last-of-type { margin-bottom: 28px; }
    .slide-body-sub {
      color: rgba(255,255,255,.7);
      font-size: clamp(.95rem, 1.35vw, 1.05rem);
    }
    .slide-actions { display: flex; gap: 12px; flex-wrap: wrap; }

    /* Campus facilities panel (slide 2) */
    .slide-facilities {
      background: rgba(10,22,40,.42);
      border: 1px solid rgba(255,255,255,.16);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-radius: 18px;
      padding: 22px 22px 18px;
      max-width: 460px;
      margin-left: auto;
    }
    .sf-title {
      font-family: 'Montserrat', sans-serif;
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255,255,255,.92);
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(255,255,255,.12);
    }
    .sf-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .sf-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 11px 12px;
      border-radius: 12px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.08);
      color: rgba(255,255,255,.9);
      font-family: 'Quicksand', sans-serif;
      font-size: .9rem;
      font-weight: 600;
      transition: background .2s ease, border-color .2s ease;
    }
    .sf-item i {
      color: var(--teal-light);
      font-size: 1.05rem;
      flex-shrink: 0;
    }
    .sf-item:hover {
      background: rgba(0,168,150,.18);
      border-color: rgba(0,168,150,.35);
    }
    @media (max-width: 991.98px) {
      .slide-facilities {
        margin: 8px auto 0;
        max-width: 540px;
      }
      /* Let tall slides (Campus Life) grow so content clears slider controls */
      #heroSlider {
        min-height: 0;
        height: auto;
      }
      .hero-slide {
        position: absolute;
        inset: 0;
        align-items: flex-start;
        overflow: hidden;
      }
      .hero-slide.active {
        position: relative;
        inset: auto;
        min-height: min(88vh, 760px);
        overflow: visible;
      }
      .slide-inner {
        padding: 96px 0 118px;
      }
      .slider-chrome {
        bottom: 16px;
      }
    }
    @media (max-width: 575.98px) {
      .slide-title {
        font-size: clamp(1.85rem, 8vw, 2.4rem);
      }
      .slide-facilities {
        padding: 16px 14px 14px;
      }
      .sf-item {
        padding: 9px 10px;
        font-size: .82rem;
      }
      .sf-item i { font-size: .95rem; }
      .sf-grid { gap: 8px; }
      .slide-inner {
        padding: 84px 0 128px;
      }
      .slider-chrome {
        bottom: 14px;
        padding: 0 12px;
      }
      .slider-prev, .slider-next {
        width: 40px;
        height: 40px;
      }
    }
    #heroSlider .btn-pmc {
      min-height: 48px;
      padding-left: 22px;
      padding-right: 22px;
      box-shadow: 0 10px 30px rgba(0,0,0,.18);
    }

    /* Slider chrome */
    .slider-chrome {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 28px;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 0 clamp(16px, 4vw, 48px);
      pointer-events: none;
    }
    .slider-chrome > * { pointer-events: auto; }

    .slider-prev, .slider-next {
      width: 48px;
      height: 48px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.22);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.15rem;
      cursor: pointer;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      transition: background .25s ease, border-color .25s ease, transform .25s ease;
    }
    .slider-prev:hover, .slider-next:hover {
      background: rgba(0,168,150,.55);
      border-color: rgba(0,168,150,.7);
      transform: scale(1.05);
    }
    .slider-prev:active, .slider-next:active { transform: scale(.97); }

    .slider-indicators {
      display: flex;
      align-items: flex-end;
      gap: 18px;
      flex: 1;
      justify-content: center;
      max-width: 420px;
      margin: 0 auto;
    }
    .slider-dot {
      flex: 1;
      max-width: 140px;
      background: transparent;
      border: none;
      padding: 0;
      cursor: pointer;
      text-align: left;
      color: rgba(255,255,255,.55);
      transition: color .25s ease;
    }
    .slider-dot:hover { color: rgba(255,255,255,.85); }
    .slider-dot.active { color: #fff; }
    .slider-dot-track {
      display: block;
      height: 3px;
      width: 100%;
      border-radius: 99px;
      background: rgba(255,255,255,.22);
      overflow: hidden;
      margin-bottom: 8px;
    }
    .slider-dot-bar {
      display: block;
      height: 100%;
      width: 0;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--teal-light), var(--gold-light));
    }
    .slider-dot.active .slider-dot-bar {
      animation: slideProgress 6000ms linear forwards;
    }
    .slider-dot-label {
      font-family: 'Montserrat', sans-serif;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    @keyframes slideProgress { from { width: 0; } to { width: 100%; } }

    /* ── ABOUT ── */
    .about-visual {
      background-image: url('../images/campus/pmc-building.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      border-radius: var(--r-lg);
      min-height: 420px;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 16px; position: relative; overflow: hidden;
      padding: 40px;
    }
    .about-visual::before {
      content: '';
      position: absolute; right: -70px; top: -70px;
      width: 300px; height: 300px; border-radius: 50%;
      border: 60px solid rgba(255,255,255,.04);
    }
    .about-visual::after {
      content: '';
      position: absolute; left: -40px; bottom: -40px;
      width: 200px; height: 200px; border-radius: 50%;
      border: 40px solid rgba(0,168,150,.07);
    }
    .about-visual-icon { font-size: 4rem; color: var(--gold); position: relative; z-index: 1; }
    .about-visual-label {
      font-family: 'Montserrat', sans-serif;
      font-size: .82rem; font-weight: 700;
      color: rgba(255,255,255,.65);
      letter-spacing: .07em; text-transform: uppercase;
      text-align: center; position: relative; z-index: 1;
    }
    .about-badge {
      position: absolute; bottom: -18px; right: -18px;
      background: var(--teal);
      border-radius: var(--r-md);
      padding: 18px 22px; text-align: center;
      box-shadow: 0 6px 28px rgba(0,168,150,.35);
      z-index: 3;
    }
    .about-badge-num {
      font-family: 'Montserrat', sans-serif;
      font-size: 2rem; font-weight: 900;
      color: white; display: block; line-height: 1;
    }
    .about-badge-lbl {
      font-family: 'Quicksand', sans-serif;
      font-size: .68rem; font-weight: 700;
      color: rgba(255,255,255,.8);
      text-transform: uppercase; letter-spacing: .06em;
    }

    /* About page layout */
    .page-content p {
      font-family: var(--font-body);
      font-size: .98rem;
      color: var(--gray-dark);
      line-height: 1.8;
      margin-bottom: 1rem;
    }
    .about-lead {
      font-size: 1.08rem !important;
      color: var(--navy) !important;
      font-weight: 600;
      border-left: 3px solid var(--teal);
      padding-left: 16px;
      margin: 18px 0 16px !important;
    }
    .about-facts {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin: 28px 0 40px;
      padding: 18px;
      background: var(--off-white);
      border-radius: var(--r-lg);
      border: 1px solid var(--border);
    }
    .about-fact {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 6px 4px;
    }
    .about-fact i {
      font-size: 1.15rem;
      color: var(--teal);
      margin-top: 2px;
    }
    .about-fact strong {
      display: block;
      font-family: var(--font-head);
      font-size: .86rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.3;
    }
    .about-fact span {
      display: block;
      font-family: var(--font-body);
      font-size: .75rem;
      font-weight: 500;
      color: var(--gray-mid);
      margin-top: 2px;
    }
    .about-block {
      margin-top: 48px;
      padding-top: 40px;
      border-top: 1px solid var(--border);
    }
    .about-block-head {
      margin-bottom: 24px;
    }
    .about-block-head h3 {
      font-family: var(--font-head);
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--navy);
      margin: 0 0 8px;
    }
    .about-block-head p {
      margin: 0 !important;
      max-width: 560px;
      color: var(--gray-mid) !important;
    }
    .about-cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }
    .about-map-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      overflow: hidden;
      height: 100%;
      transition: box-shadow var(--ease), border-color var(--ease), transform var(--ease);
    }
    .about-map-card:hover {
      box-shadow: var(--shadow-md);
      border-color: rgba(0,168,150,.3);
      transform: translateY(-3px);
    }
    .about-map-head {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 16px 18px;
      background: var(--off-white);
      border-bottom: 1px solid var(--border);
    }
    .about-map-head i {
      font-size: 1.2rem;
      color: var(--teal);
      margin-top: 2px;
    }
    .about-map-head strong {
      display: block;
      font-family: var(--font-head);
      font-size: .92rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.3;
    }
    .about-map-head span {
      display: block;
      font-family: var(--font-body);
      font-size: .76rem;
      font-weight: 500;
      color: var(--gray-mid);
      margin-top: 2px;
    }
    .about-map-card .ratio iframe {
      border: 0;
      width: 100%;
      height: 100%;
    }
    .about-recog {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 20px 18px;
      height: 100%;
      transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
    }
    .about-recog:hover {
      border-color: rgba(0,168,150,.35);
      box-shadow: var(--shadow-sm);
      transform: translateY(-2px);
    }
    .about-recog-ico {
      width: 46px;
      height: 46px;
      flex-shrink: 0;
      border-radius: 50%;
      background: var(--teal-pale);
      color: var(--teal);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.15rem;
    }
    .about-recog h4 {
      font-family: var(--font-head);
      font-size: .95rem;
      font-weight: 700;
      color: var(--navy);
      margin: 0 0 6px;
      line-height: 1.35;
    }
    .about-recog p {
      font-size: .86rem !important;
      margin: 0 !important;
      color: var(--gray-mid) !important;
      line-height: 1.6 !important;
    }
    @media (max-width: 991.98px) {
      .about-facts { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 575.98px) {
      .about-facts { grid-template-columns: 1fr; padding: 14px; }
      .about-cta-row .btn-pmc { width: 100%; justify-content: center; }
    }

    /* ── Contact page ── */
    .ct-intro { margin-bottom: 28px; }
    .ct-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 40px;
    }
    .ct-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 22px 20px;
      transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
    }
    .ct-card:hover {
      border-color: rgba(0,168,150,.35);
      box-shadow: var(--shadow-sm);
      transform: translateY(-2px);
    }
    .ct-ico {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: var(--teal-pale);
      color: var(--teal);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.15rem;
      margin-bottom: 14px;
    }
    .ct-card h3 {
      font-family: var(--font-head);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
      margin: 0 0 8px;
    }
    .ct-card p {
      margin: 0 0 6px !important;
      font-size: .9rem !important;
      line-height: 1.6 !important;
      color: var(--gray-dark) !important;
    }
    .ct-card a:not(.ct-link) {
      color: var(--teal);
      font-weight: 700;
      text-decoration: none;
    }
    .ct-card a:not(.ct-link):hover { text-decoration: underline; }
    .ct-note {
      color: var(--gray-mid) !important;
      font-size: .82rem !important;
    }
    .ct-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 10px;
      font-family: var(--font-head);
      font-size: .78rem;
      font-weight: 700;
      color: var(--teal);
      text-decoration: none;
      transition: gap var(--ease);
    }
    .ct-link:hover { gap: 10px; color: var(--navy); }
    .ct-social {
      display: flex;
      gap: 8px;
      margin-top: 4px;
    }
    .ct-social a {
      width: 38px;
      height: 38px;
      border-radius: 8px;
      background: var(--navy);
      color: #fff !important;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none !important;
      transition: background var(--ease);
    }
    .ct-social a:hover { background: var(--teal); }
    .ct-depts {
      margin-bottom: 40px;
      padding-top: 8px;
    }
    .ct-dept-links {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .ct-dept-links a {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      font-family: var(--font-head);
      font-size: .9rem;
      font-weight: 700;
      color: var(--navy);
      text-decoration: none;
      transition: border-color var(--ease), background var(--ease), transform var(--ease);
    }
    .ct-dept-links a > i:first-child { color: var(--teal); font-size: 1.1rem; }
    .ct-dept-links a span { flex: 1; }
    .ct-dept-links a > i:last-child {
      color: var(--gray-mid);
      font-size: .85rem;
      transition: transform var(--ease), color var(--ease);
    }
    .ct-dept-links a:hover {
      border-color: rgba(0,168,150,.4);
      background: var(--teal-pale);
      transform: translateX(2px);
    }
    .ct-dept-links a:hover > i:last-child {
      color: var(--teal);
      transform: translateX(3px);
    }
    .ct-map {
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      overflow: hidden;
      background: var(--off-white);
      aspect-ratio: 16 / 9;
    }
    .ct-map iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }
    @media (max-width: 575.98px) {
      .ct-grid { grid-template-columns: 1fr; }
    }

    /* ── Newsletter page ── */
    .nl-intro {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
      margin-bottom: 36px;
      padding-bottom: 28px;
      border-bottom: 1px solid var(--border);
    }
    .nl-intro-text { max-width: 640px; }
    .nl-intro-meta {
      display: flex;
      gap: 12px;
    }
    .nl-meta-cell {
      min-width: 88px;
      text-align: center;
      padding: 14px 16px;
      background: var(--off-white);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
    }
    .nl-meta-cell strong {
      display: block;
      font-family: var(--font-head);
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--navy);
      line-height: 1.2;
    }
    .nl-meta-cell span {
      font-family: var(--font-body);
      font-size: .72rem;
      font-weight: 600;
      color: var(--gray-mid);
    }
    .nl-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      overflow: hidden;
      width: 100%;
      display: flex;
      flex-direction: column;
      transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
    }
    .nl-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: rgba(0,168,150,.35);
    }
    .nl-card-media {
      display: block;
      height: 240px;
      background: var(--off-white);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }
    .nl-card-media img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      transition: transform .35s ease;
    }
    .nl-card:hover .nl-card-media img { transform: scale(1.03); }
    .nl-card-fallback {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--teal);
      font-size: 2.5rem;
    }
    .nl-card-body {
      padding: 18px 18px 20px;
      display: flex;
      flex-direction: column;
      flex: 1;
      gap: 8px;
    }
    .nl-card-date {
      font-family: var(--font-body);
      font-size: .74rem;
      font-weight: 700;
      color: var(--gray-mid);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .nl-card-title {
      font-family: var(--font-head);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
      margin: 0 0 8px;
      line-height: 1.35;
      flex: 1;
    }
    .nl-card-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      font-family: var(--font-head);
      font-size: .78rem;
      font-weight: 700;
      color: #fff;
      background: var(--navy);
      border-radius: 8px;
      padding: 11px 14px;
      text-decoration: none;
      transition: background var(--ease);
    }
    .nl-card-btn:hover {
      background: var(--teal);
      color: #fff;
    }
    .nl-pagination {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      margin-top: 40px;
    }
    .nl-page-btn {
      min-width: 40px;
      height: 40px;
      padding: 0 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-head);
      font-size: .84rem;
      font-weight: 700;
      color: var(--navy);
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 8px;
      text-decoration: none;
      transition: background var(--ease), border-color var(--ease), color var(--ease);
    }
    .nl-page-btn:hover:not(.disabled):not(.active) {
      border-color: var(--teal);
      color: var(--teal);
    }
    .nl-page-btn.active {
      background: var(--navy);
      border-color: var(--navy);
      color: #fff;
    }
    .nl-page-btn.disabled {
      opacity: .4;
      pointer-events: none;
    }
    @media (max-width: 575.98px) {
      .nl-card-media { height: 200px; }
      .nl-intro-meta { width: 100%; }
      .nl-meta-cell { flex: 1; }
    }

    /* ── Library page ── */
    .page-hero-library {
      background-image:
        linear-gradient(120deg, rgba(10,22,40,.55), rgba(10,22,40,.28)),
        url('https://prime.edu.pk/pf/upload/library/cover_lib.jpg');
      background-size: cover;
      background-position: center;
    }
    .lib-nav {
      position: sticky;
      top: 100px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      overflow: hidden;
      margin-bottom: 24px;
    }
    .lib-nav-head {
      background: var(--navy);
      color: #fff;
      font-family: var(--font-head);
      font-size: .76rem;
      font-weight: 700;
      letter-spacing: .04em;
      text-transform: uppercase;
      padding: 14px 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .lib-nav-head i { color: var(--gold); }
    .lib-nav a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      padding: 12px 16px;
      font-family: var(--font-body);
      font-size: .88rem;
      font-weight: 600;
      color: var(--navy);
      text-decoration: none;
      border-top: 1px solid var(--border);
      transition: background var(--ease), color var(--ease), padding-left var(--ease);
    }
    .lib-nav a i { font-size: .75rem; color: var(--gray-mid); }
    .lib-nav a:hover {
      background: var(--teal-pale);
      color: var(--teal);
      padding-left: 20px;
    }
    .lib-block {
      margin-bottom: 40px;
      padding-bottom: 36px;
      border-bottom: 1px solid var(--border);
      scroll-margin-top: 110px;
    }
    .lib-block:last-of-type { border-bottom: none; }
    .lib-facts {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin: 24px 0;
      padding: 16px;
      background: var(--off-white);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
    }
    .lib-fact {
      text-align: center;
      padding: 8px 4px;
    }
    .lib-fact strong {
      display: block;
      font-family: var(--font-head);
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--navy);
      line-height: 1.2;
    }
    .lib-fact span {
      font-family: var(--font-body);
      font-size: .74rem;
      font-weight: 600;
      color: var(--gray-mid);
    }
    .lib-panel {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 20px 18px;
      height: 100%;
    }
    .lib-panel h4 {
      font-family: var(--font-head);
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
      margin: 0 0 10px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .lib-panel h4 i { color: var(--teal); }
    .lib-panel p {
      margin: 0 !important;
      font-size: .9rem !important;
      color: var(--gray-dark) !important;
    }
    .lib-net-card {
      display: grid;
      grid-template-columns: 1.4fr .8fr;
      gap: 20px;
      align-items: center;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 20px;
      margin-bottom: 14px;
      transition: border-color var(--ease), box-shadow var(--ease);
    }
    .lib-net-card:hover {
      border-color: rgba(0,168,150,.35);
      box-shadow: var(--shadow-sm);
    }
    .lib-net-body h4 {
      font-family: var(--font-head);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
      margin: 0 0 8px;
    }
    .lib-net-body p {
      margin: 0 !important;
      font-size: .9rem !important;
    }
    .lib-net-media {
      border-radius: var(--r-md);
      overflow: hidden;
      background: var(--off-white);
      min-height: 140px;
    }
    .lib-net-media img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      display: block;
    }
    .lib-subhead {
      font-family: var(--font-head);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
      margin: 22px 0 10px;
    }
    .lib-links {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      margin-top: 14px;
    }
    .lib-links a {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 12px 14px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 8px;
      font-family: var(--font-body);
      font-size: .86rem;
      font-weight: 600;
      color: var(--navy);
      text-decoration: none;
      transition: border-color var(--ease), background var(--ease), color var(--ease);
    }
    .lib-links a i { color: var(--teal); flex-shrink: 0; }
    .lib-links a:hover {
      border-color: var(--teal);
      background: var(--teal-pale);
      color: var(--navy);
    }
    .lib-service {
      padding: 16px 0;
      border-top: 1px solid var(--border);
    }
    .lib-service:first-of-type { border-top: none; padding-top: 0; }
    .lib-service h4 {
      font-family: var(--font-head);
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
      margin: 0 0 8px;
    }
    .lib-service p { margin-bottom: .75rem !important; }
    .lib-list {
      color: var(--gray-dark);
      font-family: var(--font-body);
      font-size: .95rem;
      line-height: 1.75;
      padding-left: 1.2rem;
      margin-bottom: 1rem;
    }
    .lib-note {
      font-weight: 600 !important;
      color: var(--navy) !important;
    }
    .lib-contact {
      display: flex;
      gap: 16px;
      align-items: center;
      padding: 22px 20px;
      background: var(--off-white);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      scroll-margin-top: 110px;
    }
    .lib-contact-ico {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--navy);
      color: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }
    .lib-contact h3 {
      font-family: var(--font-head);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
      margin: 0 0 4px;
    }
    .lib-contact p {
      margin: 0 !important;
      font-size: .92rem !important;
      color: var(--gray-mid) !important;
    }
    .lib-contact a {
      color: var(--teal);
      font-weight: 700;
      text-decoration: none;
    }
    .lib-contact a:hover { text-decoration: underline; }
    @media (max-width: 991.98px) {
      .lib-nav { position: static; }
      .lib-net-card { grid-template-columns: 1fr; }
      .lib-net-media img { height: 200px; }
      .lib-facts { grid-template-columns: repeat(2, 1fr); }
      .lib-links { grid-template-columns: 1fr; }
    }

    /* ── Educational Literature (pubedu) ── */
    .edu-intro {
      max-width: 720px;
      margin-bottom: 28px;
    }
    .edu-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 40px;
      padding-bottom: 28px;
      border-bottom: 1px solid var(--border);
    }
    .edu-nav a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-head);
      font-size: .78rem;
      font-weight: 700;
      color: var(--navy);
      text-decoration: none;
      padding: 10px 14px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 8px;
      transition: border-color var(--ease), background var(--ease), color var(--ease);
    }
    .edu-nav a i { color: var(--teal); }
    .edu-nav a span {
      font-size: .68rem;
      font-weight: 800;
      color: var(--gray-mid);
      background: var(--off-white);
      border-radius: 999px;
      padding: 2px 8px;
    }
    .edu-nav a:hover {
      border-color: var(--teal);
      background: var(--teal-pale);
      color: var(--navy);
    }
    .edu-section {
      margin-bottom: 56px;
      scroll-margin-top: 100px;
    }
    .edu-section-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 22px;
      flex-wrap: wrap;
    }
    .edu-section-title {
      font-family: var(--font-head);
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--navy);
      margin: 0;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .edu-section-title i {
      color: var(--teal);
      font-size: 1.2rem;
    }
    .edu-section-count {
      font-family: var(--font-head);
      font-size: .72rem;
      font-weight: 700;
      color: var(--gray-mid);
      text-transform: uppercase;
      letter-spacing: .06em;
    }
    .edu-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      overflow: hidden;
      width: 100%;
      display: flex;
      flex-direction: column;
      transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
    }
    .edu-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: rgba(0,168,150,.35);
    }
    .edu-card-media {
      display: block;
      height: 220px;
      background: var(--off-white);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }
    .edu-card-media img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      transition: transform .35s ease;
    }
    .edu-card:hover .edu-card-media img { transform: scale(1.03); }
    .edu-card-fallback {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--teal);
      font-size: 2.5rem;
    }
    .edu-card-body {
      padding: 18px 18px 20px;
      display: flex;
      flex-direction: column;
      flex: 1;
      gap: 14px;
    }
    .edu-card-title {
      font-family: var(--font-head);
      font-size: .92rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.45;
      margin: 0;
      flex: 1;
    }
    .edu-card-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      font-family: var(--font-head);
      font-size: .78rem;
      font-weight: 700;
      color: #fff;
      background: var(--navy);
      border-radius: 8px;
      padding: 11px 14px;
      text-decoration: none;
      transition: background var(--ease);
    }
    .edu-card-btn:hover {
      background: var(--teal);
      color: #fff;
    }
    @media (max-width: 575.98px) {
      .edu-card-media { height: 190px; }
      .edu-nav a { width: 100%; justify-content: space-between; }
    }

    /* ── Admissions page ── */
    .adm-intro { margin-bottom: 28px; }
    .adm-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-bottom: 36px;
      padding: 18px;
      background: var(--off-white);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
    }
    .adm-step {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 6px 4px;
    }
    .adm-step-num {
      font-family: var(--font-head);
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .08em;
      color: var(--gold);
      background: var(--navy);
      border-radius: 8px;
      padding: 8px 10px;
      line-height: 1;
      flex-shrink: 0;
    }
    .adm-step strong {
      display: block;
      font-family: var(--font-head);
      font-size: .88rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.3;
      margin-bottom: 2px;
    }
    .adm-step span {
      font-family: var(--font-body);
      font-size: .76rem;
      font-weight: 500;
      color: var(--gray-mid);
    }
    .adm-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 24px 22px;
      margin-bottom: 16px;
      position: relative;
      overflow: hidden;
      transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
    }
    .adm-card::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 4px;
      background: var(--teal);
    }
    .adm-card:hover {
      border-color: rgba(0,168,150,.35);
      box-shadow: var(--shadow-sm);
      transform: translateY(-2px);
    }
    .adm-card-head {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      margin-bottom: 14px;
      padding-left: 6px;
    }
    .adm-card-ico {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--teal-pale);
      color: var(--teal);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }
    .adm-card-head h3 {
      font-family: var(--font-head);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy);
      margin: 0 0 4px;
      line-height: 1.3;
    }
    .adm-card-head p {
      margin: 0 !important;
      font-size: .88rem !important;
      color: var(--gray-mid) !important;
    }
    .adm-card-links {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin: 0 0 16px 68px;
      padding: 10px 0 10px 14px;
      border-left: 2px solid var(--border);
    }
    .adm-sublink {
      font-family: var(--font-body);
      font-size: .84rem;
      font-weight: 500;
      color: var(--gray-mid);
      text-decoration: none;
      transition: color var(--ease), padding-left var(--ease);
    }
    .adm-sublink:hover {
      color: var(--teal);
      padding-left: 4px;
    }
    .adm-card-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      padding-left: 6px;
    }
    .adm-card-actions .btn-pmc {
      font-size: .82rem;
      padding: 10px 16px;
    }
    .adm-help {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      margin-top: 28px;
      padding: 24px 22px;
      background: var(--off-white);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
    }
    .adm-help-ico {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--navy);
      color: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }
    .adm-help h3 {
      font-family: var(--font-head);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
      margin: 0 0 6px;
    }
    .adm-help p {
      margin: 0 0 14px !important;
      font-size: .9rem !important;
      color: var(--gray-mid) !important;
    }
    @media (max-width: 767.98px) {
      .adm-steps { grid-template-columns: 1fr; }
      .adm-card-links { margin-left: 0; }
      .adm-help { flex-direction: column; }
    }

    /* ── Islamic Studies page ── */
    .is-prog-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 28px;
    }
    .is-prog-nav a {
      font-family: var(--font-head);
      font-size: .78rem;
      font-weight: 700;
      color: var(--navy);
      text-decoration: none;
      padding: 8px 14px;
      border: 1px solid var(--border);
      border-radius: 8px;
      background: #fff;
      transition: background var(--ease), border-color var(--ease), color var(--ease);
    }
    .is-prog-nav a:hover {
      border-color: var(--teal);
      color: var(--teal);
    }
    .is-prog-nav a.active {
      background: var(--navy);
      border-color: var(--navy);
      color: #fff;
    }
    .is-adm-notice {
      margin-top: 8px;
      margin-bottom: 28px;
    }
    .is-adm-notice .btn-pmc {
      margin-right: 8px;
      margin-bottom: 8px;
    }
    .is-intro { margin-bottom: 28px; }
    .is-campus-tag {
      font-size: .92rem !important;
      color: var(--gray-mid) !important;
      margin-bottom: 16px !important;
    }
    .is-facts {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin: 8px 0 12px;
      padding: 18px;
      background: var(--off-white);
      border-radius: var(--r-lg);
      border: 1px solid var(--border);
    }
    .is-fact {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 6px 4px;
    }
    .is-fact i {
      font-size: 1.15rem;
      color: var(--teal);
      margin-top: 2px;
    }
    .is-fact strong {
      display: block;
      font-family: var(--font-head);
      font-size: .84rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.3;
    }
    .is-fact span {
      display: block;
      font-family: var(--font-body);
      font-size: .74rem;
      font-weight: 500;
      color: var(--gray-mid);
      margin-top: 2px;
    }
    .is-block {
      margin-top: 44px;
      padding-top: 36px;
      border-top: 1px solid var(--border);
    }
    .is-topics {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 18px;
    }
    .is-topics span {
      font-family: var(--font-head);
      font-size: .72rem;
      font-weight: 700;
      color: var(--navy);
      background: var(--teal-pale);
      border: 1px solid rgba(0,168,150,.2);
      border-radius: 999px;
      padding: 6px 12px;
    }
    .is-panel {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 24px 22px;
      height: 100%;
    }
    .is-panel-ico {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--teal-pale);
      color: var(--teal);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.15rem;
      margin-bottom: 14px;
    }
    .is-panel h4 {
      font-family: var(--font-head);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
      margin: 0 0 10px;
    }
    .is-panel p {
      font-size: .9rem !important;
      margin-bottom: .85rem !important;
    }
    .is-panel p:last-child { margin-bottom: 0 !important; }
    .is-faculty-wrap {
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      overflow: hidden;
      background: #fff;
      box-shadow: 0 8px 24px rgba(10, 22, 40, .04);
    }
    .is-faculty-table {
      width: 100%;
      border-collapse: collapse;
      margin: 0;
    }
    .is-faculty-table thead th {
      font-family: var(--font-head);
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: #fff;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid, #152a45) 100%);
      text-align: left;
      padding: 14px 16px;
      border: none;
      white-space: nowrap;
    }
    .is-faculty-table thead th.is-faculty-num {
      width: 52px;
      text-align: center;
    }
    .is-faculty-table tbody td {
      font-family: var(--font-body);
      font-size: .9rem;
      font-weight: 500;
      color: var(--gray-dark);
      padding: 14px 16px;
      border-top: 1px solid var(--border);
      vertical-align: middle;
    }
    .is-faculty-table tbody tr:nth-child(even) td {
      background: var(--off-white);
    }
    .is-faculty-table tbody tr:hover td {
      background: var(--teal-pale);
    }
    .is-faculty-table .is-faculty-num {
      text-align: center;
      font-family: var(--font-head);
      font-weight: 700;
      color: var(--teal);
      font-size: .85rem;
    }
    .is-faculty-table .is-faculty-name {
      font-family: var(--font-head);
      font-size: .95rem;
      font-weight: 700;
      color: var(--navy);
    }
    @media (max-width: 991.98px) {
      .is-facts { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 575.98px) {
      .is-facts { grid-template-columns: 1fr; }
      .is-faculty-table thead { display: none; }
      .is-faculty-table,
      .is-faculty-table tbody,
      .is-faculty-table tr,
      .is-faculty-table td {
        display: block;
        width: 100%;
      }
      .is-faculty-table tbody tr {
        padding: 14px 16px;
        border-top: 1px solid var(--border);
      }
      .is-faculty-table tbody tr:first-child { border-top: none; }
      .is-faculty-table tbody td {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        padding: 6px 0;
        border: none;
        background: transparent !important;
        text-align: right;
      }
      .is-faculty-table tbody td::before {
        content: attr(data-label);
        font-family: var(--font-head);
        font-size: .68rem;
        font-weight: 800;
        letter-spacing: .06em;
        text-transform: uppercase;
        color: var(--gray-mid);
        text-align: left;
        flex-shrink: 0;
      }
      .is-faculty-table tbody td.is-faculty-num {
        justify-content: flex-start;
        padding-bottom: 8px;
        margin-bottom: 4px;
        border-bottom: 1px dashed var(--border);
        color: var(--teal);
      }
      .is-faculty-table tbody td.is-faculty-num::before {
        margin-right: 8px;
      }
    }

    /* ── Org structure page ── */
    .org-intro { margin-bottom: 36px; }
    .org-chart {
      background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
      border-radius: var(--r-lg);
      padding: 32px 24px 28px;
      color: #fff;
      margin-bottom: 12px;
    }
    .org-node-campus {
      max-width: 520px;
      margin: 0 auto 8px;
      text-align: center;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.14);
      border-radius: var(--r-md);
      padding: 18px 20px;
    }
    .org-node-label {
      display: block;
      font-family: var(--font-head);
      font-size: .65rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 6px;
    }
    .org-node-campus strong {
      display: block;
      font-family: var(--font-head);
      font-size: 1.1rem;
      font-weight: 700;
      line-height: 1.35;
    }
    .org-node-sub {
      display: block;
      margin-top: 6px;
      font-family: var(--font-body);
      font-size: .8rem;
      color: rgba(255,255,255,.6);
    }
    .org-connector {
      width: 2px;
      height: 28px;
      background: rgba(255,255,255,.25);
      margin: 0 auto 18px;
    }
    .org-branches {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .org-branch {
      display: flex;
      flex-direction: column;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--r-md);
      overflow: hidden;
      color: inherit;
      transition: transform var(--ease), border-color var(--ease), background var(--ease);
      height: 100%;
    }
    .org-branch:hover {
      transform: translateY(-4px);
      border-color: rgba(0,168,150,.55);
      background: rgba(255,255,255,.1);
    }
    .org-branch-body { padding: 18px 16px 20px; flex: 1; display: flex; flex-direction: column; }
    .org-branch-ico {
      width: 38px; height: 38px;
      border-radius: 10px;
      background: rgba(0,168,150,.18);
      color: var(--teal-light);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.05rem;
      margin-bottom: 10px;
    }
    .org-branch-title {
      font-family: var(--font-head);
      font-size: .95rem;
      font-weight: 700;
      color: #fff;
      margin: 0 0 14px;
      line-height: 1.35;
      text-decoration: none;
      display: block;
      transition: color var(--ease);
    }
    .org-branch-title:hover { color: var(--teal-light); }
    .org-branch-links {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-top: auto;
      margin-left: 10px;
      padding: 12px 0 0 14px;
      border-top: 1px solid rgba(255,255,255,.12);
      border-left: 2px solid rgba(0,168,150,.35);
    }
    .org-branch-links a {
      font-family: var(--font-body);
      font-size: .82rem;
      font-weight: 500;
      color: rgba(255,255,255,.55);
      text-decoration: none;
      line-height: 1.4;
      position: relative;
      padding-left: 12px;
      transition: color var(--ease), padding-left var(--ease);
    }
    .org-branch-links a::before {
      content: '';
      position: absolute;
      left: 0;
      top: .55em;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: rgba(255,255,255,.28);
    }
    .org-branch-links a:hover {
      color: rgba(255,255,255,.9);
      padding-left: 16px;
    }
    .org-branch-links a:hover::before { background: var(--teal-light); }
    .org-branch-sublinks {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-left: 12px;
      padding-left: 12px;
      border-left: 2px solid rgba(0,168,150,.28);
    }
    .org-block {
      margin-top: 44px;
      padding-top: 36px;
      border-top: 1px solid var(--border);
    }
    .org-hosp-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
    .org-hosp {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 16px 18px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      text-decoration: none;
      color: var(--navy);
      font-family: var(--font-head);
      font-size: .88rem;
      font-weight: 700;
      transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
    }
    .org-hosp i { color: var(--teal); font-size: 1.25rem; }
    .org-hosp:hover {
      border-color: rgba(0,168,150,.4);
      box-shadow: var(--shadow-sm);
      transform: translateY(-2px);
      color: var(--navy);
    }
    .org-naming {
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      overflow: hidden;
      background: #fff;
    }
    .org-name-row {
      display: grid;
      grid-template-columns: 140px 1fr;
      gap: 0;
      border-bottom: 1px solid var(--border);
    }
    .org-name-row:last-child { border-bottom: none; }
    .org-name-level {
      background: var(--navy);
      color: var(--gold-light);
      font-family: var(--font-head);
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      padding: 18px 16px;
    }
    .org-name-detail {
      padding: 16px 18px;
    }
    .org-name-detail strong {
      display: block;
      font-family: var(--font-head);
      font-size: .92rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.4;
      margin-bottom: 4px;
    }
    .org-name-detail span {
      font-family: var(--font-body);
      font-size: .82rem;
      font-weight: 500;
      color: var(--gray-mid);
    }
    @media (max-width: 991.98px) {
      .org-branches { grid-template-columns: 1fr; }
    }
    @media (max-width: 575.98px) {
      .org-hosp-grid { grid-template-columns: 1fr; }
      .org-name-row { grid-template-columns: 1fr; }
      .org-name-level { padding: 10px 14px; }
    }

    .feat-row { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 18px; }
    .feat-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      background: var(--teal-pale);
      border: 1px solid rgba(0,168,150,.2);
      border-radius: var(--r-sm);
      display: flex; align-items: center; justify-content: center;
      color: var(--teal); font-size: 1.05rem;
    }
    .feat-title { font-family: 'Montserrat', sans-serif; font-size: .87rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
    .feat-text  { font-family: 'Quicksand', sans-serif; font-size: .8rem; color: var(--gray-mid); line-height: 1.55; font-weight: 500; }

    /* ── PROGRAMS ── */
    .prog-tag { margin-right: 5px; margin-bottom: 5px; }

    /* ── CAMPUS MOSAIC ── */
    .campus-mosaic {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 175px;
      gap: 14px;
    }
    .campus-tile {
      border-radius: var(--r-md);
      overflow: hidden;
      position: relative;
      cursor: default;
    }
    .campus-tile.big { grid-column: span 2; grid-row: span 2; }
    .ct-inner {
      width: 100%; height: 100%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 9px;
      padding: 20px;
      transition: transform .35s ease;
    }
    .campus-tile:hover .ct-inner {
      transform: scale(1.04);
      /* background: rgba(0,0,0,0.3); */
    }
    .ct-bg-1 { background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('../images/campus/pmc-building.jpg'); background-size: cover; background-position: center; }
    .ct-bg-2 { background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('../images/campus/library.jpg'); background-size: cover; background-position: center; }
    .ct-bg-3 { background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('../images/campus/gym.jpg'); background-size: cover; background-position: center; }
    .ct-bg-4 { background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('../images/campus/cafe.jpg'); background-size: cover; background-position: center; }
    .ct-bg-5 { background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('../images/campus/hostel.jpg'); background-size: cover; background-position: center; }
    .ct-bg-6 { background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('../images/campus/mosque.jpg'); background-size: cover; background-position: center; }
    .ct-bg-7 { background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('../images/campus/transport.jpg'); background-size: cover; background-position: center; }
    .ct-bg-8 { background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('../images/campus/daycare.jpg'); background-size: cover; background-position: center; }
    .ct-bg-9 { background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('../images/campus/first-aid.webp'); background-size: cover; background-position: center; }
    .ct-ico { font-size: 1.7rem; color: rgba(255,255,255,.85); }
    .campus-tile.big .ct-ico { font-size: 3rem; }
    .ct-lbl { font-family: 'Montserrat', sans-serif; font-size: .76rem; font-weight: 700; color: rgba(255,255,255,.8); text-align: center; }
    .campus-tile.big .ct-lbl { font-size: 1.05rem; }

    /* ── HUB HOME ORG STRUCTURE ── */
    .home-org-follow {
      margin-top: 0;
      padding: 32px 20px 28px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      max-width: 100%;
      overflow: hidden;
    }
    .home-org-follow-head {
      text-align: center;
      margin-bottom: 28px;
    }
    .home-org-follow-head h3 {
      margin: 0;
      font-family: var(--font-head);
      font-size: clamp(1.35rem, 2.4vw, 1.7rem);
      font-weight: 800;
      color: var(--navy);
      letter-spacing: -.02em;
    }
    .home-org-chart {
      --org-line: rgba(10, 22, 40, .22);
      --org-gap: 28px;
      max-width: 100%;
      overflow: hidden;
      padding: 4px 0 8px;
    }
    .home-org-chart ul {
      display: flex;
      justify-content: center;
      position: relative;
      padding: var(--org-gap) 0 0;
      margin: 0;
      list-style: none;
      width: 100%;
      max-width: 100%;
    }
    .home-org-chart li {
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      padding: var(--org-gap) 6px 0;
      min-width: 0;
      flex: 1 1 0;
    }
    .home-org-chart > ul { padding-top: 0; }
    .home-org-chart > ul > li {
      padding-top: 0;
      flex: 1 1 auto;
      width: 100%;
    }

    .home-org-chart li > ul::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      width: 2px;
      height: var(--org-gap);
      margin-left: -1px;
      background: var(--org-line);
    }

    .home-org-chart li::before,
    .home-org-chart li::after {
      content: '';
      position: absolute;
      top: 0;
      height: var(--org-gap);
      width: 50%;
    }
    .home-org-chart li::before {
      right: 50%;
      border-top: 2px solid var(--org-line);
    }
    .home-org-chart li::after {
      left: 50%;
      border-top: 2px solid var(--org-line);
      border-left: 2px solid var(--org-line);
    }
    .home-org-chart > ul > li::before,
    .home-org-chart > ul > li::after {
      content: none;
    }
    .home-org-chart li:first-child::before { border-top: none; }
    .home-org-chart li:last-child::after { border-top: none; }
    .home-org-chart li:only-child::before {
      content: none;
    }
    .home-org-chart li:only-child::after {
      right: auto;
      left: 50%;
      width: 0;
      border-top: none;
      border-left: 2px solid var(--org-line);
    }
    .home-org-chart > ul > li:only-child::after {
      content: none;
    }

    .home-org-chart .org-node {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      text-decoration: none;
      color: inherit;
      position: relative;
      z-index: 1;
      min-height: 64px;
      min-width: 0;
      max-width: 100%;
      box-sizing: border-box;
      padding: 12px 14px;
      border-radius: 10px;
      background: #fff;
      border: 1px solid var(--border);
      box-shadow: 0 4px 14px rgba(10, 22, 40, .06);
      transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
    }
    .home-org-chart a.org-node:hover {
      transform: translateY(-2px);
      border-color: var(--teal);
      box-shadow: 0 8px 22px rgba(10, 22, 40, .1);
    }
    .home-org-chart .org-node span {
      display: block;
      font-family: var(--font-head);
      font-size: .62rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 4px;
    }
    .home-org-chart .org-node strong {
      display: block;
      font-family: var(--font-head);
      font-size: .92rem;
      font-weight: 700;
      line-height: 1.3;
      color: var(--navy);
    }
    .home-org-chart a.org-node:hover strong { color: var(--teal); }

    .home-org-chart .org-node-root {
      width: auto;
      max-width: 100%;
      min-width: 0;
      padding: 18px 28px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
      border-color: transparent;
      box-shadow: 0 10px 28px rgba(10, 22, 40, .22);
    }
    .home-org-chart .org-node-root span { color: var(--gold-light); }
    .home-org-chart .org-node-root strong {
      color: #fff;
      font-size: 1.05rem;
    }

    .home-org-chart .org-node-dept {
      width: 100%;
      max-width: 220px;
      min-width: 0;
      min-height: 78px;
      border-top: 3px solid var(--teal);
    }
    .home-org-chart .org-node-dept strong { font-size: .95rem; }

    .home-org-chart .org-node-unit {
      width: 100%;
      max-width: 176px;
      min-width: 0;
      min-height: 70px;
      padding: 10px 12px;
      background: var(--off-white);
    }
    .home-org-chart .org-node-unit strong { font-size: .82rem; }
    .home-org-chart .org-node-unit.is-soon {
      background: transparent;
      border-style: dashed;
      box-shadow: none;
    }
    .home-org-chart .org-node-unit.is-soon span,
    .home-org-chart .org-node-unit.is-soon strong {
      color: var(--gray-mid);
    }
    .home-org-chart .org-node-leaf {
      width: 100%;
      max-width: none;
      min-width: 0;
      min-height: 48px;
      padding: 8px 8px;
      background: #fff;
    }
    .home-org-chart .org-node-leaf strong {
      font-size: .74rem;
      font-weight: 700;
    }
    .home-org-chart ul.org-pair {
      flex-direction: row;
      justify-content: center;
      align-items: stretch;
      width: 100%;
      max-width: 100%;
    }
    .home-org-chart ul.org-pair > li {
      flex: 1 1 0;
      min-width: 0;
      padding-left: 4px;
      padding-right: 4px;
    }

    @media (max-width: 991.98px) {
      .home-org-follow { margin-top: 0; padding: 24px 16px 20px; }
      .home-org-chart { --org-gap: 18px; }
      .home-org-chart ul {
        flex-direction: column;
        align-items: stretch;
        padding-top: 0;
        padding-left: 18px;
      }
      .home-org-chart > ul { padding-left: 0; }
      .home-org-chart li {
        align-items: stretch;
        padding: 14px 0 0 8px;
      }
      .home-org-chart > ul > li { padding: 0; }
      .home-org-chart li::before,
      .home-org-chart li::after,
      .home-org-chart li > ul::before,
      .home-org-chart li:only-child::after {
        content: none;
      }
      .home-org-chart li > ul {
        border-left: 2px solid var(--org-line);
        margin: 8px 0 0 18px;
        padding-left: 14px;
      }
      .home-org-chart ul.org-pair {
        flex-direction: column;
      }
      .home-org-chart .org-node,
      .home-org-chart .org-node-root,
      .home-org-chart .org-node-dept,
      .home-org-chart .org-node-unit,
      .home-org-chart .org-node-leaf {
        width: 100%;
        min-width: 0;
        align-items: flex-start;
        text-align: left;
      }
    }

    /* ── PG MEDICAL EDUCATION PAGE ── */
    #basic-sciences,
    #clinical-sciences,
    #diploma,
    #faculty {
      scroll-margin-top: 110px;
    }
    .pg-stream-card {
      display: block;
      height: 100%;
      padding: 24px 22px 22px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      text-decoration: none;
      color: inherit;
      transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
    }
    .pg-stream-card:hover {
      transform: translateY(-3px);
      border-color: rgba(0,168,150,.4);
      box-shadow: var(--shadow-sm);
      color: inherit;
    }
    .pg-stream-card span {
      display: block;
      font-family: var(--font-head);
      font-size: .64rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 8px;
    }
    .pg-stream-card strong {
      display: block;
      font-family: var(--font-head);
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .pg-stream-card p {
      margin: 0;
      font-family: var(--font-body);
      font-size: .88rem;
      color: var(--gray-mid);
      line-height: 1.6;
    }
    .pg-panel {
      height: 100%;
      padding: 26px 24px;
      background:
        linear-gradient(180deg, rgba(0,168,150,.04) 0%, transparent 40%),
        #fff;
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
    }
    .pg-panel-label {
      display: inline-block;
      font-family: var(--font-head);
      font-size: .68rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 14px;
      padding-bottom: 10px;
      border-bottom: 2px solid rgba(0,168,150,.28);
    }
    .pg-subhead {
      margin: 18px 0 10px;
      font-family: var(--font-head);
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--gray-mid);
    }
    .pg-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .pg-chip {
      display: inline-flex;
      align-items: center;
      padding: 7px 12px;
      font-family: var(--font-head);
      font-size: .72rem;
      font-weight: 700;
      color: var(--navy);
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 999px;
      line-height: 1.2;
    }
    .pg-director {
      display: flex;
      align-items: center;
      gap: 16px;
      margin: 0 0 28px;
      padding: 18px 20px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
    }
    .pg-director-ico {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--navy);
      color: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      flex-shrink: 0;
    }
    .pg-director span {
      display: block;
      font-family: var(--font-head);
      font-size: .68rem;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 4px;
    }
    .pg-director strong {
      display: block;
      font-family: var(--font-head);
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--navy);
      line-height: 1.3;
    }
    .pg-staff-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-top: 18px;
      margin-bottom: 8px;
    }
    .pg-staff-card {
      padding: 16px 18px 14px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--r-md, 12px);
    }
    .pg-staff-card h4 {
      font-family: var(--font-head);
      font-size: .82rem;
      font-weight: 800;
      color: var(--navy);
      margin: 0 0 10px;
      padding-bottom: 8px;
      border-bottom: 2px solid rgba(0,168,150,.28);
    }
    .pg-staff-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .pg-staff-list li {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      font-family: var(--font-body);
      font-size: .88rem;
      font-weight: 600;
      color: var(--gray-dark, #2c3a4a);
      padding: 6px 0;
      border-bottom: 1px solid var(--border);
    }
    .pg-staff-list li:last-child { border-bottom: none; padding-bottom: 0; }
    .pg-qual {
      flex-shrink: 0;
      font-family: var(--font-head);
      font-size: .62rem;
      font-weight: 800;
      letter-spacing: .04em;
      text-transform: uppercase;
      color: var(--teal);
      background: rgba(0,168,150,.1);
      padding: 3px 8px;
      border-radius: 999px;
    }
    @media (max-width: 767.98px) {
      .pg-staff-grid { grid-template-columns: 1fr; }
    }

    /* ── HUB DEPARTMENT CARDS ── */
    .hub-dept-card {
      display: flex;
      flex-direction: column;
      padding: 30px 26px 28px;
      height: 100%;
      background:
        linear-gradient(180deg, rgba(0, 168, 150, .04) 0%, transparent 42%),
        #fff;
    }
    .hub-dept-card::before { opacity: 1; }
    .hub-dept-code {
      display: inline-block;
      font-family: var(--font-head);
      font-size: .68rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 12px;
      padding-bottom: 10px;
      border-bottom: 2px solid rgba(0, 168, 150, .28);
      align-self: flex-start;
    }
    .hub-dept-card h4 {
      font-size: 1.2rem;
      line-height: 1.28;
      letter-spacing: -.01em;
      margin-bottom: 14px;
    }
    .hub-dept-card p {
      flex: 1;
      margin-bottom: 0;
      font-size: .9rem;
      line-height: 1.75;
    }
    .hub-dept-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 20px 0 22px;
    }
    .hub-dept-btn {
      font-size: .8rem;
      padding: 10px 18px;
      align-self: flex-start;
      margin-top: auto;
    }
    .hub-dept-card:hover {
      border-color: rgba(0, 168, 150, .35);
    }

    /* ── NEWS ── */
    .news-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      overflow: hidden;
      height: 100%;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
    }
    .news-card::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 4px;
      background: var(--teal);
    }
    .news-card--career::before { background: var(--gold); }
    .news-card--admissions::before { background: var(--teal); }
    .news-card--campus::before { background: var(--navy); }
    .news-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: rgba(0,168,150,.3);
    }
    .nc-cat {
      font-family: 'Montserrat', sans-serif;
      font-size: .65rem;
      font-weight: 800;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 5px 10px;
      border-radius: 6px;
      background: var(--teal);
      color: #fff;
    }
    .nc-cat-career { background: var(--gold-pale); color: #8a6d1f; border: 1px solid rgba(201,168,76,.35); }
    .nc-cat-admissions { background: var(--teal-pale); color: var(--teal); border: 1px solid rgba(0,168,150,.25); }
    .nc-cat-news { background: var(--gray-light); color: var(--navy); border: 1px solid var(--border); }
    .nc-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 14px;
    }
    .nc-body {
      padding: 26px 24px 22px 28px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .nc-date {
      font-family: 'Quicksand', sans-serif;
      font-size: .72rem;
      font-weight: 700;
      color: var(--gray-mid);
      display: inline-flex;
      align-items: center;
      gap: 5px;
      white-space: nowrap;
    }
    .nc-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.08rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.35;
      margin: 0 0 14px;
      min-height: 2.7em;
    }
    .nc-excerpt {
      font-family: var(--font-body);
      font-size: .9rem;
      font-weight: 500;
      line-height: 1.65;
      color: var(--gray-mid, #5a6a7a);
      margin: 0 0 18px;
      flex: 1;
    }
    .nc-deadline {
      font-family: 'Quicksand', sans-serif;
      font-size: .84rem;
      font-weight: 600;
      color: var(--gray-dark);
      background: var(--off-white);
      border-radius: 8px;
      padding: 10px 12px;
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 0 0 18px;
    }
    .nc-deadline i { color: var(--gold); font-size: .95rem; }
    .nc-deadline strong { color: var(--navy); font-weight: 700; }
    .hub-career-portal-card .nc-title { min-height: 0; }
    .nc-actions {
      margin-top: auto;
      padding-top: 16px;
      border-top: 1px solid var(--border);
      display: flex;
      gap: 10px;
    }
    .nc-actions-split { display: grid; grid-template-columns: 1fr 1fr; }
    .nc-btn {
      font-family: 'Montserrat', sans-serif;
      font-size: .76rem;
      font-weight: 700;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 11px 14px;
      border-radius: 8px;
      transition: background var(--ease), color var(--ease), border-color var(--ease);
      white-space: nowrap;
    }
    .nc-btn-primary {
      background: var(--navy);
      color: #fff;
      border: 1px solid var(--navy);
      flex: 1;
    }
    .nc-btn-primary:hover {
      background: var(--teal);
      border-color: var(--teal);
      color: #fff;
    }
    .nc-btn-form {
      background: #fff;
      color: var(--navy);
      border: 1px solid var(--border);
    }
    .nc-btn-form i { color: var(--teal); }
    .nc-btn-form:hover {
      border-color: var(--teal);
      background: var(--teal-pale);
      color: var(--navy);
    }

    /* ── HOSPITALS ── */
    .hosp-card {
      position: relative;
      display: flex;
      flex-direction: column;
      height: 100%;
      padding: 28px 24px 26px;
      text-decoration: none;
      color: inherit;
      background:
        linear-gradient(165deg, rgba(255,255,255,.07) 0%, rgba(255,255,255,.02) 55%),
        rgba(8, 16, 28, .35);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--r-lg, 14px);
      overflow: hidden;
      transition: border-color var(--ease), background var(--ease), transform var(--ease), box-shadow var(--ease);
    }
    .hosp-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--teal));
      opacity: .85;
      transition: opacity var(--ease), height var(--ease);
    }
    .hosp-card:hover {
      border-color: rgba(0, 168, 150, .45);
      background:
        linear-gradient(165deg, rgba(255,255,255,.1) 0%, rgba(0,168,150,.14) 100%),
        rgba(8, 16, 28, .4);
      transform: translateY(-6px);
      box-shadow: 0 22px 48px rgba(0,0,0,.28);
      color: inherit;
    }
    .hosp-card:hover::before {
      opacity: 1;
      height: 4px;
    }
    .hosp-code {
      display: inline-block;
      align-self: flex-start;
      font-family: 'Montserrat', sans-serif;
      font-size: .66rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 12px;
      padding-bottom: 9px;
      border-bottom: 1px solid rgba(224, 192, 104, .35);
    }
    .hosp-name {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      margin: 0 0 10px;
      letter-spacing: -.015em;
      line-height: 1.3;
    }
    .hosp-desc {
      font-family: 'Quicksand', sans-serif;
      font-size: .82rem;
      color: rgba(255,255,255,.62);
      line-height: 1.7;
      font-weight: 500;
      flex: 1;
      margin: 0;
    }
    .hosp-link {
      font-family: 'Montserrat', sans-serif;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .04em;
      text-transform: uppercase;
      color: var(--gold-light);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 18px;
      transition: gap var(--ease), color var(--ease);
    }
    .hosp-card:hover .hosp-link {
      gap: 12px;
      color: #fff;
    }

    /* ── BACK TO TOP ── */
    #backToTop {
      position: fixed; bottom: 28px; right: 28px;
      width: 44px; height: 44px;
      background: var(--teal);
      color: white; border: none; border-radius: 10px;
      font-size: 1.1rem;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; z-index: 999;
      opacity: 0; transform: translateY(10px);
      transition: opacity var(--ease), transform var(--ease), background var(--ease);
      box-shadow: 0 4px 18px rgba(0,168,150,.35);
    }
    #backToTop.visible { opacity: 1; transform: translateY(0); }
    #backToTop:hover { background: var(--navy); }

    /* responsive mosaic */
    @media (max-width: 991.98px) {
      .campus-mosaic { grid-template-columns: repeat(2,1fr); }
      .campus-tile.big { grid-column: span 2; grid-row: span 1; }
    }
    @media (max-width: 575.98px) {
      .campus-mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
      .slider-dot-label { font-size: .62rem; }
    }
    
    
    /* Gallery CSS */
    
    /*  FILTER TABS  */
    .gallery-filters {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 40px;
      justify-content: center;
    }
    .gf-btn {
      font-family: var(--font-head);
      font-size: .78rem;
      font-weight: 700;
      padding: 9px 22px;
      border-radius: 100px;
      border: 2px solid var(--border);
      background: white;
      color: var(--gray-dark);
      cursor: pointer;
      transition: all .2s;
      letter-spacing: .02em;
    }
    .gf-btn:hover  { border-color: var(--teal); color: var(--teal); }
    .gf-btn.active { background: var(--teal); border-color: var(--teal); color: white; }

    /*  GALLERY GRID  */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }
    .gallery-item {
      position: relative;
      border-radius: var(--r-md);
      overflow: hidden;
      aspect-ratio: 1;
      cursor: pointer;
      background: var(--gray-light);
      transition: transform .3s, box-shadow .3s;
    }
    .gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }

    /* Span variants */
    .gallery-item.span-2     { grid-column: span 2; aspect-ratio: 2/1; }
    .gallery-item.span-2-row { grid-row: span 2; aspect-ratio: 1/2; }

    .gallery-img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .4s;
    }
    .gallery-item:hover .gallery-img { transform: scale(1.06); }

    /* Placeholder (when no image) */
    .gallery-placeholder {
      width: 100%; height: 100%;
      background: linear-gradient(135deg, var(--navy), var(--navy-mid));
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 10px;
      transition: filter .3s;
    }
    .gallery-placeholder i    { font-size: 2rem; color: rgba(255,255,255,.5); }
    .gallery-placeholder span { font-family: var(--font-head); font-size: .75rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .08em; }

    /* Overlay */
    .gallery-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(10,22,40,.85) 0%, transparent 55%);
      opacity: 0;
      transition: opacity .25s;
      display: flex; align-items: flex-end;
      padding: 18px;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-overlay-text {
      font-family: var(--font-head);
      font-size: .82rem;
      font-weight: 700;
      color: white;
      line-height: 1.3;
    }
    .gallery-overlay-cat {
      font-family: var(--font-body);
      font-size: .68rem;
      font-weight: 700;
      color: var(--teal-light);
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-bottom: 3px;
    }
    /* Zoom icon badge */
    .gallery-zoom {
      position: absolute;
      top: 12px; right: 12px;
      width: 32px; height: 32px;
      background: rgba(255,255,255,.15);
      backdrop-filter: blur(8px);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: white; font-size: .9rem;
      opacity: 0; transition: opacity .25s;
    }
    .gallery-item:hover .gallery-zoom { opacity: 1; }

    /*  LIGHTBOX  */
    .pmc-lightbox {
      position: fixed; inset: 0;
      background: rgba(6,14,26,.96);
      z-index: 9999;
      display: none;
      align-items: center;
      justify-content: center;
    }
    .pmc-lightbox.open { display: flex; animation: lbFade .25s ease; }
    @keyframes lbFade { from{opacity:0} to{opacity:1} }

    .lb-inner {
      position: relative;
      max-width: 90vw;
      max-height: 90vh;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .lb-img-wrap {
      position: relative;
      border-radius: var(--r-md);
      overflow: hidden;
      box-shadow: 0 24px 80px rgba(0,0,0,.6);
    }
    .lb-img {
      max-width: 88vw;
      max-height: 76vh;
      object-fit: contain;
      display: block;
    }
    /* Placeholder in lightbox */
    .lb-placeholder {
      width: 600px; max-width: 88vw;
      height: 400px; max-height: 76vh;
      background: linear-gradient(135deg, var(--navy), var(--navy-mid));
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 14px;
    }
    .lb-placeholder i    { font-size: 3rem; color: rgba(255,255,255,.4); }
    .lb-placeholder span { font-family:var(--font-head); font-size:.8rem; color:rgba(255,255,255,.35); }

    .lb-caption {
      margin-top: 16px;
      text-align: center;
    }
    .lb-caption-title {
      font-family: var(--font-head);
      font-size: .95rem;
      font-weight: 700;
      color: white;
      margin-bottom: 3px;
    }
    .lb-caption-cat {
      font-family: var(--font-body);
      font-size: .75rem;
      color: var(--teal-light);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .07em;
    }
    .lb-counter {
      font-family: var(--font-body);
      font-size: .75rem;
      color: rgba(255,255,255,.35);
      margin-top: 6px;
    }

    /* Controls */
    .lb-close {
      position: absolute;
      top: -48px; right: 0;
      width: 40px; height: 40px;
      background: rgba(255,255,255,.1);
      border: none; border-radius: 8px;
      color: white; font-size: 1.1rem;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s;
    }
    .lb-close:hover { background: rgba(255,255,255,.2); }

    .lb-prev, .lb-next {
      position: fixed;
      top: 50%; transform: translateY(-50%);
      width: 48px; height: 48px;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 50%;
      color: white; font-size: 1.2rem;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s;
    }
    .lb-prev { left: 20px; }
    .lb-next { right: 20px; }
    .lb-prev:hover, .lb-next:hover { background: rgba(0,168,150,.5); }

    /*  ALBUM SECTION HEADING  */
    .album-heading {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 22px;
      padding-bottom: 14px;
      border-bottom: 2px solid var(--border);
    }
    .album-heading-icon {
      width: 44px; height: 44px;
      background: var(--navy);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-size: 1.2rem;
      flex-shrink: 0;
    }
    .album-title {
      font-family: var(--font-head);
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--navy);
    }
    .album-count {
      font-family: var(--font-body);
      font-size: .75rem;
      font-weight: 700;
      color: white;
      background: var(--teal);
      padding: 2px 10px;
      border-radius: 100px;
    }

    /*  EMPTY STATE  */
    .gallery-empty {
      text-align: center;
      padding: 70px 0;
    }
    .gallery-empty i { font-size: 3rem; color: var(--gray-light); margin-bottom: 14px; display: block; }

    /*  BACK TO TOP  */
    #backToTop {
      position: fixed; bottom: 28px; right: 28px;
      width: 44px; height: 44px; background: var(--teal);
      color: white; border: none; border-radius: 10px; font-size: 1.1rem;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; z-index: 999; opacity: 0; transform: translateY(10px);
      transition: opacity .25s, transform .25s, background .2s;
      box-shadow: 0 4px 18px rgba(0,168,150,.35);
    }
    #backToTop.visible { opacity: 1; transform: translateY(0); }
    #backToTop:hover   { background: var(--navy); }

    /*  RESPONSIVE  */
    @media (max-width: 991.98px) {
      .gallery-grid { grid-template-columns: repeat(3,1fr); }
      .gallery-item.span-2 { grid-column: span 2; }
      .gallery-item.span-2-row { grid-row: span 1; aspect-ratio: 1; }
    }
    @media (max-width: 767.98px) {
      .gallery-grid { grid-template-columns: repeat(2,1fr); }
      .gallery-item.span-2     { grid-column: span 2; }
      .gallery-item.span-2-row { grid-row: span 1; aspect-ratio: 1; }
      .lb-prev, .lb-next { display: none; }
    }
    @media (max-width: 480px) {
      .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    }
  
    /*  FILTER TABS  */
    .gallery-filters {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 40px;
      justify-content: center;
    }
    .gf-btn {
      font-family: var(--font-head);
      font-size: .78rem;
      font-weight: 700;
      padding: 9px 22px;
      border-radius: 100px;
      border: 2px solid var(--border);
      background: white;
      color: var(--gray-dark);
      cursor: pointer;
      transition: all .2s;
      letter-spacing: .02em;
    }
    .gf-btn:hover  { border-color: var(--teal); color: var(--teal); }
    .gf-btn.active { background: var(--teal); border-color: var(--teal); color: white; }

    /*  GALLERY GRID  */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }
    .gallery-item {
      position: relative;
      border-radius: var(--r-md);
      overflow: hidden;
      aspect-ratio: 1;
      cursor: pointer;
      background: var(--gray-light);
      transition: transform .3s, box-shadow .3s;
    }
    .gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }

    /* Span variants */
    .gallery-item.span-2     { grid-column: span 2; aspect-ratio: 2/1; }
    .gallery-item.span-2-row { grid-row: span 2; aspect-ratio: 1/2; }

    .gallery-img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .4s;
    }
    .gallery-item:hover .gallery-img { transform: scale(1.06); }

    /* Placeholder (when no image) */
    .gallery-placeholder {
      width: 100%; height: 100%;
      background: linear-gradient(135deg, var(--navy), var(--navy-mid));
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 10px;
      transition: filter .3s;
    }
    .gallery-placeholder i    { font-size: 2rem; color: rgba(255,255,255,.5); }
    .gallery-placeholder span { font-family: var(--font-head); font-size: .75rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .08em; }

    /* Overlay */
    .gallery-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(10,22,40,.85) 0%, transparent 55%);
      opacity: 0;
      transition: opacity .25s;
      display: flex; align-items: flex-end;
      padding: 18px;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-overlay-text {
      font-family: var(--font-head);
      font-size: .82rem;
      font-weight: 700;
      color: white;
      line-height: 1.3;
    }
    .gallery-overlay-cat {
      font-family: var(--font-body);
      font-size: .68rem;
      font-weight: 700;
      color: var(--teal-light);
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-bottom: 3px;
    }
    /* Zoom icon badge */
    .gallery-zoom {
      position: absolute;
      top: 12px; right: 12px;
      width: 32px; height: 32px;
      background: rgba(255,255,255,.15);
      backdrop-filter: blur(8px);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: white; font-size: .9rem;
      opacity: 0; transition: opacity .25s;
    }
    .gallery-item:hover .gallery-zoom { opacity: 1; }

    /*  LIGHTBOX  */
    .pmc-lightbox {
      position: fixed; inset: 0;
      background: rgba(6,14,26,.96);
      z-index: 9999;
      display: none;
      align-items: center;
      justify-content: center;
    }
    .pmc-lightbox.open { display: flex; animation: lbFade .25s ease; }
    @keyframes lbFade { from{opacity:0} to{opacity:1} }

    .lb-inner {
      position: relative;
      max-width: 90vw;
      max-height: 90vh;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .lb-img-wrap {
      position: relative;
      border-radius: var(--r-md);
      overflow: hidden;
      box-shadow: 0 24px 80px rgba(0,0,0,.6);
    }
    .lb-img {
      max-width: 88vw;
      max-height: 76vh;
      object-fit: contain;
      display: block;
    }
    /* Placeholder in lightbox */
    .lb-placeholder {
      width: 600px; max-width: 88vw;
      height: 400px; max-height: 76vh;
      background: linear-gradient(135deg, var(--navy), var(--navy-mid));
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 14px;
    }
    .lb-placeholder i    { font-size: 3rem; color: rgba(255,255,255,.4); }
    .lb-placeholder span { font-family:var(--font-head); font-size:.8rem; color:rgba(255,255,255,.35); }

    .lb-caption {
      margin-top: 16px;
      text-align: center;
    }
    .lb-caption-title {
      font-family: var(--font-head);
      font-size: .95rem;
      font-weight: 700;
      color: white;
      margin-bottom: 3px;
    }
    .lb-caption-cat {
      font-family: var(--font-body);
      font-size: .75rem;
      color: var(--teal-light);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .07em;
    }
    .lb-counter {
      font-family: var(--font-body);
      font-size: .75rem;
      color: rgba(255,255,255,.35);
      margin-top: 6px;
    }

    /* Controls */
    .lb-close {
      position: absolute;
      top: -48px; right: 0;
      width: 40px; height: 40px;
      background: rgba(255,255,255,.1);
      border: none; border-radius: 8px;
      color: white; font-size: 1.1rem;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s;
    }
    .lb-close:hover { background: rgba(255,255,255,.2); }

    .lb-prev, .lb-next {
      position: fixed;
      top: 50%; transform: translateY(-50%);
      width: 48px; height: 48px;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 50%;
      color: white; font-size: 1.2rem;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s;
    }
    .lb-prev { left: 20px; }
    .lb-next { right: 20px; }
    .lb-prev:hover, .lb-next:hover { background: rgba(0,168,150,.5); }

    /*  ALBUM SECTION HEADING  */
    .album-heading {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 22px;
      padding-bottom: 14px;
      border-bottom: 2px solid var(--border);
    }
    .album-heading-icon {
      width: 44px; height: 44px;
      background: var(--navy);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-size: 1.2rem;
      flex-shrink: 0;
    }
    .album-title {
      font-family: var(--font-head);
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--navy);
    }
    .album-count {
      font-family: var(--font-body);
      font-size: .75rem;
      font-weight: 700;
      color: white;
      background: var(--teal);
      padding: 2px 10px;
      border-radius: 100px;
    }

    /*  EMPTY STATE */
    .gallery-empty {
      text-align: center;
      padding: 70px 0;
    }
    .gallery-empty i { font-size: 3rem; color: var(--gray-light); margin-bottom: 14px; display: block; }

    /*  BACK TO TOP */
    #backToTop {
      position: fixed; bottom: 28px; right: 28px;
      width: 44px; height: 44px; background: var(--teal);
      color: white; border: none; border-radius: 10px; font-size: 1.1rem;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; z-index: 999; opacity: 0; transform: translateY(10px);
      transition: opacity .25s, transform .25s, background .2s;
      box-shadow: 0 4px 18px rgba(0,168,150,.35);
    }
    #backToTop.visible { opacity: 1; transform: translateY(0); }
    #backToTop:hover   { background: var(--navy); }

    /*  RESPONSIVE  */
    @media (max-width: 991.98px) {
      .gallery-grid { grid-template-columns: repeat(3,1fr); }
      .gallery-item.span-2 { grid-column: span 2; }
      .gallery-item.span-2-row { grid-row: span 1; aspect-ratio: 1; }
    }
    @media (max-width: 767.98px) {
      .gallery-grid { grid-template-columns: repeat(2,1fr); }
      .gallery-item.span-2     { grid-column: span 2; }
      .gallery-item.span-2-row { grid-row: span 1; aspect-ratio: 1; }
      .lb-prev, .lb-next { display: none; }
    }
    @media (max-width: 480px) {
      .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    }
