/* ═══════════════════════════════════════════
   SMOOTH SCROLL BEHAVIOR
═══════════════════════════════════════════ */
html {
  scroll-behavior: smooth;
}

/* ═══════════════════════════════════════════
   UTILITY CLASSES
═══════════════════════════════════════════ */
.hidden {
  display: none !important;
}

/* ═══════════════════════════════════════════
   AVENIR LT STD – LOCAL FONT FACES
═══════════════════════════════════════════ */
/* ═══════════════════════════════════════════
   PAGE LOADER
═══════════════════════════════════════════ */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  height: 100%;
}

.loader-logo {
  height: 100%;
  width: 100%;
  max-height: 100vh;
  max-width: 100vw;
  object-fit: contain;
  margin: auto;
}

.loader-text {
  display: none;
}

@font-face {
  font-family: 'AvenirLTStd';
  src: url('font/AvenirLTStd-Roman.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@media (min-width: 992px) {
  .feature.container {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  /* .feature-right video {
    height: 480px;
    width: 100%;
    max-width: 900px;
    border-radius: 24px;
    transition: transform 0.4s cubic-bezier(.2,.9,.2,1);
    display: block;
    margin: 0 auto;
    object-fit: cover;
  }
  .feature-right video.fullscreen {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2);
    z-index: 9999;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    background: #fff;
    border-radius: 24px;
    width: 80vw;
    height: 80vh;
    max-width: none;
    max-height: none;
  } */



}

/* ── Wrapper ── */
.video-cursor-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
}

/* Fullscreen mode for video wrapper */
.video-cursor-wrapper:fullscreen {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  max-width: none;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  z-index: 9999;
}

/* ── Video ── */
.feature-right video {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: 55vh;
  border-radius: 24px;
  transition: transform 0.4s cubic-bezier(.2, .9, .2, 1);
  display: block;
  margin: 0 auto;
  object-fit: cover;
  cursor: none;
}

/* Fullscreen video styling */
.video-cursor-wrapper:fullscreen video {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border-radius: 0;
  object-fit: contain;
  cursor: default;
}

.video-cursor-wrapper:fullscreen,
.video-cursor-wrapper:fullscreen .video-overlay {
  cursor: default;
}

@media (hover: none) and (pointer: coarse) {
  .feature-right video {
    cursor: default;
  }
}

/* ── Overlay ── */
.video-overlay {
  position: absolute;
  width: 100%;
  inset: 0;
  /* Leave bottom 56px free for controls */
  bottom: 56px;
  z-index: 2;
  cursor: none;
  border-radius: 24px 24px 0 0;
}

@media (hover: none) and (pointer: coarse) {
  .video-overlay {
    cursor: default;
  }
}

/* ── Controls bar ── */
.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  width: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
  border-radius: 0 0 24px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Show controls on hover (desktop) or always on mobile */
.video-cursor-wrapper:hover .video-controls,
.video-cursor-wrapper.controls-visible .video-controls {
  opacity: 1;
}

@media (hover: none) and (pointer: coarse) {
  .video-controls {
    opacity: 1;
  }
}

/* Control buttons */
.ctrl-btn {
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.ctrl-btn:hover {
  opacity: 1;
}

.ctrl-btn svg {
  width: 22px;
  height: 22px;
}

/* ── Progress bar ── */
.progress-bar-wrapper {
  flex: 1;
  position: relative;
  height: 20px;
  display: flex;
  align-items: center;
}

.progress-bar-bg {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: white;
  border-radius: 4px;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* Invisible range input sits on top for interaction */
.progress-range {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  margin: 0;
}

/* ── Desktop floating cursor ── */
.custom-video-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(213, 87, 51, 0.15);
  border: 2px solid #D55733;
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: opacity 0.2s ease;
}

/* ✏️ Size of your custom cursor SVG */
.custom-video-cursor svg {
  width: 26px;
  height: 26px;
  margin-left: 4px;
}

.custom-video-cursor svg path {
  fill: #D55733;
}

@media (hover: none) and (pointer: coarse) {
  .custom-video-cursor {
    display: none !important;
  }
}

/* ── Mobile centered play/pause button ── */
.mobile-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(213, 87, 51, 0.18);
  border: 2px solid #D55733;
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 3;
  transition: opacity 0.3s ease;
}

/* ✏️ Size of your mobile button SVG */
.mobile-play-btn svg {
  width: 28px;
  height: 28px;
  margin-left: 5px;
}

.mobile-play-btn svg path {
  fill: #D55733;
}

@media (hover: none) and (pointer: coarse) {
  .mobile-play-btn {
    display: flex;
  }
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .feature-right video {
    height: 320px;
    width: 100% !important;
  }

  .video-cursor-wrapper {
    overflow: hidden;
  }

  .video-controls {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
  }
}

@media (max-width: 576px) {
  .feature-right {
    display: flex;
    justify-content: center;
    width: 100% !important;
  }

  .video-cursor-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
  }

  .feature-right video {
    height: 220px;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 16px;
  }

  .video-overlay {
    border-radius: 16px;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0 !important;
    inset: 0;
  }

  .video-controls {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    border-radius: 0 0 16px 16px;
    padding: 0 12px;
    height: 50px;
    gap: 8px;
  }

  .mobile-play-btn {
    width: 60px;
    height: 60px;
  }

  .mobile-play-btn svg {
    width: 22px;
    height: 22px;
  }
}

.site-footer .footer-link-columns {
  display: flex;
  flex-direction: row;
  gap: 80px;
  margin-left: 0px;
  align-items: flex-start;
  transform: translateX(-40px);
}

.site-footer .footer-nav-list {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@font-face {
  font-family: 'AvenirLTStd';
  src: url('font/AvenirLTStd-Oblique.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'AvenirLTStd';
  src: url('font/AvenirLTStd-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'AvenirLTStd';
  src: url('font/AvenirLTStd-LightOblique.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'AvenirLTStd';
  src: url('font/AvenirLTStd-Book.otf') format('opentype');
  font-weight: 350;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'AvenirLTStd';
  src: url('font/AvenirLTStd-BookOblique.otf') format('opentype');
  font-weight: 350;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'AvenirLTStd';
  src: url('font/AvenirLTStd-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'AvenirLTStd';
  src: url('font/AvenirLTStd-MediumOblique.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'AvenirLTStd';
  src: url('font/AvenirLTStd-Heavy.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'AvenirLTStd';
  src: url('font/AvenirLTStd-HeavyOblique.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'AvenirLTStd';
  src: url('font/AvenirLTStd-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'AvenirLTStd';
  src: url('font/AvenirLTStd-BlackOblique.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

/* ═══════════════════════════════════════════
   CSS VARIABLES
═══════════════════════════════════════════ */
:root {
  --font-display: 'AvenirLTStd';
  --font-body: 'AvenirLTStd';
}

/* ═══════════════════════════════════════════
   HOW TO REPORT SIDE EFFECTS SECTION
═══════════════════════════════════════════ */
.ae-how-section {
  padding: 0 0 64px;
  background: #fff;
}

.ae-how-card {
  background: #eef5fa;
  border-radius: 16px;
  overflow: hidden;
}

.ae-how-left {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.ae-how-text {
  color: #28514F;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.ae-email-link {
  color: #0B73B8;
  font-weight: 500;
  text-decoration: none;
}

.ae-email-link:hover {
  text-decoration: underline;
}

.ae-how-item {
  margin-bottom: 18px;
}

.ae-how-label {
  color: #28514F;
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0 0 4px;
}

.ae-how-desc {
  color: #28514F;
  font-size: 0.93rem;
  line-height: 1.7;
  margin: 0;
}

.ae-how-right {
  padding: 24px 24px 24px 0;
  display: flex;
  align-items: stretch;
}

.ae-how-img {
  width: 100%;
  height: 100%;
  min-height: 324px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

@media (max-width: 767px) {
  /* ── GOVERNANCE: Ethics + Conflict of Interest sections (blue bg) ── */

  /* Card: stack left-then-right as single column, centered */
  .gov-ethics-section .overview-card {
    flex-direction: column !important;
    align-items: center !important;
    padding: 28px 20px !important;
    gap: 20px !important;
  }

  /* Left column: center all children */
  .gov-ethics-section .overview-left {
    width: 100% !important;
    max-width: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: center !important;
  }

  .gov-ethics-section .overview-heading,
  .gov-ethics-section .overview-body {
    text-align: center !important;
    max-width: 100% !important;
  }

  .gov-ethics-section .gov-ethics-icon {
    display: flex;
    justify-content: center;
  }

  .gov-ethics-section .gov-see-more-btn {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  /* Right column: shrink-wrap to image, centered */
  .gov-ethics-section .overview-right {
    flex: 0 0 auto !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Image: 322×204 × 1.3 = 419×265 */
  .gov-ethics-section .overview-img {
    width: 419px !important;
    max-width: 100% !important;
    height: 265px !important;
    border-radius: 6px !important;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    box-shadow: none;
  }

  /* ── GOVERNANCE: Reporting Misconduct + Compliance sections (white bg) ── */

  .gov-report-section .gov-report-inner {
    flex-direction: column-reverse !important;
    align-items: center !important;
    padding: 28px 20px !important;
    gap: 20px !important;
  }

  .gov-report-section .gov-report-img-col {
    flex: 0 0 auto !important;
    width: 100% !important;
    display: flex;
    justify-content: center;
  }

  .gov-report-section .gov-report-img {
    width: 419px !important;
    max-width: 100% !important;
    height: 265px !important;
    border-radius: 6px !important;
    object-fit: cover;
    display: block;
    margin: 0 auto;
  }

  .gov-report-section .gov-report-content {
    width: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: center !important;
  }

  .gov-report-section .gov-ethics-icon {
    display: flex;
    justify-content: center;
  }

  .gov-report-section .gov-report-heading,
  .gov-report-section .gov-report-body,
  .gov-report-section .gov-report-contact {
    text-align: center !important;
    max-width: 100% !important;
  }

  .gov-report-section .gov-see-more-btn {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  /* Compliance bullet list: left-align for readability */
  .gov-compliance-list,
  .gov-report-section ul,
  .gov-ethics-section ul {
    text-align: left !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 20px !important;
    box-sizing: border-box;
    align-self: flex-start;
  }

  .gov-compliance-list li,
  .gov-report-section ul li,
  .gov-ethics-section ul li {
    text-align: left !important;
  }

  /* Center compliance section buttons */
  .gov-compliance-btns {
    justify-content: center !important;
    flex-direction: column;
    align-items: center !important;
    gap: 12px;
  }

  .gov-compliance-btns .gov-see-more-btn,
  .gov-compliance-btns .gov-download-btn {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
  }

  .ae-how-right {
    padding: 0 20px 24px;
  }

  .ae-how-img {
    min-height: 211px;
    border-radius: 14px;
  }
}

/* ═══════════════════════════════════════════
   ADVERSE EVENT INFO SECTION (two-column cards)
═══════════════════════════════════════════ */
.ae-info-section {
  padding: 64px 0;
  background: #fff;
}

.ae-card {
  background: #eef5fa;
  border-radius: 16px;
  padding: 36px 32px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ae-card-icon {
  margin-bottom: 16px;
}

.ae-card-title {
  color: #0B73B8;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 14px;
}

.ae-card-text {
  color: #28514F;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
}

.ae-card-img-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.ae-card-img {
  width: 100%;
  height: 227px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

@media (max-width: 767px) {
  .ae-card {
    padding: 24px 20px;
  }

  .ae-card-img {
    height: 178px;
  }
}

/* Basic styles */
html,
body {
  height: 100%;
  margin: 0;
  font-family: 'AvenirLTStd';
  font-weight: 500;
  background: #ffffff;
  color: #28514F
}

body.company {
  background: transparent;
}

/* ── Global Typography (Helvetica Neue LT Std) ──
   Body : light (300)
   H1   : 80px · semi-bold (600) · line-height 84%
   H2   : 40px · semi-bold (600) · line-height 1.175
   H3   : 28px · semi-bold (600) · line-height 1.3
   p    : 16px · light (300)     · line-height 1.5
─────────────────────────────────────────── */
h1 {
  font-size: 80px;
  font-weight: 700;
  line-height: 84px;
  letter-spacing: 0
}

h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 47px;
  letter-spacing: 0
}

h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3
}

p,
li,
td,
th {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px
}

/* Header / Nav (updated to match reference) */
.site-header {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 200
}

.site-header .container {
  max-width: 100%;
  padding: 0 clamp(16px, 3vw, 40px);
  box-sizing: border-box
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 0;
  height: clamp(56px, 8vh, 80px);
  box-sizing: border-box
}

.logo img {
  height: clamp(36px, 5vh, 44px);
  width: auto;
  max-width: 160px;
  flex-shrink: 0;
  margin-right: clamp(8px, 1.5vw, 16px);
  transition: transform 0.6s cubic-bezier(.2, .9, .2, 1);
}

.logo img.animate-logo {
  transform: scale(1.3);
}

.main-nav {
  position: relative;
  flex: 1;
  min-width: 0
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: clamp(12px, 1.8vw, 18px);
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden
}

.main-nav {
  position: relative;
}

.main-nav a {
  color: #0B73B8;
  text-decoration: none;
  padding: 8px clamp(10px, 1.2vw, 15px);
  border-radius: 24px;
  font-size: clamp(0.78rem, 0.95vw, 0.9rem);
  white-space: nowrap;
  transition: color .18s ease, font-weight .18s;
  position: relative;
  z-index: 2;
  flex-shrink: 0
}

.main-nav a.active {
  color: #fff
}

/* Adjustments for Science page nav to fit the extra link and provide a pure CSS pill hover effect */
.science-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 clamp(6px, 0.8vw, 10px);
  font-size: clamp(0.7rem, 0.8vw, 0.85rem);
  transition: all 0.2s ease-in-out;
  border-radius: 24px;
}

.science-nav a:hover,
.science-nav a.active {
  background-color: #0B73B8; /* Restored to blue pill per request */
  color: #fff !important;
  box-shadow: 0 6px 14px rgba(20, 115, 166, 0.12);
}


.main-nav a:hover {
  color: #fff
}

.contact-btn {
  background: #e06a3a;
  color: #fff;
  padding: 8px 18px;
  border-radius: 24px;
  text-decoration: none;
  white-space: nowrap;
  font-size: clamp(0.75rem, 0.9vw, 0.85rem);
  flex-shrink: 0;
  margin-left: clamp(6px, 1vw, 12px)
}

/* Animated nav indicator (pill) positioned behind links */
.nav-indicator {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(0);
  height: 40px;
  background: #0B73B8;
  border-radius: 24px;
  transition: transform .26s cubic-bezier(.2, .9, .2, 1), width .26s cubic-bezier(.2, .9, .2, 1), background .18s linear;
  z-index: 1;
  box-shadow: 0 6px 14px rgba(20, 115, 166, 0.12);
  pointer-events: none
}

@media (max-width: 853px) and (min-width: 801px) {
  .nav-indicator {
    height: clamp(28px, 4vw, 36px);
  }
}

/* Add small visual separation for nav on large screens */
@media(min-width:1200px) {
  .header-inner {
    padding: 0
  }
}

/* Hero slider (increased vertical height and refined alignment)
	 Keeps the text on the left and ensures it's vertically centered */
.hero {
  position: relative;
  overflow: hidden;
  height: 92vh;
  min-height: 520px
}

.slides {
  position: absolute;
  inset: 0
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .6s ease, transform .6s ease
}

.slide.active {
  opacity: 1;
  transform: scale(1)
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.28) 36%, rgba(0, 0, 0, 0) 100%)
}

.hero-content {
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
  max-width: 720px
}

/* Home page hero: slides that link to another page (set via JS from data-link) */
.hero-content.hero-content-linked {
  cursor: pointer;
}

.hero-content h1 {
  color: #fff;
  font-size: 80px;
  line-height: 84px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 18px
}

.tagline {
  color: rgba(255, 255, 255, 0.95);
  font-size: 17px;
  max-width: 620px
}

.hero-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 26px;
  z-index: 20;
  display: flex;
  gap: 10px
}

.hero-dots {
  background: rgba(255, 255, 255, 0.30);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 9px 16px;
  border-radius: 30px;
  gap: 10px;
  bottom: 28px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.65);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background .25s;
}

.hero-dots button.active {
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.hero-dots button.active {
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

/* ── Home page: override company-hero styles ── */
body.home .company-hero .hero-overlay {
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.70) 0%,
      rgba(0, 0, 0, 0.38) 45%,
      rgba(0, 0, 0, 0) 100%);
}

body.home .company-hero .hero-content {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  align-items: flex-start;
  text-align: left;
  padding-top: 0;
  max-width: 680px;
}

body.home .company-hero .hero-content h1 {
  color: #ffffff;
  font-size: 64px;
  line-height: 1.05;
}

body.home .company-hero .hero-content .tagline {
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
}

/* Make sure header/nav doesn't overlap hero content on smaller screens */
@media (max-width: 900px) {
  /* ── Fix image: cover fills without any distortion ── */
  .slide {
    background-size: cover !important;
    background-position: center center !important;
  }

  /* ── Taller hero so image doesn't look compressed ── */
  .hero {
    height: 100vh !important;
    min-height: 560px !important;
  }

  /* ── Centred overlay for even text legibility across the image ── */
  body.home .company-hero .hero-overlay {
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.60) 0%,
        rgba(0, 0, 0, 0.35) 50%,
        rgba(0, 0, 0, 0.10) 100%) !important;
  }

  /* ── Text vertically centred in the hero ── */
  body.home .hero-content,
  body.home .company-hero .hero-content {
    position: absolute !important;
    left: 24px !important;
    right: 24px !important;
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    max-width: none !important;
    padding: 0 !important;
    align-items: flex-start;
    text-align: left;
  }

  body.home .company-hero .hero-content h1 {
    font-size: 26px !important;
    line-height: 1.25 !important;
    white-space: normal !important;
    word-break: break-word !important;
    max-width: 100% !important;
    margin-bottom: 10px !important;
    text-align: left;
    display: block;
  }

  body.home .company-hero .hero-content .tagline {
    font-size: 13px !important;
    line-height: 1.55 !important;
    white-space: normal !important;
    word-break: break-word !important;
    max-width: 100% !important;
    margin-bottom: 0 !important;
    text-align: left;
    display: block;
  }

  .main-nav ul {
    display: none;
  }

  /* ── Non-home pages: pin icon+text to top of hero (white gradient zone) ── */
  body:not(.home) .company-hero .hero-content {
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    padding-top: 0 !important;
    padding: 0 !important;
    margin-top: 0 !important;
    width: calc(100% - 40px) !important;
    max-width: none !important;
    bottom: auto !important;
  }

  /* ── Dots: fully strip pill container, clean floating dots ── */
  .hero-dots {
    bottom: 24px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 8px !important;
    background-color: transparent !important;
    background-image: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
  }

  .hero-dots button {
    width: 8px !important;
    height: 8px !important;
    background: rgba(255, 255, 255, 0.50) !important;
    border: none !important;
    border-radius: 50% !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  .hero-dots button.active {
    background: #ffffff !important;
    box-shadow: none !important;
    transform: none !important;
  }
}

/* end @media max-width:900px */

/* ── Tablet portrait (769-900px): the block above sizes hero text for
   phones, but was also being applied to iPads/tablets in this range,
   leaving the heading/tagline disproportionately tiny next to the full
   hero image. Give tablets a size between phone and desktop. ── */
@media (min-width: 769px) and (max-width: 900px) {
  body.home .company-hero .hero-content h1 {
    font-size: 42px !important;
    line-height: 1.15 !important;
  }

  body.home .company-hero .hero-content .tagline {
    font-size: 16px !important;
  }
}

/* ── Extra-small phones (≤480px) ── */
@media (max-width: 480px) {
  .hero {
    height: 100vh !important;
    min-height: 560px !important;
  }

  body.home .company-hero .hero-content h1 {
    font-size: 22px !important;
    margin-bottom: 8px !important;
  }

  body.home .company-hero .hero-content .tagline {
    font-size: 12px !important;
    line-height: 1.55 !important;
  }

  .hero-dots {
    bottom: 20px !important;
    gap: 7px !important;
    background-color: transparent !important;
    background-image: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }

  .hero-dots button {
    width: 7px !important;
    height: 7px !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
}

/* Additional responsive breakpoint for better zoom support */
@media (max-width: 1024px) and (min-width: 901px) {
  .site-header .container {
    padding: 0 clamp(12px, 2vw, 24px);
  }

  .main-nav {
    flex: 1;
    min-width: 0;
  }

  .main-nav ul {
    gap: clamp(10px, 1.6vw, 16px);
  }

  .main-nav a {
    padding: 7px clamp(8px, 1vw, 14px);
    font-size: clamp(0.75rem, 0.85vw, 0.88rem);
  }

  .contact-btn {
    margin-left: clamp(6px, 1vw, 12px);
    padding: 7px 15px;
    font-size: clamp(0.72rem, 0.8vw, 0.82rem);
  }

  .logo img {
    margin-right: clamp(8px, 1.5vw, 16px);
  }
}

/* 175% zoom mode - enable menu wrapping */
@media (max-width: 1100px) and (min-width: 1025px) {
  .main-nav ul {
    flex-wrap: wrap;
    gap: clamp(8px, 1.4vw, 14px);
  }

  .main-nav a {
    padding: 6px clamp(7px, 0.9vw, 12px);
    font-size: clamp(0.73rem, 0.83vw, 0.87rem);
  }

  .contact-btn {
    margin-left: clamp(6px, 1vw, 12px);
    padding: 7px 15px;
    font-size: clamp(0.71rem, 0.79vw, 0.81rem);
  }

  .nav-indicator {
    display: none;
  }
}

/* Ultra-compact mode for extreme zoom (125%+) */
@media (max-width: 960px) and (min-width: 901px) {
  .main-nav a {
    font-size: clamp(0.7rem, 0.8vw, 0.85rem);
    padding: 6px clamp(7px, 0.8vw, 12px);
  }

  .main-nav ul {
    gap: clamp(8px, 1.4vw, 14px);
    flex-wrap: wrap;
  }

  .logo img {
    margin-right: clamp(8px, 1.5vw, 16px);
  }

  .contact-btn {
    margin-left: clamp(6px, 1vw, 12px);
  }
}

/* Extreme zoom mode (150%+) */
@media (max-width: 853px) and (min-width: 801px) {
  .site-header .container {
    padding: 0 clamp(8px, 1.5vw, 16px);
  }

  .main-nav ul {
    gap: clamp(6px, 1.2vw, 12px);
  }

  .main-nav a {
    padding: 5px clamp(6px, 0.7vw, 10px);
    font-size: clamp(0.65rem, 0.75vw, 0.8rem);
    letter-spacing: -0.3px;
  }

  .contact-btn {
    margin-left: clamp(6px, 1vw, 12px);
    padding: 5px 12px;
    font-size: clamp(0.65rem, 0.7vw, 0.75rem);
  }

  .logo img {
    max-width: 140px;
    margin-right: clamp(8px, 1.5vw, 16px);
  }
}

/* TEAM SLIDER */
.team-section {
  background: transparent;
  position: relative;
  overflow: hidden
}

.team-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('images/teambg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0
}

.team-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2
}

.team-slider-viewport {
  position: relative;
  overflow: hidden;
  padding: 28px 0;
  width: 100%
}

.team-track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform .6s cubic-bezier(.2, .9, .2, 1);
  will-change: transform
}

.team-slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px
}

.team-caption {
  margin-bottom: 8px
}

.team-name {
  font-size: 20px;
  color: #0B73B8;
  font-weight: 700
}

.team-role {
  font-size: 14px;
  color: #356077;
  margin-top: 4px
}

.team-image img {
  width: 500px;
  height: 500px;
  object-fit: cover;
  /* border-radius:50%; */
  display: block;
  margin: 0 auto
}

.team-dots {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px
}

.team-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(20, 115, 166, 0.18);
  cursor: pointer
}

.team-dots button.active {
  background: #ffffff
}

/* Team intro: icon, heading and centered subtext */
.team-intro {
  max-width: 820px;
  margin: 0 auto 10px
}

.team-intro-icon {
  width: 50px;
  height: 50px;
  display: block;
  margin: 0 auto 10px
}

.section-wave-icon {
  width: 56px;
  height: auto;
  display: block;
  margin: 0 auto 10px
}

.team-title {
  color: #0B73B8;
  font-size: 28px;
  margin: 6px 0;
  font-weight: 700
}

.team-sub {
  color: #28514F;
  max-width: 720px;
  margin: 0 auto;
  font-size: 14px
}

/* ═══════════════════════════════════════════════════
   MILESTONES SECTION  —  rebuilt to match Figma
═══════════════════════════════════════════════════ */
.ms-section {
  padding: 40px 0;
  background-color: #fff;
  position: relative;
  z-index: 1;
}

/* Header */
.ms-title {
  color: #0B73B8;
  font-size: 40px;
  font-weight: 700;
  line-height: 47px;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 14px;
}

.ms-intro {
  color: #28514F;
  font-size: 15px;
  line-height: 1.7;
  max-width: 740px;
  margin: 0 auto 36px;
}

/* Outer panel */
.ms-panel {
  position: relative;
  border: none;
  border-radius: 8px;
  padding: 90px 32px 36px;
}

/* Rows wrapper */
/* Rows wrapper — single vline lives here */
.ms-rows-wrap {
  position: relative;
  /* Rows are absolutely positioned by JS (timeline connector layout), so
     this wrapper doesn't grow to contain a row whose text wraps to extra
     lines - the last visible row can visually extend past the wrapper's
     own reported height at any viewport width, colliding with the
     "See More" button right after it. Clearance as a safety margin. */
  margin-bottom: 70px;
}

/* Normal rows wrapper */
.ms-normal-rows {
  position: relative;
}

/* Single vertical center line — height set and animated by JS */
.ms-vline {
  position: absolute;
  left: 50%;
  top: -50px;
  height: 0;
  width: 3px;
  background: #0B73B8;
  transform: translateX(-50%);
  z-index: 0;
}

/* Starting circle at the top of the vline */
.ms-vline-start {
  position: absolute;
  left: 50%;
  top: -50px;
  transform: translateX(-50%);
  width: 22px;
  height: 22px;
  background: #0B73B8;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px #0B73B8;
  border-radius: 50%;
  z-index: 2;
}

/* Extra section — hidden until See More clicked */
.ms-extra-section {
  position: relative;
  display: none;
}

/* Each row: [left-half] [dot] [right-half] */
.ms-row {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}

.ms-half {
  flex: 0 0 calc(50% - 11px);
  min-width: 0;
}

.ms-l {
  padding-right: 10px;
}

.ms-r {
  padding-left: 10px;
}

/* Center node */
.ms-dot {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: #0B73B8;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px #0B73B8;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  margin-top: 31px;
}

/* Badge + connector row — LEFT items */
.ms-badge-row {
  display: flex;
  align-items: center;
  flex-direction: row;
  overflow: visible;
}

/* Badge + connector row — RIGHT items (reversed) */
.ms-badge-row-r {
  flex-direction: row-reverse;
}

/* Badge box: year overlaid on wave image */
.ms-badge {
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
}

.ms-wave-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ms-wave-img {
  height: 84px;
  width: auto;
  display: block;
}

/* Year on left-facing wave — sits in the blue rectangle (left portion) */
.ms-wave-year {
  position: absolute;
  left: 38%;
  top: 54%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 700;
  font-size: 1.48rem;
  white-space: nowrap;
  pointer-events: none;
}

/* Year on right-facing wave — sits in the blue rectangle (right portion) */
.ms-badge-r .ms-wave-year {
  left: 62%;
  top: 54%;
}

.ms-pennant {
  display: block;
  flex-shrink: 0;
  margin-left: -1px;
  /* flush against year rect */
}

/* Right badge: pennant on left, year on right */
.ms-badge-r span {
  border-radius: 0 6px 6px 0;
  order: 2;
}

.ms-pennant-r {
  margin-left: 0;
  margin-right: -1px;
  order: 1;
}

/* Badge sits above the line */
.ms-badge {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

/* Orange-to-yellow horizontal connector — LEFT rows */
.ms-conn {
  flex: 1 1 0;
  height: 3px;
  background: #D55733;
  min-width: 0;
  align-self: center;
  position: relative;
  z-index: 1;
  margin-left: -90px;
  /* tuck line behind the wavy tail of the left badge */
  margin-right: -10px;
  /* bridge padding gap so line touches the dot */
}

/* Pennant icon sizing */
.ms-pennant,
.ms-pennant-r {
  width: 42px;
  height: 34px;
  flex-shrink: 0;
  display: block;
}

.ms-conn-r {
  background: #E09E43;
  position: relative;
  z-index: 1;
  margin-left: -10px;
  /* bridge gap so line touches the dot */
  margin-right: -90px;
  /* tuck line behind the wavy tail of the right badge */
}

/* Description text */
.ms-text {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 19px;
  line-height: 1.65;
  color: #28514F;
  width: 100%;
  text-align: left;
}

.ms-text-r {
  text-align: right;
}

/* See More button */
.ms-btn {
  display: inline-block;
  background: #0B73B8;
  color: #fff;
  padding: 10px 28px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  border: 2px solid transparent;
  transition: all 0.22s ease;
}

.ms-btn:hover {
  background: transparent;
  color: #0B73B8;
  border-color: #0B73B8;
}

/* ── Scroll animation: items start hidden/below ── */
.ms-row {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.1s ease, transform 1.1s ease;
}

.ms-row.ms-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   MILESTONES — MOBILE  (≤767px)
   Same desktop layout: center line, left/right
   alternating badges — just scaled down compact.
   Desktop styles are NOT touched.
═══════════════════════════════════════════ */
@media(max-width: 767px) {

  /* Tighten outer panel padding */
  .ms-panel {
    padding: 44px 8px 20px;
  }

  /* Reduce row spacing */
  .ms-row {
    margin-bottom: 20px;
    /* keep display:flex from desktop — just override specifics */
    flex-wrap: nowrap;
    align-items: flex-start;
  }

  /* Halves stay side-by-side, calc minus the smaller dot */
  .ms-half {
    flex: 0 0 calc(50% - 9px);
    min-width: 0;
  }

  .ms-l {
    padding-right: 6px;
  }

  .ms-r {
    padding-left: 6px;
  }

  /* Smaller dot */
  .ms-dot {
    width: 14px;
    height: 14px;
    margin-top: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
  }

  /* Smaller badge SVG */
  .ms-wave-img {
    height: 52px;
  }

  /* Year text inside smaller badge */
  .ms-wave-year {
    font-size: 0.8rem;
    top: 54%;
  }

  .ms-badge-r .ms-wave-year {
    left: 62%;
    top: 54%;
  }

  /* Connector lines — adjust overlap for smaller badge width */
  /* Smaller badge at 52px height → rendered width ≈ 144px
     tail ≈ 40% → ~58px overlap */
  .ms-conn {
    margin-left: -58px;
    margin-right: -6px;
    height: 2px;
  }

  .ms-conn-r {
    margin-right: -58px;
    margin-left: -6px;
    height: 2px;
  }

  /* Tighter description text */
  .ms-text,
  .ms-text-r {
    font-size: 11px;
    line-height: 1.5;
    margin-top: 6px;
  }

  /* Keep right-side text right-aligned to match desktop feel */
  .ms-text-r {
    text-align: right;
  }

  /* Vline and start-circle stay at 50% center — no override needed */
  /* keep top: -50px from base styles */

  /* Section intro text smaller */
  .ms-intro {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .ms-title {
    font-size: 26px;
    line-height: 1.2;
  }
}

@media(max-width:600px) {
  .team-image img {
    width: 500px;
    height: 500px
  }

  .team-name {
    font-size: 18px
  }
}

/* Feature section styles */
.feature {
  padding: 48px 0
}

.feature-inner {
  display: flex;
  gap: 32px;
  align-items: center
}

.feature-left {
  flex: 0 1 400px;
  max-width: 400px
}

.feature-small-logo {
  width: 50px;
  height: 50px;
  margin-bottom: 18px
}

.feature-left h2 {
  color: #0B73B8;
  font-size: 34px;
  margin: 0 0 12px
}

.feature-left .lead {
  color: #28514F;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 10px;
  text-align: justify;
}

.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 24px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.22s ease
}

.btn-primary {
  background: #0B73B8;
  color: #fff
}

.btn-primary:hover {
  background: transparent;
  color: #0B73B8;
  border-color: #0B73B8
}

.feature-right {
  flex: 1;
  max-width: 900px
}

.video-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08)
}

.video-card img {
  width: 100%;
  height: 100%;
  display: block
}

.play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer
}

/* TEAM SLIDER (global fallback) */
.team-slider-viewport {
  position: relative;
  overflow: hidden;
  padding: 28px 0;
  width: 100%
}

.team-track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform .15s cubic-bezier(.2, .9, .2, 1);
  will-change: transform
}

.team-slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px
}

.team-caption {
  margin-bottom: 8px
}

.team-name {
  font-size: 20px;
  color: #0B73B8;
  font-weight: 700
}

.team-role {
  font-size: 14px;
  color: #356077;
  margin-top: 4px
}

.team-image img {
  width: 500px;
  height: 500px;
  object-fit: cover;
  /* border-radius:50%; */
  display: block;
  margin: 0 auto
}

.team-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px
}

.team-dots button {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: none;
  /* background:rgba(20,115,166,0.18); */
  cursor: pointer
}

.team-dots button.active {
  background: #0B73B8
}


/* ═══════════════════════════════════════════
   VALUES SECTION
   FILE: assets/style.css
═══════════════════════════════════════════ */

.values-section {
  background: #ffffff;
  padding-top: 56px !important;
  padding-bottom: 0 !important;
  padding-left: 100px !important;
  padding-right: 100px !important;
}

@media (max-width: 768px) {
  .values-section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* "Our Values" pill */
.pill {
  display: inline-flex;
  align-items: center;
  align-content: center;
  gap: 8px;
  background: #fff;
  padding: 10px 20px 12px;
  border-radius: 20px;
  color: #0B73B8;
  font-weight: 500;
  font-size: 0.88rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

/* Heading */
.values-heading {
  color: #0B73B8;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

/* Body text */
.values-body {
  color: #28514F;
  font-size: 0.95rem;
  line-height: 1.75;
}

/* Image */
.values-img-wrap {
  width: 100%;
}

.values-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* ═══════════════════════════════════════════
   VALUES SECTION + FAQ FIX
   FILE: assets/style.css
═══════════════════════════════════════════ */

.values-section {
  background: transparent;
  /* boxed background applied to inner container */
  padding-top: 64px;
  padding-bottom: 0;
}

/* Boxed panel: apply background, radius and side padding to the inner container */
.values-section .container-xl {
  background: #eaf6fb;
  border-radius: 14px;
  max-width: 1320px;
  padding: 40px 80px !important;
  box-shadow: 0 8px 24px rgba(20, 115, 166, 0.06);
}

@media (max-width: 768px) {
  .values-section .container-xl {
    padding: 20px !important;
  }
}

/* ── FAQ LIST ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Each item — transparent bg so light blue shows through */
.faq-item {
  border-radius: 16px;
  /* rounder corners */
  border: 1.8px solid #0B73B8;
  background: transparent;
  /* ← shows #eaf6fb section bg */
  overflow: hidden;
  transition: background 0.25s, border-color 0.25s;
}

/* Open item = solid blue, rounder */
.faq-item.is-open {
  background: #0B73B8;
  border-color: #0B73B8;
  border-radius: 16px;
}

/* Button row */
.faq-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  border: none;
  background: transparent;
  color: #0B73B8;
  font-weight: 700;
  font-size: 0.93rem;
  cursor: pointer;
  transition: color 0.25s, background .25s, transform .18s;
  border-radius: 12px;
}

/* Open button: white pill inside the blue panel */
.faq-item.is-open .faq-btn {
  background: #fff;
  /* white pill */
  color: #0B73B8;
  /* blue text + icon (svgs use currentColor) */
  margin: 8px;
  /* inset from the item edges */
  padding: 14px 20px;
  /* border-radius: 12px 12px 0 0; */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  width: calc(100% - 16px);
  box-sizing: border-box;
  text-align: left;
}

/* Icon */
.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}

.faq-icon img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

/* Panel hidden by default — use max-height for smooth collapse */
.faq-panel {
  display: none;
  padding: 4px 20px 18px 13px;
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Show when open */
.faq-item.is-open .faq-panel {
  display: block;
}

/* ═══════════════════════════════════════════
   BOOTSTRAP CONTAINER OVERRIDE FIX
   FILE: assets/style.css
   Add this near the TOP of your CSS file
═══════════════════════════════════════════ */

/* Your existing .container was overriding Bootstrap's grid.
   This makes sure Bootstrap container works correctly */
.container,
.container-xl {
  width: 100%;
  /* max-width: 1200px; */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Make Bootstrap row work */
.row {
  display: flex !important;
  flex-wrap: wrap;
}

/* Make Bootstrap columns work */
[class*="col-"] {
  box-sizing: border-box;
}


/* ═════════════════════════════════════════════════════════
   COMPANY PAGE — HERO
═════════════════════════════════════════════════════════ */

/* White gradient top-to-bottom */
.company-hero .hero-overlay {
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.85) 0%,
      rgba(255, 255, 255, 0.65) 20%,
      rgba(255, 255, 255, 0.35) 45%,
      rgba(255, 255, 255, 0.10) 65%,
      rgba(255, 255, 255, 0) 80%);
}

/* Centered text block */
.company-hero .hero-content {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 16px;
  height: auto;
}

/* Small brand icon */
.company-hero-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Heading */
.company-hero .hero-content h1 {
  font-size: 54px;
  line-height: 1.12;
  font-weight: 700;
  color: #0B73B8;
  margin: 0 0 14px;
}

/* Tagline */
.company-hero .hero-content .tagline {
  color: #3d5a66;
  font-size: 16px;
  max-width: 1500px;
  margin: 0 0 18px;
}

/* Orange separator line */
.company-hero-divider {
  width: 180px;
  height: 3px;
  background: linear-gradient(90deg, #e86122 60%, #f0a070 100%);
  border-radius: 2px;
}

/* Dots: white pill background */
.company-hero .hero-dots {
  background: rgba(255, 255, 255, 0.30);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 7px 16px;
  border-radius: 30px;
  gap: 10px;
  bottom: 28px;

}

.company-hero .hero-dots button {
  width: 15px;
  height: 15px;
  background: rgba(255, 255, 255, 0.65);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background .25s;
}

.company-hero .hero-dots button.active {
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);

}

@media (max-width: 768px) {
  /* ── Softer overlay so image is actually visible ── */
  .company-hero .hero-overlay {
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.82) 0%,
        rgba(255, 255, 255, 0.55) 35%,
        rgba(255, 255, 255, 0.15) 65%,
        rgba(255, 255, 255, 0.00) 100%) !important;
  }

  /* ── Content: top-pinned (900px block handles positioning) ── */
  .company-hero .hero-content {
    padding: 0 !important;
    padding-top: 0 !important;
    width: calc(100% - 40px) !important;
    max-width: none !important;
  }

  /* ── Icon: shrink it down ── */
  .company-hero-icon {
    width: 28px !important;
    height: 28px !important;
    margin-bottom: 8px !important;
  }

  .company-hero-icon img {
    width: 28px !important;
    height: auto !important;
  }

  /* ── Heading ── */
  .company-hero .hero-content h1 {
    font-size: 17px !important;
    line-height: 1.2 !important;
    margin-bottom: 5px !important;
  }

  /* ── Tagline: force wrap to 2 lines on mobile ── */
  .company-hero .hero-content .tagline {
    white-space: normal !important;
    max-width: 65% !important;
    font-size: 10px !important;
    line-height: 1.5 !important;
    display: block !important;
  }

  /* ── Dots: strip pill container, clean bare dots ── */
  .company-hero .hero-dots {
    background-color: transparent !important;
    background-image: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    gap: 8px !important;
    bottom: 22px !important;
  }

  .company-hero .hero-dots button {
    width: 8px !important;
    height: 8px !important;
    background: rgba(255, 255, 255, 0.55) !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 50% !important;
    border: none !important;
  }

  .company-hero .hero-dots button.active {
    background: #ffffff !important;
    box-shadow: none !important;
  }
}

/* ── Tablet portrait (769-991px): the block above sizes the hero heading
   for phones (17px), but with no tier above 768px it jumped straight to
   the full 54px desktop size at 769px+ - a hard, disproportionate cliff
   right at the iPad-portrait boundary. Give tablets an in-between size. ── */
@media (min-width: 769px) and (max-width: 991px) {
  .company-hero .hero-content h1 {
    font-size: 36px !important;
    line-height: 1.15 !important;
  }

  .company-hero .hero-content .tagline {
    font-size: 15px !important;
  }
}


/* ═════════════════════════════════════════════════════════
   COMPANY PAGE — OVERVIEW SECTION
═════════════════════════════════════════════════════════ */

.overview-section {
  background: #ffffff;
  padding: 32px 80px;
}

.overview-card {
  background: #eaf6fb;
  border-radius: 20px;
  padding: 52px 100px;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
  overflow: visible;
}

.overview-left {
  flex: 1 1 auto;
  min-width: 0;
}

/* White rounded pill badge */
.overview-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: #ffffff;
  border-radius: 30px;
  padding: 10px 20px 12px;
  font-size: 15px;
  font-weight: 500;
  color: #0B73B8;
  margin-bottom: 22px;
  box-shadow: 0 2px 8px rgba(20, 115, 166, 0.08);
}

.overview-badge svg {
  flex-shrink: 0;
}

.overview-heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.18;
  color: #0B73B8;
  margin: 0 0 18px;
}

.overview-body {
  font-size: 15px;
  line-height: 1.75;
  color: #3a4e5a;
  margin: 0;
  max-width: 520px;
}

/* Right image */
.overview-right {
  flex: 0 1 44%;
  max-width: 44%;
  min-width: 0;
  align-self: center;
  margin-top: 0;
  margin-left: auto;
  margin-right: 80px;
}

.overview-img {
  width: 100%;
  height: 339px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 8px 28px rgba(20, 115, 166, 0.13);
}

@media (max-width: 900px) {
  .overview-card {
    flex-direction: column;
    padding: 36px 24px;
    gap: 28px;
  }

  .overview-right {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
  }

  .overview-img {
    height: 220px;
  }

  .overview-heading {
    font-size: 26px;
  }
}


/* ═════════════════════════════════════════════════════════
   COMPANY PAGE — CREDO SECTION
═════════════════════════════════════════════════════════ */

.credo-section {
  background: transparent;
  padding: 100px 100px 40px;
}

/* Single fixed DNA watermark, stays static behind all content while the page scrolls */
.company-dna-watermark {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('Home page media/leadearshipdna2.png');
  background-size: 1200px auto;
  background-position: left center;
  background-repeat: no-repeat;
  opacity: 0.6;
  z-index: -1;
  pointer-events: none;
}

/* Careers/Governance/Social Impact pages — let the DNA watermark show through,
   same as the Company page. Scoped per body class since these pages share
   the .overview-section/.gov-report-section class names. */
body.careers .overview-section,
body.careers .gov-report-section,
body.careers .gov-report-inner,
body.governance .overview-section,
body.governance .gov-report-section,
body.governance .gov-report-inner,
body.social-impact .overview-section,
body.social-impact .gov-report-section,
body.social-impact .gov-report-inner {
  background: transparent;
}

/* Home page — let the DNA watermark show through in the same way. */
body.home .values-section {
  background: transparent !important;
}

body.home .therapy-section,
body.home .journal-section {
  background: transparent;
}

/* Leadership page — let the DNA watermark show through in the same way. */
body.leadership .board-section {
  background: transparent;
}

/* Contact / Adverse Event / Science pages — same treatment.
   Bloghome uses .blog-grid-section, which has no background set already. */
body.contact .contact-section,
body.adverse-event .ae-info-section,
body.adverse-event .ae-how-section,
body.science .journal-section {
  background: transparent;
}

/* Bootstrap's row.g-5 (48px gutter) uses negative margins that exceed the
   container's default padding at narrow widths, bleeding ~8px past the
   viewport edge. Clip the residual bleed without affecting card spacing. */
.blog-grid-section {
  overflow-x: hidden;
}

.credo-card {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  min-height: 420px;
  background-image: url('Company Media/BECAUSE LIFE IS MORE THAN YEARS LIVED.jpg');
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: flex-start;
}

.credo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  border-radius: inherit;
}

.credo-content {
  position: relative;
  z-index: 2;
  padding: 52px 56px 52px 100px;
  max-width: 760px;
}

.credo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 30px;
  padding: 10px 20px 12px;
  font-size: 15px;
  font-weight: 500;
  color: #0B73B8;
  margin-bottom: 22px;
}

.credo-heading {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.18;
  color: #ffffff;
  margin: 0 0 18px;
}

.credo-body {
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 28px;
}

.credo-btn {
  display: inline-block;
  padding: 10px 28px;
  border: 2px solid rgba(255, 255, 255, 0.80);
  border-radius: 30px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background .22s, color .22s, border-color .22s;
}

.credo-btn:hover {
  background: transparent;
  color: #0B73B8;
  border-color: #0B73B8;
}

@media (max-width: 900px) {
  .credo-content {
    padding: 36px 24px;
    max-width: 100%;
  }

  .credo-heading {
    font-size: 26px;
  }

  .credo-card {
    min-height: 340px;
  }
}


/* ═════════════════════════════════════════════════════════
   COMPANY PAGE — OUR HISTORY SECTION
═════════════════════════════════════════════════════════ */

.history-section {
  background: transparent;
  padding: 80px 100px 40px;
  /* Reduced bottom padding */
}

.history-card {
  background: #eaf6fb;
  border-radius: 12px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 52px 64px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

/* top centered block */
.history-top {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.history-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: #ffffff;
  border-radius: 30px;
  padding: 10px 20px 12px;
  font-size: 15px;
  font-weight: 500;
  color: #0B73B8;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(20, 115, 166, 0.08);
}

.history-heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.18;
  color: #0B73B8;
  margin: 0 0 18px;
  max-width: 100%;
  white-space: nowrap;
}

.history-body {
  font-size: 15px;
  line-height: 1.75;
  color: #3a4e5a;
  margin: 0 0 24px;
  max-width: 1100px;
  width: 100%;
}

.history-btn {
  display: inline-block;
  padding: 9px 28px;
  border: 1.8px solid #0B73B8;
  border-radius: 30px;
  color: #0B73B8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background .22s, color .22s, border-color .22s;
}

.history-btn:hover {
  background: transparent;
  color: #0B73B8;
  border-color: #0B73B8;
}

/* bottom landscape image carousel */
.history-carousel-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.history-carousel-container {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.history-carousel {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.history-slide {
  min-width: 100%;
  position: relative;
  background: #fff;
}

.history-slide img {
  width: 100%;
  height: 480px;
  object-fit: contain;
  background: #f4f8fb;
  display: block;
}

.history-slide-caption {
  padding: 20px 0;
  text-align: center;
}

.history-slide-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #7a8a9a;
  margin: 0;
  letter-spacing: -0.01em;
  white-space: pre-line;
}

.history-carousel-indicators {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}

.history-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid #0B73B8;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.history-indicator.active {
  background: #0B73B8;
  width: 24px;
  border-radius: 10px;
}

@media (max-width: 900px) {
  .history-card {
    padding: 36px 20px 32px;
    gap: 24px;
  }

  .history-heading {
    font-size: 24px;
  }

  .history-slide img {
    height: auto;
    object-fit: contain;
    max-height: 250px;
  }
}


/* ═════════════════════════════════════════════════════════
   COMPANY PAGE — OUR VISION SECTION
═════════════════════════════════════════════════════════ */

.vision-section {
  background: transparent;
  padding: 40px 100px;
}

.vision-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 72px;
}

/* Left image column */
.vision-img-col {
  flex: 0 0 44%;
  max-width: 44%;
}

.vision-img-placeholder {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  background: #c8d8e0;
  display: block;
}

.vision-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* Right text column */
.vision-text-col {
  flex: 1 1 0;
  min-width: 0;
}

.vision-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: #ffffff;
  border: 1.5px solid #d0e6f0;
  border-radius: 30px;
  padding: 10px 20px 12px;
  font-size: 15px;
  font-weight: 500;
  color: #0B73B8;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(20, 115, 166, 0.07);
}

.vision-heading {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.15;
  color: #0B73B8;
  margin: 0 0 18px;
}

.vision-lead {
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.65;
  color: #1a2e3a;
  margin: 0 0 16px;
}

.vision-body {
  font-size: 15px;
  line-height: 1.75;
  color: #3a4e5a;
  margin: 0;
}

@media (max-width: 900px) {
  .vision-inner {
    flex-direction: column-reverse;
    padding: 0 20px;
    gap: 32px;
  }

  .vision-img-col {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
  }

  .vision-heading {
    font-size: 26px;
  }

  .vision-img-placeholder {
    height: 220px;
  }
}


/* ═════════════════════════════════════════════════════════
   COMPANY PAGE — OUR MISSION SECTION
═════════════════════════════════════════════════════════ */

.mission-section {
  background: transparent;
  padding: 40px 100px;
}

.mission-card {
  background: #eaf6fb;
  border-radius: 12px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 52px 64px;
  display: flex;
  align-items: stretch;
  gap: 64px;
}

/* Left column */
.mission-left {
  flex: 0 0 42%;
  max-width: 42%;
  display: flex;
  flex-direction: column;
}

.mission-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: #ffffff;
  border-radius: 30px;
  padding: 10px 20px 12px;
  font-size: 15px;
  font-weight: 500;
  color: #0B73B8;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(20, 115, 166, 0.08);
  align-self: flex-start;
}

.mission-heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.18;
  color: #0B73B8;
  margin: 0 0 16px;
}

.mission-body {
  font-size: 14.5px;
  line-height: 1.75;
  color: #3a4e5a;
  margin: 0 0 22px;
}

.mission-img-wrap {
  width: 100%;
}

.mission-img-placeholder {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  background: #c8d8e0;
  display: block;
}

.mission-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Right column */
.mission-right {
  flex: 1 1 0%;
  min-width: 0;
  max-width: 520px;
  margin-left: auto;
  padding-top: 4px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media (max-width: 960px) {
  .mission-card {
    flex-direction: column;
    padding: 36px 24px;
    gap: 32px;
  }

  .mission-left {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
  }

  .mission-heading {
    font-size: 26px;
  }
}


/* ═════════════════════════════════════════════════════════
   COMPANY PAGE — OUR VALUES SECTION
═════════════════════════════════════════════════════════ */

.values2-section {
  background: transparent;
  padding: 40px 100px;
}

.values2-card {
  background: #eaf6fb;
  border-radius: 12px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 52px 64px;
  display: flex;
  align-items: stretch;
  gap: 64px;
}

/* Left column */
.values2-left {
  flex: 0 0 42%;
  max-width: 42%;
  display: flex;
  flex-direction: column;
}

.values2-heading {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.18;
  color: #0B73B8;
  margin: 0 0 14px;
}

.values2-body {
  font-size: 14px;
  line-height: 1.75;
  color: #3a4e5a;
  margin: 0 0 24px;
  max-width: 680px;
}

/* Right column — accordion (mirrors .mission-right) */
.values2-right {
  flex: 1 1 0%;
  min-width: 0;
  max-width: 520px;
  margin-left: auto;
  padding-top: 4px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media (max-width: 960px) {
  .values2-card {
    flex-direction: column;
    padding: 36px 24px;
    gap: 32px;
  }

  .values2-left {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
  }

  .values2-heading {
    font-size: 24px;
  }
}


/* ═══════════════════════════════════════════════════════════
   LEADERSHIP PAGE — BOARD MEMBERS SECTION
═══════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════
   GOVERNANCE PAGE — ETHICS SECTION
   ═══════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════
   HAMBURGER NAV TOGGLE
═══════════════════════════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 16px;
  z-index: 200;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0B73B8;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hide Contact Us nav item on desktop */
.nav-contact-item {
  display: none;
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .contact-btn {
    display: none;
  }

  .site-header .container {
    padding: 0 clamp(8px, 2vw, 16px);
  }

  .header-inner {
    height: clamp(48px, 7vh, 64px);
  }

  .logo img {
    height: clamp(32px, 4.5vh, 40px);
    max-width: 120px;
  }

  .main-nav ul {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: clamp(49px, calc(7vh + 1px), 65px);
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 149;
    padding: 4px clamp(8px, 1.5vw, 12px) 20px;
    gap: 6px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.10);
    box-sizing: border-box;
  }

  .main-nav.open ul {
    transform: translateX(0);
  }

  .main-nav li {
    width: 100%;
    box-sizing: border-box;
  }

  .main-nav a {
    padding: 10px 12px;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    border-radius: 10px;
    display: block;
    width: 100%;
    box-sizing: border-box;
    color: #0B73B8;
    border: 1.5px solid #0B73B8;
    background: #ffffff;
    transition: background .2s, color .2s;
    white-space: normal;
    word-break: break-word;
    text-align: center;
  }

  .main-nav a.active,
  .main-nav a:hover {
    background: #0B73B8;
    color: #ffffff;
  }

  .main-nav ul:has(a:hover) a.active:not(:hover) {
    background: #ffffff;
    color: #0B73B8;
  }

  .nav-contact-item {
    display: block;
    margin-top: 2px;
  }

  .nav-contact-item a {
    background: #D95C2E !important;
    color: #ffffff !important;
    border: none !important;
  }

  .nav-contact-item a:hover {
    background: #bf4d22 !important;
    color: #ffffff !important;
  }

  .nav-indicator {
    display: none;
  }
}

/* Ultra-small mobile (320px - 480px) */
@media (max-width: 480px) {
  .header-inner {
    height: clamp(44px, 6vh, 56px);
  }

  .logo img {
    height: clamp(28px, 4vh, 36px);
    max-width: 100px;
  }

  .hamburger {
    padding: 6px;
    margin-left: 8px;
  }

  .hamburger span {
    width: 22px;
    height: 1.8px;
  }

  .main-nav ul {
    top: clamp(44px, 6vh, 56px);
    padding: clamp(6px, 1.2vh, 12px) clamp(6px, 1.2vw, 10px) 16px;
    gap: 4px;
  }

  .main-nav a {
    padding: 8px 10px;
    font-size: clamp(0.8rem, 1.6vw, 0.9rem);
  }
}

/* Small mobile (481px - 640px) */
@media (max-width: 640px) and (min-width: 481px) {
  .header-inner {
    height: clamp(48px, 7vh, 60px);
  }

  .logo img {
    height: clamp(32px, 4.5vh, 40px);
    max-width: 110px;
  }

  .main-nav ul {
    padding: clamp(8px, 1.5vh, 16px) clamp(8px, 1.5vw, 12px) 20px;
    gap: 5px;
  }

  .main-nav a {
    padding: 9px 11px;
    font-size: clamp(0.82rem, 1.7vw, 0.93rem);
  }
}

/* ═══════════════════════════════════════════════════════
   COMPANY PAGE — MOBILE RESPONSIVE (≤ 767px)
═══════════════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* Reduce outer section padding from 100px */
  .overview-section,
  .credo-section,
  .history-section,
  .therapy-section,
  .vision-section,
  .mission-section,
  .values2-section {
    padding: 40px 16px;
  }

  /* ── Overview ── */
  .overview-card {
    padding: 28px 20px;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .overview-left {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
    width: 100%;
  }

  .overview-heading {
    font-size: 24px;
    text-align: center !important;
  }

  .overview-body {
    text-align: center !important;
    max-width: 100% !important;
  }

  .overview-badge {
    align-self: center;
  }

  .overview-right {
    margin-right: 0;
    margin-top: 0;
    flex: 0 0 auto !important;
    max-width: 100% !important;
    width: 100% !important;
    display: flex;
    justify-content: center;
  }

  .overview-img {
    width: 100% !important;
    height: 200px !important;
    border-radius: 12px !important;
    object-fit: cover;
    display: block;
  }

  /* ── Credo ── */
  .credo-card {
    align-items: center !important;
  }

  .credo-content {
    padding: 28px 20px !important;
    max-width: 100%;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center !important;
  }

  .credo-heading {
    font-size: 24px;
    text-align: center !important;
  }

  .credo-body {
    text-align: center !important;
  }

  .credo-badge {
    align-self: center;
  }

  /* ── History ── */
  .history-card {
    padding: 28px 20px;
    align-items: center !important;
  }

  .history-top {
    align-items: center !important;
    text-align: center !important;
  }

  .history-heading {
    white-space: normal !important;
    font-size: 22px;
    text-align: center !important;
  }

  .history-body {
    text-align: center !important;
  }

  .history-badge {
    align-self: center;
  }

  .history-btn {
    align-self: center;
  }

  .history-img {
    height: 180px;
  }

  /* ── Vision ── */
  .vision-inner {
    flex-direction: column !important;
    padding: 0;
    gap: 24px;
    align-items: center !important;
  }

  .vision-img-col {
    flex: 0 0 auto !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .vision-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
  }

  .vision-text-col {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
    width: 100%;
  }

  .vision-heading {
    font-size: 26px;
    text-align: center !important;
  }

  .vision-lead,
  .vision-body {
    text-align: center !important;
  }

  .vision-badge {
    align-self: center;
  }

  /* ── Mission ── */
  .mission-card {
    padding: 28px 20px;
    flex-direction: column !important;
    align-items: center !important;
  }

  .mission-left {
    flex: 0 0 auto !important;
    max-width: 100% !important;
    width: 100% !important;
    align-items: center !important;
    display: flex;
    flex-direction: column;
    text-align: center !important;
  }

  .mission-heading {
    font-size: 24px;
    text-align: center !important;
  }

  .mission-body {
    text-align: center !important;
  }

  .mission-badge {
    align-self: center;
  }

  .mission-right {
    max-width: 100%;
    width: 100%;
  }

  .mission-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
  }

  /* ── Values ── */
  .values2-card {
    padding: 28px 20px;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .values2-left {
    flex: 0 0 auto !important;
    max-width: 100% !important;
    width: 100% !important;
    align-items: flex-start !important;
    display: flex;
    flex-direction: column;
    text-align: left !important;
  }

  .values2-heading {
    font-size: 22px;
    text-align: left !important;
  }

  .values2-body {
    text-align: left !important;
  }

  .values2-right {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  /* Global heading sizes */
  h1 {
    font-size: 40px;
    line-height: 1.1;
  }

  h2 {
    font-size: 28px;
  }
}

.gov-ethics-section {
  padding-top: 88px;
  padding-bottom: 56px;
}

/* When an ethics section immediately follows a report section (Governance,
   Social Impact), its 88px top padding stacks with the report section's
   32px bottom padding for a 120px gap. Tighten just that transition. */
.gov-report-section + .overview-section.gov-ethics-section {
  padding-top: 48px;
}

/* ── Governance: normalise image column to match gov-report-img-col ── */
.gov-ethics-section .overview-right {
  flex: 0 0 40%;
  max-width: 40%;
  margin-right: 20px;
  margin-top: 0;
}

.gov-ethics-section .overview-img {
  height: 339px;
  border-radius: 18px;
  box-shadow: none;
}

.gov-report-img {
  height: 339px;
  border-radius: 18px;
}

.gov-ethics-icon {
  margin-bottom: 20px;
}

.gov-see-more-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 10px 28px;
  border: 2px solid #0B73B8;
  border-radius: 30px;
  color: #0B73B8;
  background: transparent;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background .22s, color .22s, border-color .22s;
}

.gov-see-more-btn:hover {
  background: transparent;
  color: #0B73B8;
  border-color: #0B73B8;
}

/* ─── Reporting Misconduct ─── */
.gov-report-section {
  background: #ffffff;
  padding: 0 80px;
}

.gov-report-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 52px 100px;
  background: #ffffff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.gov-report-img-col {
  flex: 0 0 44%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gov-report-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.gov-report-content {
  flex: 1 1 0;
  min-width: 0;
}

.gov-report-heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.18;
  color: #0B73B8;
  margin: 0 0 18px;
}

.gov-report-body {
  font-size: 15px;
  line-height: 1.75;
  color: #3a4e5a;
  margin: 0 0 16px;
}

.gov-report-contact {
  font-size: 15px;
  line-height: 1.9;
  color: #3a4e5a;
  margin: 0;
}

.gov-report-contact a {
  color: #0B73B8;
  text-decoration: underline;
}

/* Compliance bullet list */
.gov-compliance-list {
  padding-left: 20px;
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.9;
  color: #3a4e5a;
}

.gov-compliance-list li {
  margin-bottom: 4px;
  font-size: 15px;
}

/* Reference / citation line under the social impact bullet list */
.gov-report-reference {
  display: block;
  font-style: normal;
  font-size: 15px;
  color: #5a6a7a;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #e0e8ef;
}

/* Button row */
.gov-compliance-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.gov-compliance-btns .gov-see-more-btn {
  margin-top: 0;
  line-height: 1;
  vertical-align: middle;
}

.gov-download-btn {
  display: inline-block;
  padding: 10px 28px;
  background: #0B73B8;
  border: 2px solid #0B73B8;
  border-radius: 30px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background .22s, color .22s;
}

.gov-download-btn:hover {
  background: #0f5a88;
  border-color: #0f5a88;
  color: #ffffff;
}

@media (max-width: 900px) {
  .gov-report-inner {
    flex-direction: column;
    gap: 36px;
    padding: 28px 20px;
  }

  .gov-report-img-col {
    flex: none;
    width: 100%;
  }

  .gov-report-img {
    height: 220px;
  }

  .gov-report-heading {
    font-size: 26px;
  }
}

/* ═══════════════════════════════════════════════════════════
   LEADERSHIP PAGE — BOARD MEMBERS SECTION
   ═══════════════════════════════════════════════════════════ */
.board-section + .board-section {
  margin-top: 0;
  padding-top: 0;
}

.board-section {
  background: #ffffff;
  padding: 80px 100px;
  margin-top: 0;
}

.board-header {
  text-align: center;
  margin-bottom: 52px;
  padding-top: 0;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.board-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #ffffff;
  border-radius: 30px;
  padding: 6px 16px 6px 10px;
  font-size: 13px;
  font-weight: 500;
  color: #0B73B8;
  margin-bottom: 22px;
  box-shadow: 0 2px 8px rgba(20, 115, 166, 0.08);
}

.board-header-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.board-title {
  font-size: 34px;
  font-weight: 700;
  color: #0B73B8;
  margin: 0 0 12px;
}

.board-subtitle {
  font-size: 15px;
  line-height: 1.65;
  color: #3a4e5a;
  margin: 0 auto;
  max-width: 740px;
}

/* Grid — 4 columns */
.board-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1250px;
  /* Increased from 1140px */
  margin: 0 auto;
}

/* Card — tall portrait */
.board-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 6px 24px rgba(20, 115, 166, 0.10);
}

.board-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .4s ease;
}

.board-card:hover .board-img {
  transform: scale(1.04);
}

/* Dark gradient at bottom for legibility */
.board-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.28) 38%,
      rgba(0, 0, 0, 0) 62%);
  pointer-events: none;
}

/* Info overlaid on image */
.board-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
}

.board-name {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3px;
}

.board-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 12px;
}

/* LinkedIn pill */
.board-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  color: #0a66c2;
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 11px;
  /* Slightly smaller */
  font-weight: 500;
  text-decoration: none;
  transition: background .2s, color .2s;
}

.board-linkedin:hover {
  background: #0a66c2;
  color: #ffffff;
}

@media (max-width: 991px) {
  .board-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .board-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .board-title {
    font-size: 24px;
  }
}


/* ============================================================
   JOURNAL SECTION
   ============================================================ */
.journal-section {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 70px;
}

/* Icon */
.journal-icon svg {
  filter: drop-shadow(0 4px 10px rgba(232, 96, 60, 0.25));
}

/* Heading */
.journal-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--blue-dark);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

/* Subtitle */
.journal-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---- Blog Card (Flippable) ---- */
.blog-card-container {
  perspective: 1000px;
  height: 450px;
  /* Adjusted height */
  margin-bottom: 20px;
}

.blog-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  cursor: pointer;
}

.blog-card-container:hover .blog-card-inner {
  transform: rotateY(180deg);
}

.blog-card-front,
.blog-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: #fff;
  border: 1px solid #e8f0f7;
}

.blog-card-front {
  display: flex;
  flex-direction: column;
}

.blog-card-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  background-color: #f0f7ff;
  text-align: center;
}

/* Image wrapper in front */
.blog-img-wrap {
  width: 100%;
  height: 65%;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card-container:hover .blog-img {
  transform: scale(1.1);
}

/* Card body in front */
.blog-front-body {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.blog-title {
  font-family: 'AvenirLTStd', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0B73B8;
  margin: 0;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 1rem;
  color: #3a5068;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Learn More button on back */
.btn-learn-more {
  display: inline-block;
  padding: 12px 28px;
  background: #0B73B8;
  color: #fff;
  border-radius: 50px;
  font-family: 'AvenirLTStd', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #0B73B8;
}

.btn-learn-more:hover {
  background: transparent;
  color: #0B73B8;
}



/* ============================================================
   CONTACT FORM
   ============================================================ */
.cf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cf-label {
  font-size: 13px;
  font-weight: 500;
  color: #0B73B8;
}

.cf-input {
  border: none;
  border-bottom: 1.5px solid #c0cfd8;
  outline: none;
  font-size: 15px;
  color: #1a2a3a;
  padding: 6px 0;
  background: transparent;
  width: 100%;
  transition: border-color 0.2s;
}

.cf-input:focus {
  border-bottom-color: #0B73B8;
}

.cf-input::placeholder {
  color: #b0bec5;
}

.cf-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #3a4a5c;
  cursor: pointer;
}

.cf-radio input[type="radio"] {
  accent-color: #0B73B8;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* ============================================================
   CAREERS — JOB CARDS
   ============================================================ */
.job-card {
  border: 1px solid #e0e8ef;
  border-radius: 12px;
  padding: 20px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
}

.job-card-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.job-title {
  font-size: 17px;
  font-weight: 700;
  color: #1a2a3a;
  margin: 0;
}

.job-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.job-badge {
  background: #dbeeff;
  color: #0B73B8;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.job-salary {
  font-size: 13px;
  color: #5a6a7a;
}

.job-card-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #eef2f5;
  padding-top: 12px;
}

.job-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #e0e8ef;
  object-fit: contain;
  padding: 2px;
}

.job-company {
  font-size: 14px;
  font-weight: 500;
  color: #1a2a3a;
}

.job-location {
  font-size: 13px;
  color: #7a8a9a;
  margin-top: 2px;
}

.job-bookmark {
  margin-left: auto;
  font-size: 18px;
  color: #b0bec5;
  cursor: pointer;
}

.job-page-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #c0cfd8;
  background: #fff;
  color: #0B73B8;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.job-page-btn.active,
.job-page-btn:hover {
  background: #0B73B8;
  color: #fff;
  border-color: #0B73B8;
}

@media (max-width: 767px) {
  #jobGrid {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #ffffff;
  padding: 56px 0 28px;
  border-top: 1px solid var(--border);
}

/* Logo text */
.footer-logo-link {
  text-decoration: none;
  display: block;
}

.footer-logo-img {
  height: 53px;
  width: auto;
  max-width: 100%;
  display: block;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--blue-dark);
  letter-spacing: -1px;
}

.logo-x {
  color: var(--orange);
}

/* Description */
.footer-desc {
  font-size: 0.9rem;
  color: #28514F;
  line-height: 1.65;
  max-width: 300px;
}

/* Social icon */
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #0B73B8;
  font-size: 2.8rem;
  text-decoration: none;
  transition: color 0.25s ease;
  margin-top: 6px;
}

.footer-social i {
  color: #0B73B8;
}

.footer-social:hover {
  background: transparent;
  color: #095d94;
}

/* Nav heading */
.footer-nav-heading {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: #28514F;
  margin-bottom: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Nav links list */
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  margin-bottom: 11px;
}

.footer-nav-list a {
  color: #28514F;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-nav-list a:hover {
  color: #28514F;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Divider */
.footer-divider {
  border-color: var(--border);
  margin: 32px 0 18px;
}

/* Copyright */
.footer-copy {
  font-size: 0.82rem;
  color: #28514F;
  margin: 0;
}

/* ═════════════════════════════════════════════════════════════
   PRODUCTS PAGE — FILTER + GRID SECTION
   ═════════════════════════════════════════════════════════════ */
.products-section {
  background: #eaf6fb;

  padding: 56px 20px 72px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  width: 100%;
  transition: background-image 0.5s ease-in-out;
}

/* Oncology Category Background */
.products-section[data-category="oncology"] {
  background-image:
    linear-gradient(rgba(234, 246, 251, 0.9), rgba(234, 246, 251, 0.9)),
    url('Products/oncology.jpg');
}

/* Immunology Category Background */
.products-section[data-category="immunology"] {
  background-image:
    linear-gradient(rgba(234, 246, 251, 0.9), rgba(234, 246, 251, 0.9)),
    url('Products/immunology.jpg');
}

/* Cardiometabolic Category Background */
.products-section[data-category="cardiometabolic"] {
  background-image:
    linear-gradient(rgba(234, 246, 251, 0.9), rgba(234, 246, 251, 0.9)),
    url('Products/Cardiometabolic.jpg');
}

/* Ophthalmology Category Background */
.products-section[data-category="ophthalmology"] {
  background-image:
    linear-gradient(rgba(234, 246, 251, 0.9), rgba(234, 246, 251, 0.9)),
    url('Products/opthamology.jpg');
}

/* General Medicines Category Background */
.products-section[data-category="general"] {
  background-image:
    linear-gradient(rgba(234, 246, 251, 0.9), rgba(234, 246, 251, 0.9)),
    url('Products/general-medicine.jpg');
}

/* All Products Category Background */
.products-section[data-category="all"] {
  background-image:
    linear-gradient(rgba(234, 246, 251, 0.9), rgba(234, 246, 251, 0.9)),
    url('Products/all products.jpg');
}

/* Science Category Background */
.products-section[data-category="science"] {
  background-image:
    linear-gradient(rgba(234, 246, 251, 0.9), rgba(234, 246, 251, 0.9)),
    url('Products/science.jpg');
}

.products-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* Filter bar */
.products-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.prod-filter-btn {
  padding: 8px 22px;
  border-radius: 30px;
  border: 2px solid #0B73B8;
  background: transparent;
  color: #0B73B8;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s, color .2s;
}

.prod-filter-btn:hover {
  background: #d0eaf6;
}

.prod-filter-btn.active {
  background: #0B73B8;
  color: #ffffff;
}

/* Subtitle */
.products-subtitle {
  font-size: 15px;
  color: #3a4e5a;
  text-align: center;
  margin: 0 auto 40px;
  max-width: 860px;
  line-height: 1.65;
}

/* 3-column grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.prod-card {
  background: #ffffff;
  border: 2px solid #b8d8ec;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}

.prod-card:hover {
  box-shadow: 0 8px 28px rgba(20, 115, 166, 0.13);
  transform: translateY(-4px);
}

.prod-card.hidden {
  display: none;
}

/* Image area */
.prod-img-wrap {
  /* background: #f0f4f7; */
  background: #ffffff;
  border-radius: 12px;
  margin: 14px 14px 0;
  overflow: hidden;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}

/* Info */
.prod-info {
  padding: 20px 20px 24px;
  flex: 1;
}

.prod-name {
  font-size: 20px;
  font-weight: 700;
  color: #0B73B8;
  margin: 0 0 10px;
}

.prod-body {
  font-size: 13.5px;
  line-height: 1.7;
  color: #3a4e5a;
  margin: 0;
}

.prod-disclaimer {
  font-size: 11px;
  line-height: 1.5;
  color: #7a8a9a;
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px solid #e0e8ef;
}

.prod-tag {
  display: none;
  /* HIDDEN — remove this line to restore */
  margin-top: 8px;
  padding: 3px 10px;
  background: #eaf6fb;
  color: #0B73B8;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Pagination arrows — centered row */
.prod-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  margin-bottom: 24px;
}

.prod-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #0B73B8;
  background: transparent;
  color: #0B73B8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s;
}

.prod-nav-btn:hover,
.prod-nav-btn.active {
  background: #0B73B8;
  color: #ffffff;
}

.prod-nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.products-filters-bottom {
  justify-content: center;
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .products-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ═══════════════════════════════════════════════════════
   SCIENCE BEHIND OUR PRODUCTS SECTION
═══════════════════════════════════════════════════════ */
.science-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
  padding: 50px 20px;
  min-height: auto;
}

.science-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.science-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #0B73B8;
  /* margin-bottom: 20px; */
  letter-spacing: -0.5px;
}

/* Slider Wrapper */
.science-slider-wrapper {
  position: relative;
  /* margin-bottom: 20px; */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Slider Container */
.science-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Individual Slide */
.science-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  min-width: 100%;
}

.science-slide.active {
  display: flex;
  opacity: 1;
}

/* Slide Image */
.science-slide-img {
  background: #ffffff;
  border: 2px solid #b8d8ec;
  border-radius: 16px;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(20, 115, 166, 0.08);
}

.science-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}

/* Slide Name */
.science-slide-name {
  font-size: 28px;
  font-weight: 700;
  color: #0B73B8;
  margin: 0;
}

/* Navigation Buttons */
.science-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #0B73B8;
  background: transparent;
  color: #0B73B8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.science-nav-btn:hover,
.science-nav-btn.active {
  background: #0B73B8;
  color: #ffffff;
  transform: scale(1.1);
}

.science-nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

/* Content Section */
.science-content {
  max-width: 900px;
  margin: 0 auto;
}

/* Description Text */
.science-description {
  font-size: 16px;
  line-height: 1.8;
  color: #3a4e5a;
  text-align: center;
  margin-bottom: 20px;
  padding: 0 20px;
}

/* 4 Points Container */
.science-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 10px;
}

/* Individual Point */
.science-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 16px;
  background: #ffffff;
  border: 2px solid #b8d8ec;
  border-radius: 12px;
  transition: all 0.3s ease;
  min-height: 120px;
}

.science-point:hover {
  border-color: #0B73B8;
  box-shadow: 0 6px 20px rgba(20, 115, 166, 0.12);
  transform: translateY(-4px);
}

/* Point Icon */
.point-icon {
  font-size: 40px;
  margin-bottom: 12px;
  line-height: 1;
  color: #0B73B8;
  font-weight: bold;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #ffffff;
}

/* Point Text */
.point-text {
  font-size: 15px;
  font-weight: 600;
  color: #0B73B8;
  margin: 0;
}

/* Points Wrapper with Navigation */
.science-points-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Bottom Navigation */
.science-bottom-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* Responsive: 2 columns on tablet */
@media (max-width: 900px) {
  .science-points {
    grid-template-columns: repeat(2, 1fr);
  }

  .science-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .science-slide-img {
    height: 250px;
  }
}

/* Responsive: Stacked on mobile */
@media (max-width: 600px) {
  .science-section {
    padding: 50px 16px;
  }

  .science-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .science-slider-wrapper {
    margin-bottom: 40px;
  }

  .science-nav-btn {
    width: 36px;
    height: 36px;
  }

  .science-slide-img {
    height: 200px;
    margin-bottom: 16px;
  }

  .science-slide-name {
    font-size: 20px;
  }

  .science-description {
    font-size: 14px;
    margin-bottom: 32px;
    padding: 0 12px;
  }

  .science-points {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .science-point {
    padding: 20px;
  }

  .point-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }

  .point-text {
    font-size: 13px;
  }
}


/* ═══════════════════════════════════════════════════════
   CONTACT PAGE — RESPONSIVE LAYOUT CLASSES
═══════════════════════════════════════════════════════ */
.contact-section {
  background: #fff;
  padding: 60px 0 80px;
}

.contact-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.contact-info-card {
  flex: 0 0 420px;
  background: #0B73B8;
  border-radius: 16px;
  padding: 48px 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-form-col {
  flex: 1;
  padding: 10px 0 0;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.contact-map-section {
  background: #f4f7fb;
  padding: 48px 0 60px;
}

.contact-map-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.contact-map-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 460px;
  box-shadow: 0 4px 24px rgba(20, 115, 166, 0.10);
}


/* ═══════════════════════════════════════════════════════
   GLOBAL MOBILE — All pages (≤ 767px)
═══════════════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* Header */
  .site-header>div,
  .site-header .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Hero */
  .hero {
    height: 56.25vw !important;
    min-height: 200px !important;
  }

  .slide {
    background-size: 100% 100% !important;
  }

  .company-hero-divider {
    width: 100px;
  }

  /* Home — feature section */
  .feature {
    padding: 28px 16px;
  }

  .feature-inner {
    flex-direction: column;
    gap: 20px;
  }

  .feature-right {
    width: 100% !important;
  }

  .feature-left {
    text-align: center;
  }

  .feature-small-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .feature-left h2 {
    font-size: 22px;
  }

  /* Leadership — board section */
  .board-section {
    padding: 28px 16px 48px;
    margin-top: 0;
  }

  .board-header {
    padding-top: 16px;
    margin-bottom: 24px;
  }

  .board-title {
    font-size: 24px;
  }

  .board-subtitle {
    font-size: 13.5px;
  }

  .board-grid {
    grid-template-columns: 1fr;
    gap: 80px;
    max-width: 480px;
  }

  .board-info {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  /* Governance / Social Impact — gov-report section */
  .gov-report-section {
    padding: 32px 16px 40px;
  }

  .gov-report-inner {
    flex-direction: column;
    gap: 20px;
  }

  .gov-report-img-col {
    flex: none;
    width: 100%;
  }

  .gov-report-img {
    height: 200px;
  }

  .gov-report-heading {
    font-size: 22px;
  }

  .gov-report-body {
    font-size: 14px;
  }

  /* gov-ethics section */
  .gov-ethics-section {
    padding-bottom: 32px;
  }

  /* Overview sections (Governance, Social Impact pages) */
  .overview-section {
    padding: 32px 16px !important;
  }

  .overview-card {
    padding: 24px 16px !important;
  }

  .overview-heading {
    font-size: 22px !important;
  }

  .overview-body {
    font-size: 14px !important;
    max-width: 100% !important;
  }

  .overview-img {
    height: 200px;
  }

  /* Products */
  .products-section {
    padding: 24px 12px 40px;
  }

  .products-grid {
    grid-template-columns: 1fr !important;
  }

  .products-filters {
    gap: 6px;
    margin-bottom: 16px;
  }

  .prod-filter-btn {
    padding: 6px 12px;
    font-size: 12px;
  }

  .products-subtitle {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .prod-img-wrap {
    height: 160px;
  }

  .prod-name {
    font-size: 17px;
  }

  /* Contact page */
  .contact-section {
    padding: 32px 0 44px;
  }

  .contact-layout {
    flex-direction: column;
    padding: 0 16px;
    gap: 24px;
  }

  .contact-form-col {
    order: -1;
  }

  .contact-info-card {
    order: 1;
  }

  .contact-info-card {
    flex: none;
    width: 100%;
    padding: 28px 20px;
  }

  .contact-form-col {
    padding: 0;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-map-section {
    padding: 24px 0 32px;
  }

  .contact-map-inner {
    padding: 0 16px;
  }

  .contact-map-frame {
    height: 280px;
  }

  /* Footer */
  .site-footer {
    padding: 36px 0 20px;
  }

  .footer-desc {
    max-width: 100%;
  }

  .footer-logo-img {
    height: auto;
    max-width: 240px;
  }

  /* Footer mobile: single column, all links stacked left-aligned */
  .site-footer .col-12.col-md-8 {
    justify-content: flex-start !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .site-footer .footer-link-columns {
    flex-direction: column !important;
    gap: 0 !important;
    transform: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }

  .site-footer .footer-nav-list {
    align-items: flex-start !important;
    width: 100% !important;
    padding-left: 0 !important;
  }

  .site-footer .footer-nav-list li {
    width: 100%;
    border-bottom: 1px solid #e8eff4;
    margin-bottom: 0 !important;
  }

  .site-footer .footer-nav-list a {
    display: block;
    padding: 13px 0 13px 16px;
    font-size: 1rem;
    color: #1a2a3a;
    text-align: left !important;
  }

  /* Global heading scale */
  .board-title,
  .gov-report-heading,
  .history-heading {
    white-space: normal !important;
  }
}



/* ═════════════════════════════════════════════════════════
   THERAPY AREA COVERAGE SECTION
   ═════════════════════════════════════════════════════════ */
.therapy-section {
  background: #fff;
  padding: 40px 100px 20px;
}

.therapy-card {
  background: #eaf6fb;
  border-radius: 12px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  width: 100%;
}

.therapy-card-header {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 50px;
  /* Increased space as requested */
}

.therapy-card-body {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 30px;
  min-width: 0;
  width: 100%;
}

.therapy-image-side {
  flex: 0 0 45%;
  min-width: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.therapy-image-side img {
  width: 100%;
  max-width: 540px;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
  transition: opacity 0.5s ease;
}

.therapy-content-side {
  flex: 1;
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Header pill inside the card header */
.therapy-header-pill {
  background: #fff;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  color: #0B73B8;
  font-weight: 500;
  font-size: 15px;
  box-shadow: 0 4px 15px rgba(20, 115, 166, 0.08);
  width: auto;
}

.therapy-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  width: 100%;
}

.therapy-tab {
  padding: 6px 14px;
  border: 1.5px solid #0B73B8;
  border-radius: 35px;
  background: transparent;
  color: #0B73B8;
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.therapy-tab:hover {
  background: rgba(11, 115, 184, 0.08);
  transform: translateY(-2px);
}

.therapy-tab.active {
  background: #0B73B8;
  color: #fff;
  box-shadow: 0 6px 16px rgba(11, 115, 184, 0.25);
}

.therapy-text-wrap {
  animation: therapyFadeIn 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes therapyFadeIn {
  from {
    opacity: 0;
    transform: translateX(-15px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.therapy-text-wrap h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #0B73B8;
  margin-bottom: 22px;
  line-height: 1.1;
  word-wrap: break-word;
  white-space: normal;
}

.therapy-text-wrap p {
  font-size: 16.5px;
  line-height: 1.8;
  color: #3a4e5a;
  margin-bottom: 0;
  width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .therapy-card-body {
    flex-direction: column;
    text-align: center;
  }

  .therapy-image-side {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding-bottom: 30px;
  }

  .therapy-content-side {
    padding-left: 0;
  }

  .therapy-tabs {
    justify-content: center;
  }

  .therapy-text-wrap p {
    margin: 0 auto;
  }
}

@media (max-width: 991px) {
  .therapy-section {
    padding: 60px 20px;
  }

  .therapy-card {
    border-radius: 20px;
    padding: 30px 20px;
  }

  .therapy-card-body {
    flex-direction: column;
  }

  .therapy-image-side {
    flex: 0 0 auto;
    width: 100%;
    padding: 0 0 30px 0;
  }

  .therapy-image-side img {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }

  .therapy-content-side {
    padding: 0;
  }

  .therapy-text-wrap {
    margin-top: 10px;
  }

  .therapy-text-wrap h2 {
    font-size: 32px;
    text-align: center;
  }

  .therapy-text-wrap p {
    text-align: center;
    margin: 0 auto;
  }

  .therapy-tabs {
    justify-content: center;
    flex-wrap: wrap;
    /* Allow wrapping on mobile to remove scrollbar */
    gap: 8px;
    /* Slightly tighter gap */
    overflow-x: hidden;
    /* Remove scrollbar */
    padding-bottom: 0;
  }
}

@media (max-width: 576px) {
  .therapy-section {
    padding: 40px 15px;
  }

  .therapy-text-wrap h2 {
    font-size: 28px;
  }

  .therapy-tab {
    padding: 7px 14px;
    font-size: 12px;
  }
}

/* ═══════════════════════════════════════════
   SCIENCE BEHIND OUR PRODUCTS — NEW LAYOUT
   (text left | product card right)
═══════════════════════════════════════════ */
.science-section {
  background: #f7f9fb;
  padding: 72px 0 64px;
}

.science-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.science-title {
  font-family: 'AvenirLTStd', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #0B73B8;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  text-align: center;
}

/* Two-column wrapper */
.science-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: center;
  margin-top: 16px;
}

/* ── LEFT COLUMN ── */
.science-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.science-description {
  font-family: 'AvenirLTStd', sans-serif;
  font-size: 1rem;
  color: #3a5068;
  line-height: 1.8;
  margin: 0 0 4px;
}

.science-points {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
}

.science-point {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #fff;
  border: 1.5px solid #0B73B8;
  border-radius: 12px;
  padding: 12px 12px;
  box-shadow: 0 2px 8px rgba(11, 115, 184, 0.08);
}

.science-point::before {
  content: none;
  display: none;
}

.science-point .point-text {
  font-family: 'AvenirLTStd', sans-serif;
  font-size: 0.82rem;
  color: #0B73B8;
  line-height: 1.5;
  margin: 0;
  word-break: break-word;
}

/* ── RIGHT COLUMN ── */
.science-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Product card */
.science-card {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #d8e6f0;
  background: #fff;
  box-shadow: 0 4px 24px rgba(11, 35, 66, 0.08);
  position: relative;
}

.science-card-img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  display: block;
  background: #f0f5f9;
  padding: 20px;
  transition: opacity 0.2s ease;
}

.science-card-label {
  font-family: 'AvenirLTStd', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0B2342;
  text-align: center;
  padding: 14px 16px 16px;
  background: #fff;
  border-top: 1px solid #e8f0f7;
}

/* Nav arrows row (below card) */
.science-nav-row {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
}

.science-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #0B73B8;
  background: #fff;
  color: #0B73B8;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.science-nav-btn:hover:not(:disabled) {
  background: #0B73B8;
  color: #fff;
  transform: scale(1.08);
}

.science-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  border-color: #b0c4d8;
  color: #b0c4d8;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .science-points {
    flex-wrap: wrap;
  }

  .science-point {
    flex: 1 1 calc(50% - 10px);
  }
}

@media (max-width: 900px) {
  .science-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .science-right {
    order: -1;
    /* card above text on tablet/mobile */
  }

  .science-card {
    max-width: 380px;
  }

  .science-card-img {
    height: 260px;
  }

  .science-points {
    flex-wrap: wrap;
  }

  .science-point {
    flex: 1 1 calc(50% - 10px);
  }
}

@media (max-width: 576px) {
  .science-inner {
    padding: 0 18px;
  }

  .science-section {
    padding: 48px 0 40px;
  }

  .science-card-img {
    height: 190px;
  }
}

/* SOP Modal Styles */
.sop-modal-content {
  border-radius: 20px;
  border: none;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.sop-modal-body {
  position: relative;
  padding: 40px;
  background: #fdfdfd;
  min-height: 400px;
  user-select: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
}

.sop-logo-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.12;
  /* Increased from 0.05 for better visibility */
  width: 60%;
  pointer-events: none;
  z-index: 1;
}

.sop-logo-bg img {
  width: 100%;
  height: auto;
}

.sop-text-content {
  position: relative;
  z-index: 2;
  color: #444;
  line-height: 1.8;
}

.sop-text-content h4 {
  color: #0B73B8;
  font-weight: 700;
  margin-bottom: 20px;
}

.sop-text-content h5 {
  color: #0B73B8;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
}

.sop-text-content p {
  margin-bottom: 16px;
}