/* ═══════════════════════════════════════════════════════════════
   index-interactive.css  —  Index page all component styles
   Fully mobile responsive, 2026 premium design
   Includes: 3D Tilt Cards (p26), Department Cards (v3), Livestock Cards
   ═══════════════════════════════════════════════════════════════ */

/* ── Layout helpers ── */
.ix-pad       { padding: 80px 0; }
.ix-sec-white { background: #fff; }
.ix-sec-light { background: #EEF4FB; }
.ix-title     { font-family: 'Outfit', sans-serif; font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 700; color: var(--primary); line-height: 1.25; margin-bottom: 0; }
.ix-title-white { color: #fff; }
.ix-label     { display: inline-block; color: #D4820A; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; font-family: 'Inter', sans-serif; }
.ix-bar       { width: 52px; height: 4px; background: linear-gradient(90deg,#D4820A,#FAD97A); border-radius: 2px; margin-top: 14px; }
.ix-bar.c     { margin-left: auto; margin-right: auto; }
.ix-bar.l     { margin-left: 0; }

/* ── Buttons ── */
.ix-btn-navy {
  display: inline-flex; align-items: center; gap: 8px;
  background: #1B4F8A; color: #fff; padding: 11px 26px;
  border-radius: 8px; font-weight: 600; font-size: .86rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: background .25s, transform .25s, box-shadow .25s;
}
.ix-btn-navy:hover { background: #2C4A6E; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(27,79,138,.28); text-decoration: none; }

.ix-btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg,#D4820A,#FAD97A); color: #1B4F8A;
  padding: 12px 30px; border-radius: 8px; font-weight: 700; font-size: .86rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: filter .25s, transform .25s, box-shadow .25s;
}
.ix-btn-gold:hover { filter: brightness(1.08); color: #1B4F8A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,130,10,.4); text-decoration: none; }

.ix-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,.3); color: #fff;
  padding: 10px 24px; border-radius: 8px; font-weight: 600; font-size: .86rem;
  text-decoration: none; background: transparent; cursor: pointer;
  transition: border-color .25s, color .25s;
}
.ix-btn-outline:hover { border-color: #D4820A; color: #FAD97A; text-decoration: none; }

/* ================================================================
   ADVANCED 3D P26 CARDS (DEPARTMENTS + LIVESTOCK)
   Uniform sizing, 3D tilt, gradient border, shimmer effects
   ================================================================ */

/* Card wrapper with 3D perspective */
.p26-card-wrapper {
  perspective: 1500px;
  margin-bottom: 40px;
  display: flex;
  height: 100%;
}

.p26-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 440px;
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.12s ease-out, box-shadow 0.35s ease, border-color 0.35s ease;
  transform-style: preserve-3d;
  border: 1px solid rgba(27, 79, 138, 0.12);
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  will-change: transform;
}

.p26-card:hover {
  box-shadow: 0 25px 60px rgba(27, 79, 138, 0.18);
  text-decoration: none;
}

/* Gradient Border Effect on Hover */
.p26-card::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(135deg, var(--p26c, #1B4F8A), rgba(255,255,255,0.55) 45%, var(--p26c, #1B4F8A));
  z-index: -1;
  border-radius: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.p26-card:hover::before {
  opacity: 1;
}

/* Immersive Top Section */
.p26-card-top {
  position: relative;
  height: 180px;
  overflow: hidden;
  transform: translateZ(30px); /* 3D pop */
}

.p26-card-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 1s ease;
}

.p26-card:hover .p26-card-top img {
  transform: scale(1.1);
}

/* Shimmer Hover Effect */
.p26-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255,255,255,0.4) 50%,
    transparent 80%
  );
  transform: translateX(-150%);
  z-index: 2;
  pointer-events: none;
}

.p26-card:hover .p26-shimmer {
  animation: p26-shimmer-move 1.2s forwards;
}

@keyframes p26-shimmer-move {
  to { transform: translateX(150%); }
}

/* Card Body */
.p26-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
  transform: translateZ(20px);
}

.p26-card-category {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--p26c, #D4820A);
  margin-bottom: 8px;
}

.p26-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0a2342;
  margin-bottom: 6px;
  line-height: 1.3;
}

.p26-card-hod {
  font-size: 0.78rem;
  font-weight: 700;
  color: #1B4F8A;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.p26-card-desc {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Stats Row */
.p26-card-stats {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.p26-stat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #475569;
}

.p26-stat i {
  color: var(--p26c, #1B4F8A);
}

/* Floating Action Button */
.p26-card-btn {
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  background: var(--p26c, #1B4F8A);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  transform: translateZ(40px);
}


/* ================================================================
   VET-THEME DEPARTMENT CARDS — homepage academic section
   ================================================================ */
.vt-dept-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 360px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(27, 79, 138, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  color: #0a2342 !important;
  text-decoration: none !important;
  box-shadow: 0 14px 34px rgba(27, 79, 138, 0.08);
  transition: transform .12s ease-out, box-shadow .35s ease, border-color .35s ease;
}

.vt-dept-card::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--p26c, #1B4F8A), rgba(255,255,255,.9) 48%, #D4820A);
  opacity: 0;
  transition: opacity .35s ease;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.vt-dept-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.34) 50%, transparent 80%);
  transform: translateX(-160%);
  pointer-events: none;
  opacity: 0;
}

.vt-dept-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 130, 10, 0.35);
  box-shadow: 0 24px 56px rgba(27, 79, 138, 0.16);
}

.vt-dept-card:hover::before {
  opacity: 1;
}

.vt-dept-card:hover::after {
  opacity: 1;
  animation: vt-dept-shimmer 1.15s ease forwards;
}

.vt-dept-media {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.78), transparent 34%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.55), transparent 58%),
    linear-gradient(135deg, color-mix(in srgb, var(--p26c, #1B4F8A) 88%, white 12%), #0a2342);
}

.vt-dept-media::before,
.vt-dept-media::after {
  content: '';
  position: absolute;
  inset: 16px;
  border-radius: 22px;
  pointer-events: none;
}

.vt-dept-media::before {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,0));
}

.vt-dept-media::after {
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.10), transparent 60%);
}

.vt-dept-media--icon:hover,
.vt-dept-card:hover .vt-dept-media--icon {
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.88), transparent 34%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.62), transparent 58%),
    linear-gradient(135deg, color-mix(in srgb, var(--p26c, #1B4F8A) 75%, #0a2342 25%), #0a2342);
}

.vt-dept-orb {
  position: relative;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,.08));
  box-shadow:
    0 0 0 1px rgba(255,255,255,.22) inset,
    0 18px 30px rgba(0,0,0,.14),
    0 0 0 10px rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
  transform: translateZ(30px);
}

.vt-dept-orb i {
  position: relative;
  z-index: 2;
  font-size: 3.55rem;
  color: #FAD97A;
  text-shadow: 0 2px 18px rgba(0,0,0,.2);
}

.vt-dept-orb-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.28);
  animation: vt-orb-pulse 2.8s ease-in-out infinite;
}

.vt-dept-orb-ring.ring-2 {
  inset: -18px;
  animation-delay: .45s;
  opacity: .7;
}

.vt-dept-orb-ring.ring-3 {
  inset: -28px;
  animation-delay: .9s;
  opacity: .45;
}

.vt-dept-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(10, 35, 66, 0.74);
  color: #FAD97A;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.vt-dept-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px 20px 22px;
}

.vt-dept-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.vt-dept-chip {
  color: #D4820A;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.vt-dept-link-icon {
  color: rgba(27, 79, 138, 0.42);
  transition: transform .3s ease, color .3s ease;
}

.vt-dept-card:hover .vt-dept-link-icon {
  transform: translateX(3px);
  color: #D4820A;
}

.vt-dept-card:hover .vt-dept-orb {
  transform: translateZ(30px) scale(1.08);
}

.vt-dept-title {
  font-size: 1.04rem;
  line-height: 1.28;
  margin-bottom: 10px;
}

.vt-dept-desc {
  font-size: .82rem;
  color: #5f6f86;
  line-height: 1.62;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4.85em;
}

@keyframes vt-dept-shimmer {
  from { transform: translateX(-160%); }
  to { transform: translateX(160%); }
}

@keyframes vt-orb-pulse {
  0%, 100% { transform: scale(1); opacity: .55; }
  50% { transform: scale(1.08); opacity: 1; }
}
.p26-card:hover .p26-card-btn {
  transform: translateZ(50px) scale(1.1);
  background: #0a2342;
}

/* Department-specific p26 cards */
.p26-dept-card {
  min-height: 520px;
  height: 100%;
  will-change: transform;
}

.p26-dept-card .p26-card-top {
  height: 180px;
}

.p26-dept-card .p26-card-top img {
  object-position: center top;
}

.p26-dept-card .p26-card-body {
  padding: 22px 24px 24px;
}

.p26-dept-card .p26-card-desc {
  margin-bottom: 16px;
  -webkit-line-clamp: 3;
  min-height: 4.8em;
}

.p26-dept-card .p26-card-stats {
  margin-top: auto;
  padding-top: 0;
  border-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.p26-dept-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  border: 1px solid rgba(27, 79, 138, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.p26-dept-stat span {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
}

.p26-dept-stat strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0a2342;
  line-height: 1.1;
}

/* ================================================================
   2026 MINIMALIST DEEP-NAVY & GOLDEN 3D CARDS (.ix-dept-card-v3)
   For Department Grid Alternative Style
   ================================================================ */
.ix-dept-card-v3 {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a2342;
  border: 2px solid #000000;
  border-radius: 14px;
  padding: 24px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  text-decoration: none !important;
  color: #ffffff !important;
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1;
}

/* Premium radial backdrop spotlight aura */
.ix-dept-card-v3::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 20px;
  background: radial-gradient(circle, #D4820A 0%, transparent 70%);
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ix-dept-card-v3:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: #D4820A !important;
  box-shadow: 0 16px 36px rgba(212, 130, 10, 0.24), 0 0 15px rgba(212, 130, 10, 0.12);
}

.ix-dept-card-v3:hover::before {
  opacity: 0.18;
}

.ix-dept-card-v3-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 100%;
}

.ix-dept-card-v3-icon {
  font-size: 1.6rem;
  color: #FAD97A;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ix-dept-card-v3:hover .ix-dept-card-v3-icon {
  transform: translateY(-3px) scale(1.15);
}

.ix-dept-card-v3-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.45;
  text-align: center;
  transition: color 0.3s;
}

.ix-dept-card-v3:hover .ix-dept-card-v3-name {
  color: #FAD97A;
}

.ix-dept-card-v3-arrow {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 4px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.ix-dept-card-v3:hover .ix-dept-card-v3-arrow {
  transform: translateX(4px);
  color: #FAD97A;
}

/* Responsive adjustments for cards */
@media (max-width: 767px) {
  .p26-card { min-height: 410px; }
  .p26-card-top { height: 180px; }
  .ix-dept-card-v3 { padding: 18px 12px; }
  .ix-dept-card-v3-name { font-size: 0.8rem; }
  .ix-dept-card-v3-icon { font-size: 1.3rem; }
  .vt-dept-card { min-height: 360px; }
  .vt-dept-media { min-height: 170px; }
  .vt-dept-orb { width: 108px; height: 108px; }
  .vt-dept-orb i { font-size: 2.95rem; }
  .vt-dept-content { padding: 16px 16px 18px; }
}

/* ================================================================
   VISION / MISSION / VALUES CARDS (Glassmorphism)
   ================================================================ */
.ix-vm-panels { width: 100%; }
.ix-vm-panel {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 4px 24px rgba(27,79,138,.07);
  display: none;
  flex-direction: column;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}
.ix-vm-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1B4F8A, #D4820A);
}
.ix-vm-panel.active { display: flex; }
.ix-vm-panel:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(27,79,138,.12); }

.ix-vm-panel-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg,#1B4F8A,#2C4A6E);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #FAD97A;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(27,79,138,.25);
  flex-shrink: 0;
}
.ix-vm-panel-body { flex: 1; display: flex; flex-direction: column; }
.ix-vm-panel h4 { font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 800; color: #0f172a; margin-bottom: 12px; }
.ix-vm-panel p  { color: #64748b; font-size: .84rem; line-height: 1.75; flex: 1; margin: 0 0 16px; }
.ix-vm-panel ul { color: #64748b; font-size: .84rem; line-height: 1.75; padding-left: 18px; }

.ix-vm-readmore {
  display: inline-flex; align-items: center; gap: 6px;
  color: #D4820A; font-size: .78rem; font-weight: 700;
  text-decoration: none; margin-top: auto;
  transition: gap .2s, color .2s;
}
.ix-vm-readmore:hover { gap: 10px; color: #1B4F8A; }

.ix-values-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.ix-value-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 20px;
  background: #EEF4FB; border: 1px solid #C8DEF5;
  font-size: .74rem; font-weight: 600; color: #2C4A6E;
  transition: background .2s, border-color .2s;
}
.ix-value-chip:hover { background: #C8DEF5; border-color: #D4820A; }
.ix-value-chip i { color: #D4820A; font-size: .72rem; }

/* ══════════════════════════════════════════════════════
   TICKER
   ══════════════════════════════════════════════════════ */
.ix-ticker { display: flex; align-items: center; background: #0a2342; padding: 10px 0; overflow: hidden; }
.ix-ticker-label { flex-shrink: 0; background: #D4820A; color: #fff; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 6px 16px; margin-right: 14px; white-space: nowrap; }
.ix-ticker-track { flex: 1; overflow: hidden; }
.ix-ticker-inner { display: flex; white-space: nowrap; animation: ticker 28s linear infinite; }
.ix-ticker-inner:hover { animation-play-state: paused; }
.ix-ticker-item { display: inline-flex; align-items: center; gap: 10px; padding: 0 22px; color: rgba(255,255,255,.8); font-size: .78rem; font-weight: 500; }
.ix-ticker-sep { color: #D4820A; font-size: .5rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════════════════════════════════════════════════
   STATS STRIP
   ══════════════════════════════════════════════════════ */
.vt-stats-section { background: #0a2342; padding: 0; position: relative; overflow: hidden; }
.vt-stat-item { padding: 26px 16px; text-align: center; border-right: 1px solid rgba(255,255,255,.08); }
.vt-stat-item:last-child { border-right: none; }
.vt-stat-icon { font-size: 1.3rem; color: var(--accent); margin-bottom: 6px; display: block; }
.vt-stat-num  { font-family: 'Outfit', sans-serif; font-size: 1.9rem; font-weight: 700; color: #fff; display: block; line-height: 1; }
.vt-stat-lbl  { font-size: .7rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; display: block; }

/* ══════════════════════════════════════════════════════
   NOTICE WIDGET
   ══════════════════════════════════════════════════════ */
.ix-notice-widget { background: #0a2342; border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; height: 100%; }
.ix-notice-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; background: #061628; }
.ix-notice-head-left { display: flex; align-items: center; gap: 10px; color: #fff; font-size: .88rem; font-weight: 600; }
.ix-notice-bell { width: 28px; height: 28px; background: rgba(212,130,10,.2); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: #D4820A; }
.ix-notice-all { color: #FAD97A; font-size: .74rem; font-weight: 600; text-decoration: none; transition: color .2s; }
.ix-notice-all:hover { color: #fff; }
.ix-notice-scroll { flex: 1; overflow-y: auto; background: #fff; max-height: 380px; }
.ix-notice-scroll::-webkit-scrollbar { width: 3px; }
.ix-notice-scroll::-webkit-scrollbar-thumb { background: #D4820A; border-radius: 2px; }
.ix-notice-row { display: flex; align-items: flex-start; gap: 10px; padding: 11px 14px; border-bottom: 1px solid #f1f5f9; text-decoration: none; transition: background .2s; }
.ix-notice-row:hover { background: #EEF4FB; }
.ix-notice-dot { width: 7px; height: 7px; background: #D4820A; border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.ix-notice-body { flex: 1; }
.ix-notice-title { font-size: .82rem; color: #1B4F8A; font-weight: 500; margin: 4px 0 3px; line-height: 1.4; }
.ix-notice-date  { font-size: .7rem; color: #6B8CAE; }

/* ══════════════════════════════════════════════════════
   NEWS ROW
   ══════════════════════════════════════════════════════ */
.ix-news-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid #f1f5f9; text-decoration: none; transition: background .2s; }
.ix-news-row:last-child { border-bottom: none; }
.ix-news-row:hover { background: #f8fafc; }
.ix-news-thumb { width: 62px; height: 50px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.ix-news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ix-news-body { flex: 1; min-width: 0; }
.ix-news-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 3px; }
.ix-news-cat  { font-size: .6rem; font-weight: 700; color: #D4820A; text-transform: uppercase; letter-spacing: .5px; }
.ix-news-date { font-size: .66rem; color: #94a3b8; }
.ix-news-title { font-size: .78rem; color: #0f172a; font-weight: 600; margin: 0; line-height: 1.35; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ix-news-arrow { color: #cbd5e1; font-size: .7rem; flex-shrink: 0; transition: color .2s, transform .2s; }
.ix-news-row:hover .ix-news-arrow { color: #D4820A; transform: translateX(3px); }

/* ══════════════════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════════════════ */
.ix-gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.ix-gallery-head .ix-title {
  margin-top: 2px;
}

.ix-gallery-bar {
  margin-left: auto;
  margin-right: auto;
}

.ix-gallery-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #D4820A 0%, #FAD97A 100%);
  color: #0a2342 !important;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .2px;
  text-decoration: none !important;
  box-shadow: 0 10px 24px rgba(212,130,10,.28);
  border: 1px solid rgba(255,255,255,.45);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.ix-gallery-view-btn i {
  transition: transform .22s ease;
}

.ix-gallery-view-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 14px 30px rgba(212,130,10,.38);
}

.ix-gallery-view-btn:hover i {
  transform: translateX(3px);
}

.ix-gf-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.ix-gf-tab { padding: 6px 16px; border-radius: 20px; border: 1.5px solid #C8DEF5; background: #fff; color: #1B4F8A; font-size: .76rem; font-weight: 600; cursor: pointer; transition: all .22s; }
.ix-gf-tab:hover { border-color: #1B4F8A; }
.ix-gf-tab.active { background: #1B4F8A; border-color: #1B4F8A; color: #fff; }
.ix-gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 170px; gap: 10px; }
.ix-gitem { border-radius: 12px; overflow: hidden; }
.ix-gitem.span2 { grid-column: span 2; }
.ix-glink { display: block; width: 100%; height: 100%; position: relative; }
.ix-glink img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; display: block; }
.ix-glink:hover img { transform: scale(1.07); }
.ix-goverlay { position: absolute; inset: 0; background: rgba(27,79,138,.72); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; }
.ix-glink:hover .ix-goverlay { opacity: 1; }
.ix-goverlay-inner { display: flex; flex-direction: column; align-items: center; gap: 7px; color: #fff; }
.ix-goverlay-inner i { font-size: 1.5rem; color: #FAD97A; }
.ix-goverlay-inner span { font-size: .72rem; font-weight: 600; letter-spacing: .5px; }
.ix-gitem.hidden { display: none; }

.ix-livestock-section,
.ix-gallery-section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 1100px;
}

.ix-gallery-section {
  contain-intrinsic-size: 1px 760px;
}

.ix-gallery-section .ix-gallery-grid {
  contain: layout paint;
}

.ix-livestock-section .vt-dept-card {
  transform: none !important;
  will-change: auto;
}

.ix-livestock-section .vt-dept-card::before,
.ix-livestock-section .vt-dept-card::after,
.ix-livestock-section .vt-dept-media::before,
.ix-livestock-section .vt-dept-media::after {
  display: none !important;
}

.ix-livestock-section .vt-dept-card:hover {
  transform: none !important;
  box-shadow: 0 14px 34px rgba(27, 79, 138, 0.08) !important;
}

.ix-livestock-section .vt-dept-card:hover .vt-dept-link-icon,
.ix-livestock-section .vt-dept-card:hover .vt-dept-orb {
  transform: none !important;
}

/* ══════════════════════════════════════════════════════
   COURSE CARDS
   ══════════════════════════════════════════════════════ */
.ix-courses-section { background: linear-gradient(135deg,#061628 0%,#0a2342 60%,#1a3a5c 100%); position: relative; overflow: hidden; }
.ix-course-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; overflow: hidden; transition: transform .3s, box-shadow .3s; backdrop-filter: blur(4px); }
.ix-course-card:hover { transform: translateY(-8px); box-shadow: 0 24px 56px rgba(0,0,0,.3); }
.ix-course-top { padding: 26px 20px; text-align: center; }
.ix-course-ring { width: 68px; height: 68px; border-radius: 50%; border: 2px solid; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 12px; }
.ix-course-short { font-size: 1.1rem; font-weight: 700; color: #1B4F8A; margin-bottom: 4px; }
.ix-course-full  { font-size: .74rem; color: #6B8CAE; margin: 0; }
.ix-course-body  { padding: 16px 20px 20px; background: #fff; }
.ix-course-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.ix-cpill { display: inline-flex; align-items: center; gap: 5px; padding: 3px 9px; border-radius: 20px; background: #EEF4FB; font-size: .7rem; font-weight: 600; color: #2C4A6E; }
.ix-cpill i { color: #D4820A; font-size: .66rem; }
.ix-course-desc { font-size: .8rem; color: #6B8CAE; line-height: 1.6; margin-bottom: 12px; }
.ix-course-btn { display: inline-flex; align-items: center; gap: 6px; padding: 7px 16px; border-radius: 6px; border: 1.5px solid; font-size: .76rem; font-weight: 600; text-decoration: none; transition: opacity .2s, transform .2s; }
.ix-course-btn:hover { opacity: .85; transform: translateY(-1px); }

/* ══════════════════════════════════════════════════════
   FACILITIES FLIP CARDS
   ══════════════════════════════════════════════════════ */
.ix-fac-card { position: relative; border-radius: 14px; overflow: hidden; height: 210px; cursor: pointer; }
.ix-fac-front { position: absolute; inset: 0; }
.ix-fac-front img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; display: block; }
.ix-fac-card:hover .ix-fac-front img { transform: scale(1.08); }
.ix-fac-card--farm .ix-fac-front img { object-position: center 28%; }
.ix-fac-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(6,22,40,.85) 0%,rgba(6,22,40,.3) 60%,transparent 100%); display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 14px; transition: opacity .3s; }
.ix-fac-card:hover .ix-fac-overlay { opacity: 0; }
.ix-fac-icon { font-size: 1.2rem; color: #FAD97A; margin-bottom: 4px; }
.ix-fac-overlay h6 { color: #fff; font-size: .88rem; margin: 0; }
.ix-fac-back { position: absolute; inset: 0; background: linear-gradient(135deg,#061628,#0a2342); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 18px; opacity: 0; transform: translateY(10px); transition: opacity .3s, transform .3s; }
.ix-fac-card:hover .ix-fac-back { opacity: 1; transform: translateY(0); }
.ix-fac-back-icon { font-size: 1.8rem; color: #D4820A; margin-bottom: 8px; }
.ix-fac-back h6 { color: #fff; font-size: .88rem; margin-bottom: 6px; }
.ix-fac-back p  { color: rgba(255,255,255,.75); font-size: .76rem; line-height: 1.5; margin-bottom: 10px; }
.ix-fac-link { color: #FAD97A; font-size: .76rem; font-weight: 600; text-decoration: none; }
.ix-fac-link:hover { color: #fff; }

/* ══════════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════════ */
.ix-cta { position: relative; padding: 80px 0; overflow: hidden; }
.ix-cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.ix-cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(6,22,40,.93) 0%,rgba(27,79,138,.88) 100%); }
.ix-cta-inner { position: relative; z-index: 2; }
.ix-cta-label { color: #D4820A; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; display: block; }
.ix-cta-h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem,3vw,2rem); color: #fff; font-weight: 700; margin-bottom: 12px; }
.ix-cta-sub { color: rgba(255,255,255,.72); font-size: .9rem; line-height: 1.7; margin-bottom: 18px; }
.ix-cta-feats { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.ix-cta-feats span { color: rgba(255,255,255,.78); font-size: .82rem; }
.ix-cta-feats i { color: #D4820A; }
.ix-cta-phone { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.7); font-size: .86rem; text-decoration: none; transition: color .2s; }
.ix-cta-phone:hover { color: #FAD97A; }

/* ══════════════════════════════════════════════════════
   ABOUT MOSAIC + FEATURES
   ══════════════════════════════════════════════════════ */
.ix-mosaic { position: relative; padding-bottom: 36px; padding-right: 16px; }
.ix-mosaic-main { width: 100%; height: 320px; object-fit: cover; border-radius: 16px; display: block; }
.ix-mosaic-sm1, .ix-mosaic-sm2 { position: absolute; width: 130px; height: 100px; object-fit: cover; border-radius: 10px; border: 4px solid #fff; box-shadow: 0 6px 20px rgba(10,35,66,.15); }
.ix-mosaic-sm1 { bottom: 0; left: 0; }
.ix-mosaic-sm2 { bottom: 0; right: 0; }
.ix-mosaic-badge { position: absolute; top: 20px; right: -8px; background: linear-gradient(135deg,#D4820A,#FAD97A); border-radius: 12px; padding: 10px 14px; text-align: center; box-shadow: 0 8px 24px rgba(212,130,10,.4); }
.ix-mosaic-badge .num { font-size: 1.4rem; font-weight: 700; color: #fff; line-height: 1; font-family: 'Playfair Display', serif; }
.ix-mosaic-badge .lbl { font-size: .54rem; font-weight: 700; color: rgba(255,255,255,.85); text-transform: uppercase; line-height: 1.2; }
.ix-about-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.ix-feat { display: flex; align-items: flex-start; gap: 10px; padding: 11px 12px; border-radius: 10px; background: #EEF4FB; border: 1px solid #C8DEF5; transition: background .2s, border-color .2s, transform .2s; }
.ix-feat:hover { background: #C8DEF5; border-color: #D4820A; transform: translateX(3px); }
.ix-feat-icon { width: 34px; height: 34px; border-radius: 8px; background: #1B4F8A; display: flex; align-items: center; justify-content: center; color: #FAD97A; font-size: .88rem; flex-shrink: 0; }
.ix-feat-title { font-size: .84rem; font-weight: 600; color: #1B4F8A; }
.ix-feat-sub   { font-size: .7rem; color: #6B8CAE; }

/* ══════════════════════════════════════════════════════
   ONE HEALTH SECTION
   ══════════════════════════════════════════════════════ */
.ix-onehealth-sec {
  background: radial-gradient(circle at 10% 20%, rgba(240, 247, 240, 0.7) 0%, rgba(232, 245, 233, 0.55) 50%, rgba(240, 244, 255, 0.7) 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.ix-oh-decor-1 { position: absolute; top: -80px; right: -80px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle,rgba(46,125,50,.08) 0%,transparent 70%); pointer-events: none; }
.ix-oh-decor-2 { position: absolute; bottom: -60px; left: -60px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle,rgba(27,79,138,.07) 0%,transparent 70%); pointer-events: none; }
.ix-oh-tagline-wrap { display: flex; justify-content: center; }
.ix-oh-tagline { display: inline-flex; align-items: center; gap: 14px; background: #fff; border-radius: 50px; padding: 9px 22px; box-shadow: 0 4px 20px rgba(10,35,66,.08); border: 1px solid #e2e8f0; flex-wrap: wrap; justify-content: center; }
.ix-oh-t-animal { color: #c9a227; font-size: .8rem; font-weight: 700; }
.ix-oh-t-people { color: #1B4F8A; font-size: .8rem; font-weight: 700; }
.ix-oh-t-env    { color: #2e7d32; font-size: .8rem; font-weight: 700; }
.ix-oh-t-sep    { color: #cbd5e1; font-size: .7rem; }

.ix-oh-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px 28px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 10px 30px rgba(10, 35, 66, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.ix-oh-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--oh-color, #1B4F8A);
  transition: height 0.3s ease;
}
.ix-oh-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(10, 35, 66, 0.1);
  border-color: var(--oh-color, #1B4F8A);
}
.ix-oh-card:hover::before {
  height: 6px;
}
.ix-oh-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  background: rgba(27, 79, 138, 0.06);
  color: var(--oh-color, #1B4F8A);
  transition: all 0.4s ease;
}
.ix-oh-card:hover .ix-oh-icon-circle {
  background: var(--oh-color, #1B4F8A);
  color: #fff;
  transform: scale(1.1) rotate(-8deg);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.ix-oh-card h5 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}
.ix-oh-card p {
  font-size: 0.78rem;
  color: #556275;
  line-height: 1.7;
  margin: 0;
}
.ix-oh-aspects {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ix-oh-aspects li {
  font-size: 0.7rem;
  font-weight: 600;
  color: #475569;
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
}
.ix-oh-card:hover .ix-oh-aspects li {
  background: rgba(27, 79, 138, 0.04);
}
.ix-oh-tkivas-highlight {
  margin-top: 15px;
  font-size: 0.72rem;
  color: #64748b;
  border-left: 2px solid var(--oh-color, #1B4F8A);
  padding-left: 10px;
  font-style: italic;
  line-height: 1.5;
}

/* --- Interactive CSS Venn Diagram --- */
.oh-venn-container {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.oh-venn-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  border: 2px dashed transparent;
  text-align: center;
  padding: 15px;
}
.oh-venn-circle i {
  font-size: 1.5rem;
  margin-bottom: 6px;
  transition: transform 0.3s ease;
}
.oh-venn-circle span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.oh-venn-circle.animal {
  background-color: rgba(212, 130, 10, 0.14);
  color: #b26c06;
  border-color: rgba(212, 130, 10, 0.25);
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.oh-venn-circle.human {
  background-color: rgba(27, 79, 138, 0.14);
  color: #1B4F8A;
  border-color: rgba(27, 79, 138, 0.25);
  bottom: 50px;
  left: 30px;
}
.oh-venn-circle.env {
  background-color: rgba(46, 125, 50, 0.14);
  color: #2e7d32;
  border-color: rgba(46, 125, 50, 0.25);
  bottom: 50px;
  right: 30px;
}
.oh-venn-circle:hover {
  transform: scale(1.08);
  background-color: rgba(var(--venn-rgb), 0.22);
  border-style: solid;
  border-color: rgba(var(--venn-rgb), 0.5);
  box-shadow: 0 10px 25px rgba(var(--venn-rgb), 0.12);
  z-index: 10;
}
.oh-venn-circle.animal:hover {
  --venn-rgb: 212, 130, 10;
  transform: translateX(-50%) scale(1.08);
}
.oh-venn-circle.human:hover {
  --venn-rgb: 27, 79, 138;
}
.oh-venn-circle.env:hover {
  --venn-rgb: 46, 125, 50;
}
.oh-venn-intersection {
  position: absolute;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0%, #FFF5D6 50%, #FAD97A 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(212, 130, 10, 0.55), inset 0 0 10px rgba(255,255,255,1);
  z-index: 5;
  text-align: center;
  cursor: pointer;
  animation: unified-pulse 3.5s infinite alternate ease-in-out;
  border: 2px solid #fff;
}
.oh-venn-intersection i {
  font-size: 1.15rem;
  color: #D4820A;
  margin-bottom: 2px;
}
.oh-venn-intersection span {
  font-size: 0.55rem;
  font-weight: 800;
  color: #1B4F8A;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.2px;
}
.oh-venn-intersection:hover {
  transform: scale(1.15);
  box-shadow: 0 0 45px rgba(212, 130, 10, 0.75), inset 0 0 15px rgba(255,255,255,1);
  animation-play-state: paused;
}
@keyframes unified-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(212, 130, 10, 0.45), inset 0 0 8px rgba(255,255,255,1);
  }
  100% {
    transform: scale(1.06);
    box-shadow: 0 0 35px rgba(212, 130, 10, 0.65), inset 0 0 12px rgba(255,255,255,1);
  }
}

/* --- Academic Initiatives --- */
.oh-initiative-box {
  background: #fff;
  border-radius: 14px;
  padding: 20px 24px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 15px rgba(10, 35, 66, 0.015);
  margin-bottom: 16px;
  transition: all 0.3s ease;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.oh-initiative-box:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 25px rgba(10, 35, 66, 0.06);
  border-color: rgba(27, 79, 138, 0.25);
}
.oh-init-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #EEF4FB;
  color: #1B4F8A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.oh-initiative-box:hover .oh-init-icon {
  background: #1B4F8A;
  color: #FFF;
}
.oh-init-body {
  flex-grow: 1;
}
.oh-init-body h6 {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.oh-init-body p {
  font-size: 0.74rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}
.oh-init-badge {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 0.5px;
}
.oh-init-badge.surv { background: #fff8e1; color: #b26c06; border: 1px solid #ffe082; }
.oh-init-badge.amr { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.oh-init-badge.eco { background: #e0f2f1; color: #00796b; border: 1px solid #80cbc4; }

/* --- Rudolf Virchow Quote Card --- */
.ix-oh-quote-card {
  background: linear-gradient(135deg, #1B4F8A 0%, #0a2342 100%);
  border-radius: 24px;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(10, 35, 66, 0.15);
  margin-top: 60px;
  color: #fff;
  text-align: center;
}
.ix-oh-quote-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 10px;
  left: 40px;
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
.ix-oh-quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 500;
  line-height: 1.7;
  color: #f8fafc;
  max-width: 820px;
  margin: 0 auto 20px auto;
  position: relative;
  z-index: 2;
  font-style: italic;
}
.ix-oh-quote-author {
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #FAD97A;
  margin-bottom: 4px;
}
.ix-oh-quote-title {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 575px) {
  .oh-venn-container {
    height: 340px;
    max-width: 320px;
  }
  .oh-venn-circle {
    width: 150px;
    height: 150px;
    padding: 10px;
  }
  .oh-venn-circle span {
    font-size: 0.65rem;
  }
  .oh-venn-circle.animal {
    top: 20px;
  }
  .oh-venn-circle.human {
    bottom: 30px;
    left: 10px;
  }
  .oh-venn-circle.env {
    bottom: 30px;
    right: 10px;
  }
  .oh-venn-intersection {
    width: 80px;
    height: 80px;
  }
  .oh-venn-intersection span {
    font-size: 0.46rem;
  }
}

/* ══════════════════════════════════════════════════════
   FULLY MOBILE RESPONSIVE
   ══════════════════════════════════════════════════════ */

/* Tablet landscape */
@media (max-width: 1199px) {
  .p26-top { height: 155px; }
  .p26-icon-ring { width: 62px; height: 62px; font-size: 1.55rem; }
}

/* Tablet portrait */
@media (max-width: 991px) {
  .ix-pad { padding: 56px 0; }
  .ix-cta { padding: 56px 0; }
  .ix-onehealth-sec { padding: 56px 0; }
  .p26-top { height: 150px; }
  .p26-icon-ring { width: 58px; height: 58px; font-size: 1.45rem; }
  .ix-gallery-grid { grid-template-columns: repeat(3,1fr); grid-auto-rows: 150px; }
  .ix-mosaic-main { height: 280px; }
  .ix-vm-panel { padding: 24px 20px; }
}

/* Mobile landscape / small tablet */
@media (max-width: 767px) {
  .ix-pad { padding: 44px 0; }
  .ix-cta { padding: 44px 0; }
  .ix-onehealth-sec { padding: 44px 0; }
  .p26-top { height: 140px; }
  .p26-icon-ring { width: 54px; height: 54px; font-size: 1.35rem; }
  .p26-body { padding: 13px 12px 12px; }
  .p26-name { font-size: .82rem; }
  .p26-desc { font-size: .7rem; }
  .p26-btn  { font-size: .72rem; padding: 8px 12px; }
  .ix-gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 130px; }
  .ix-gitem.span2 { grid-column: span 2; }
  .ix-gallery-head {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .ix-gallery-view-btn {
    width: 100%;
    justify-content: center;
  }
  .ix-about-feats { grid-template-columns: 1fr; }
  .ix-mosaic { padding-bottom: 20px; padding-right: 0; }
  .ix-mosaic-main { height: 240px; }
  .ix-mosaic-sm1, .ix-mosaic-sm2 { display: none; }
  .ix-mosaic-badge { right: 12px; }
  .ix-vm-panel { padding: 20px 16px; }
  .ix-vm-panel-icon { width: 46px; height: 46px; font-size: 1.1rem; margin-bottom: 14px; }
  .ix-oh-tagline { gap: 8px; padding: 8px 14px; }
  .ix-oh-intersection { padding: 20px 16px; }
  .ix-cta-feats { gap: 8px; }
  .ix-cta-feats span { font-size: .78rem; }
  .vt-stat-item { padding: 20px 10px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .vt-stat-num { font-size: 1.6rem; }
}

/* Mobile portrait */
@media (max-width: 575px) {
  .ix-pad { padding: 36px 0; }
  .p26-top { height: 160px; }
  .p26-icon-ring { width: 60px; height: 60px; font-size: 1.5rem; }
  .p26-body { padding: 14px 13px 13px; }
  .p26-name { font-size: .88rem; }
  .p26-desc { font-size: .73rem; }
  .p26-btn  { font-size: .76rem; padding: 9px 14px; }
  .ix-gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 110px; }
  .ix-gitem.span2 { grid-column: span 1; }
  .ix-ticker-label { padding: 5px 12px; font-size: .65rem; }
  .ix-ticker-item  { font-size: .72rem; padding: 0 14px; }
  .ix-oh-tagline { flex-direction: column; gap: 6px; border-radius: 16px; }
  .ix-oh-t-sep { display: none; }
  .ix-values-grid { gap: 6px; }
  .ix-value-chip { font-size: .7rem; padding: 4px 10px; }
  .ix-mosaic-main { height: 200px; }
  .ix-mosaic-badge { top: 12px; right: 8px; padding: 8px 10px; }
  .ix-mosaic-badge .num { font-size: 1.2rem; }
  .ix-cta-h2 { font-size: 1.4rem; }
  .ix-cta-sub { font-size: .82rem; }
}