:root {
  --color-brand-blue: #005B82;
  --color-brand-orange: #F07D00;
  --color-brand-dark: #002B3E;
  --color-brand-light-blue: #0284c7;

  --font-family: "Poppins", sans-serif;
  --font-primary: var(--font-family);
  --font-display: var(--font-family);
  --font-size-base: 16px;
  --line-height-base: 1.625;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 26px;
  font-weight: var(--font-weight-regular);
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-image: linear-gradient(rgba(248, 250, 252, 0.35), rgba(248, 250, 252, 0.35)), url('images/pharma_smoke_bg.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family);
}

h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 68px;
}

h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
}

h3 {
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
}

h4 {
  font-size: 32px;
  font-weight: 600;
  line-height: 42px;
}

h5 {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
}

h6 {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}

.small-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

caption,
.caption {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}

button,
.btn,
input[type="button"],
input[type="submit"] {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}

/* Responsive Typography overrides */
@media (max-width: 1024px) {
  h1 {
    font-size: 44px;
    line-height: 54px;
  }

  h2 {
    font-size: 38px;
    line-height: 46px;
  }

  h3 {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 34px;
    line-height: 42px;
  }

  h2 {
    font-size: 30px;
    line-height: 38px;
  }

  h3 {
    font-size: 26px;
    line-height: 34px;
  }

  body {
    font-size: 16px;
  }
}

/* Hide scrollbar for Chrome, Safari and Opera */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.scrollbar-hide {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

/* Glassmorphism effects */
.glass-panel {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

/* Smooth Scroll & Custom Scrollbar */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 5px;
  border: 2px solid #f1f5f9;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #005B82;
}

/* Custom Scroll & Entrance Animations (Smooth Easing) */
.reveal,
.reveal-fade,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-blur {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal {
  transform: translateY(35px);
}

.reveal-fade {
  transform: translateY(0);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-scale {
  transform: scale(0.92);
}

.reveal-blur {
  transform: translateY(20px);
  filter: blur(8px);
}

/* Active Entrance States */
.reveal.active,
.reveal-fade.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {
  opacity: 1;
  transform: translate(0) scale(1);
}

.reveal-blur.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Staggered Child Delays for Lists & Grids */
.stagger-1 { transition-delay: 0.08s !important; }
.stagger-2 { transition-delay: 0.16s !important; }
.stagger-3 { transition-delay: 0.24s !important; }
.stagger-4 { transition-delay: 0.32s !important; }
.stagger-5 { transition-delay: 0.40s !important; }
.stagger-6 { transition-delay: 0.48s !important; }

/* Smooth Interactive Micro-Interactions */
.smooth-hover {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease;
}

.smooth-hover:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 35px -10px rgba(0, 43, 62, 0.12);
}

.smooth-card {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.3s ease;
}

.smooth-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -12px rgba(0, 91, 130, 0.18);
}

.smooth-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.smooth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -6px rgba(0, 91, 130, 0.28);
}

.smooth-btn:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 4px 12px -2px rgba(0, 91, 130, 0.2);
}

/* Glossy Shine Sweep Effect for Buttons */
.smooth-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: rotate(25deg);
  transition: all 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  pointer-events: none;
}

.smooth-btn:hover::after {
  left: 140%;
  opacity: 1;
}

/* Image Zoom Wrapper */
.smooth-img-wrap {
  overflow: hidden;
  border-radius: inherit;
}

.smooth-img-wrap img {
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.smooth-img-wrap:hover img {
  transform: scale(1.08);
}

/* Animated Underline Effect for Links */
.smooth-link {
  position: relative;
  text-decoration: none;
}

.smooth-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: currentColor;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.smooth-link:hover::after {
  width: 100%;
}

/* Keyframe Animations */
.float-element {
  animation: smoothFloating 5s ease-in-out infinite;
}

@keyframes smoothFloating {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(0.8deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

.pulse-glow {
  animation: smoothPulseGlow 3s ease-in-out infinite;
}

@keyframes smoothPulseGlow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(0, 91, 130, 0.2);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 30px rgba(0, 91, 130, 0.45);
    transform: scale(1.02);
  }
}

@keyframes smoothShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes smoothFadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Product Slider scroll behavior */
.product-slider {
  scroll-behavior: smooth;
}

/* Leaflet Map custom styles */
.leaflet-popup-content-wrapper {
  background: var(--color-brand-dark) !important;
  color: white !important;
  border-radius: 12px !important;
  font-family: var(--font-primary) !important;
}

.leaflet-popup-tip {
  background: var(--color-brand-dark) !important;
}

/* Custom CSS Drawn Medicine Box Mockups */
.box-mockup {
  position: relative;
  width: 140px;
  height: 95px;
  transform-style: preserve-3d;
  transform: perspective(600px) rotateY(-18deg) rotateX(8deg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .box-mockup {
  transform: perspective(600px) rotateY(-8deg) rotateX(4deg) translateY(-14px) scale(1.08);
}

/* Front Face */
.box-face-front {
  position: absolute;
  width: 140px;
  height: 95px;
  background: white;
  border-radius: 3px;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 6px;
  z-index: 2;
}

/* Side Face */
.box-face-side {
  position: absolute;
  width: 25px;
  height: 95px;
  background: #f1f5f9;
  left: 139px;
  top: 0;
  transform-origin: left;
  transform: rotateY(90deg);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: inset 3px 0 5px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Top Face */
.box-face-top {
  position: absolute;
  width: 140px;
  height: 25px;
  background: #f8fafc;
  left: 0;
  top: -25px;
  transform-origin: bottom;
  transform: rotateX(90deg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Brand Colors for Box Mockups */
.box-brand-strip {
  height: 6px;
  width: 100%;
  border-radius: 1px;
}

/* Product Specific Color Highlights */
.glideplus-theme {
  --theme-color: #ec4899;
}

.oxentibmr-theme {
  --theme-color: #ef4444;
}

.nervoxplus-theme {
  --theme-color: #10b981;
}

.calcintra-theme {
  --theme-color: #8b5cf6;
}

.pxentradsr-theme {
  --theme-color: #3b82f6;
}

.lxentra-theme {
  --theme-color: #14b8a6;
}

.oxrizinelc-theme {
  --theme-color: #f97316;
}

.heaveenema-theme {
  --theme-color: #06b6d4;
}

.heavesenema-theme {
  --theme-color: #f43f5e;
}

.product-card {
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid #f1f5f9;
  border-radius: 2rem;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
  border-color: #f1f5f9;
}

.open-details-btn {
  width: 100%;
  padding: 10px 20px;
  border: 1.5px solid #e2e8f0;
  border-radius: 9999px;
  background-color: white;
  color: #475569;
  font-weight: 800;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.02);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.open-details-btn:hover,
.open-details-btn:active,
.open-details-btn:focus,
.product-card:hover .open-details-btn {
  background-color: #0f58a2 !important;
  border-color: #0f58a2 !important;
  color: #ffffff !important;
  box-shadow: 0 8px 20px -4px rgba(15, 88, 162, 0.4) !important;
}

.open-details-btn:hover span,
.open-details-btn:active span,
.product-card:hover .open-details-btn span {
  transform: translateX(4px);
  display: inline-block;
  color: #ffffff !important;
}

/* Career Apply Now Hover Animation */
.apply-btn {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  -webkit-tap-highlight-color: transparent;
}

.apply-btn:hover,
.apply-btn:active,
.apply-btn:focus,
.group:hover .apply-btn {
  background-color: #0f58a2 !important;
  color: #ffffff !important;
  box-shadow: 0 8px 20px -4px rgba(15, 88, 162, 0.35) !important;
}

.apply-btn:hover span,
.apply-btn:active span,
.group:hover .apply-btn span {
  transform: translateX(4px);
  display: inline-block;
}

/* Custom slider buttons */
.slider-arrow-btn {
  transition: all 0.3s ease;
}

.slider-arrow-btn:hover {
  transform: scale(1.05);
}

/* Portfolio Matrix Colors (Image 5 Replica) */
.portfolio-card-gastro {
  background: linear-gradient(135deg, #c5a880 0%, #b29369 100%);
  color: #fff;
}

.portfolio-card-derm {
  background: #4A1A24;
  color: #fff;
}

.portfolio-card-neuro {
  background: #112233;
  color: #fff;
}

.portfolio-card-bone {
  background: #A06550;
  color: #fff;
}

.portfolio-card-pain {
  background: #6D7784;
  color: #fff;
}

.portfolio-card-allergy {
  background: #2E3D4D;
  color: #fff;
}

/* Cipla Purpose Section Tab arrow selector styling */
.cipla-tab {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cipla-tab-active {
  background-color: white !important;
  color: #0f58a2 !important;
  position: relative;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
  .cipla-tab-active::before {
    content: '';
    position: absolute;
    left: -28px;
    /* Sticks out past the container padding */
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid white;
    z-index: 30;
  }
}

/* Clinical Brochure Section styles */
.brochure-tab-btn {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.brochure-tab-active {
  background-color: var(--color-brand-blue);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 91, 130, 0.15);
}

.brochure-fade-in {
  animation: brochureFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes brochureFade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

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

/* ========================================== */
/* APPLE-STYLE SCROLL-DRIVEN HERO SECTION     */
/* ========================================== */
#hero {
  position: relative;
  width: 100%;
  height: 400vh;
  isolation: isolate;
  background: #002B3E !important;
}

.hero-sticky-viewport {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  background: #002B3E !important;
  will-change: transform;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-dark-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 10;
  pointer-events: none;
  transition: background-color 0.4s ease;
}

.hero-text-frame {
  position: absolute;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 20;
  will-change: transform, opacity;
}

.hero-eyebrow {
  letter-spacing: 0.25em;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-glow-text {
  text-shadow: 0 0 40px rgba(6, 182, 212, 0.15), 0 0 80px rgba(6, 182, 212, 0.05);
}

/* Ensure glass header navigation behaves well above the hero section */
header.glass-panel {
  z-index: 100;
}

/* Interactive Clock & Scroll Text Styles */
.hero-clock-container,
#hero-clock-widget {
  will-change: transform, opacity;
  z-index: 30;
}

#hero-clock-ring {
  will-change: transform;
  transition: box-shadow 0.5s ease;
}

#hero-clock-hand {
  will-change: transform;
}

#hero-clock-orbit {
  will-change: transform;
}

#hero-text-see-all,
#hero-text-our-products {
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

#hero-clock-center-btn {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

#hero-clock-center-btn:hover {
  box-shadow: 0 0 45px rgba(0, 180, 216, 0.6), inset 0 0 20px rgba(240, 125, 0, 0.3);
}

/* Pulse glow animation for the inner circle */
.clock-inner-glow {
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.1);
  animation: clockGlowPulse 3s ease-in-out infinite;
}

@keyframes clockGlowPulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.1), inset 0 0 10px rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
  }

  50% {
    box-shadow: 0 0 35px rgba(249, 115, 22, 0.25), inset 0 0 15px rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.3);
  }
}

/* ==========================================================================
   Luxury Floating Glassmorphic Header & Navbar System (Apple, Stripe, Vercel, Linear)
   ========================================================================== */

/* ==========================================================================
   Luxury Floating Glassmorphic Header & Navbar System (Matches Reference Design)
   ========================================================================== */

/* Outer fixed top wrapper */
header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 50 !important;
  padding: 0.625rem 0.75rem !important;
  /* Floating margins from viewport top & sides */
  background: transparent !important;
  border-bottom: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  pointer-events: none !important;
  /* Non-blocking margins */
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

@media (min-width: 640px) {
  header {
    padding: 0.875rem 1.25rem !important;
  }
}

/* Floating Glass Capsule Container - Full Frosted Glassmorphism (No Opaque White) */
.pharma-navbar,
header>div {
  width: 95% !important;
  max-width: 95% !important;
  /* Expanded horizontal span across viewport */
  margin: 0 auto !important;
  border-radius: 20px !important;
  /* 18–24px rounded corners requirement */
  background: linear-gradient(135deg, rgba(238, 245, 251, 0.88) 0%, rgba(228, 237, 245, 0.85) 100%) !important;
  /* Soft pharmaceutical light-blue #E4EDF5 theme */
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  /* Translucent white border */
  box-shadow:
    0 10px 30px -5px rgba(0, 43, 62, 0.08),
    0 4px 12px -2px rgba(0, 43, 62, 0.04),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.8) !important;
  /* Soft layered floating shadow */
  pointer-events: auto !important;
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  padding: 0.35rem 1.5rem !important;
  /* Compact vertical height preserved */
}

/* Frosted glass elevation state when scrolled */
header.header-scrolled .pharma-navbar,
header.header-scrolled>div,
.pharma-navbar.scrolled {
  background: linear-gradient(135deg, rgba(238, 245, 251, 0.96) 0%, rgba(228, 237, 245, 0.93) 100%) !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
  box-shadow:
    0 16px 40px -6px rgba(0, 43, 62, 0.12),
    0 6px 16px -2px rgba(0, 43, 62, 0.06),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.95) !important;
}

/* Crisp, Prominent & Perfectly Aligned Logo */
header img,
.pharma-navbar img,
header>div img {
  height: 175px !important;
  margin: -66px -40px !important;
  transform: scale(1.15) !important;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

header img:hover,
.pharma-navbar img:hover,
header>div img:hover {
  transform: scale(1.18) !important;
}

/* Floating Navigation Links Capsule Container */
header nav,
.pharma-nav-container {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: 0 2px 8px rgba(0, 43, 62, 0.03), inset 0 1px 0 0 rgba(255, 255, 255, 0.2) !important;
  padding: 0.25rem !important;
  border-radius: 9999px !important;
}

/* Nav Items & Hover Animations (200-300ms smooth transition) */
header nav a,
.pharma-nav-container a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 32px !important;
  padding: 0 0.875rem !important;
  border-radius: 9999px !important;
  color: #002B3E !important;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

header nav a:not(.pharma-nav-active):not(.bg-white):hover {
  color: #005B82 !important;
  background-color: rgba(255, 255, 255, 0.25) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(0, 91, 130, 0.08) !important;
}

/* Active Navigation Pill State */
.pharma-nav-active {
  background: linear-gradient(135deg, #005B82 0%, #0f58a2 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(0, 91, 130, 0.3), inset 0 1px 0 0 rgba(255, 255, 255, 0.25) !important;
  font-weight: 700 !important;
}

/* Refined Seamless Glass Search Bar */
header .nav-search-input {
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  color: #002B3E !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border-radius: 9999px !important;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03) !important;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

header .nav-search-input::placeholder {
  color: #475569 !important;
}

header .nav-search-input:focus {
  background: rgba(255, 255, 255, 0.35) !important;
  border-color: #005B82 !important;
  color: #0f2441 !important;
  box-shadow: 0 0 0 3px rgba(0, 91, 130, 0.15), 0 4px 12px rgba(0, 91, 130, 0.06) !important;
}

/* Refined Orange Contact Us CTA Button with softer shadows & smooth hover */
header a[href="contact.html"].bg-\[\#f97316\],
header a[href="contact.html"].px-5,
.pharma-contact-cta {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
  border-radius: 14px !important;
  box-shadow: 0 4px 14px -1px rgba(249, 115, 22, 0.35), inset 0 1px 0 0 rgba(255, 255, 255, 0.3) !important;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

header a[href="contact.html"].bg-\[\#f97316\]:hover,
header a[href="contact.html"].px-5:hover,
.pharma-contact-cta:hover {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%) !important;
  transform: translateY(-1.5px) !important;
  box-shadow: 0 8px 20px -2px rgba(249, 115, 22, 0.45), inset 0 1px 0 0 rgba(255, 255, 255, 0.4) !important;
}

header a[href="contact.html"].bg-\[\#f97316\]:active,
header a[href="contact.html"].px-5:active,
.pharma-contact-cta:active {
  transform: translateY(0px) !important;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3) !important;
}

header a[href="contact.html"].bg-\[\#f97316\]:active,
header a[href="contact.html"].px-5:active,
.pharma-contact-cta:active {
  transform: translateY(0px) !important;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3) !important;
}

header #mobile-menu-btn {
  color: #0f58a2 !important;
}

/* ==========================================================================
   Premium Light-Blue Mobile Navigation Drawer System
   ========================================================================== */
@media (max-width: 1023px) {
  #mobile-menu {
    top: calc(100% + 0.625rem) !important;
    left: 0.75rem !important;
    right: 0.75rem !important;
    width: auto !important;
    border-radius: 22px !important;
    /* Soft rounded corners (20-24px) */
    background: linear-gradient(135deg, rgba(234, 244, 255, 0.98) 0%, rgba(202, 227, 253, 0.98) 100%) !important;
    /* Light-blue theme background */
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(175, 210, 247, 0.9) !important;
    /* Subtle theme border */
    box-shadow:
      0 20px 40px -10px rgba(0, 43, 62, 0.18),
      0 8px 16px -4px rgba(0, 43, 62, 0.08) !important;
    /* Soft depth shadow */
    padding: 1.5rem !important;
    gap: 0.75rem !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    pointer-events: auto !important;
    z-index: 60 !important;
  }

  /* Mobile Links readable styling */
  #mobile-menu a:not(.bg-\[\#f97316\]):not(.mt-2) {
    color: #002B3E !important;
    font-size: 0.9375rem !important;
    font-weight: 700 !important;
    padding: 0.625rem 0.5rem !important;
    border-bottom: 1px solid rgba(175, 210, 247, 0.4) !important;
    transition: color 200ms ease !important;
  }

  #mobile-menu a:not(.bg-\[\#f97316\]):not(.mt-2):hover {
    color: #005B82 !important;
  }

  /* Hide text list item Contact Us in mobile menu, leaving only orange CTA button */
  #mobile-menu a[href="contact.html"]:not(.mt-2):not(.bg-\[\#f97316\]) {
    display: none !important;
  }

  /* Mobile Search Bar */
  #mobile-menu .nav-search-input {
    background: #ffffff !important;
    border: 1px solid rgba(175, 210, 247, 0.9) !important;
    color: #002B3E !important;
    border-radius: 14px !important;
    padding: 0.625rem 0.875rem 0.625rem 2.5rem !important;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04) !important;
  }

  /* Mobile Contact CTA Button */
  #mobile-menu a[href="contact.html"].mt-2,
  #mobile-menu a.bg-\[\#f97316\] {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    border-radius: 14px !important;
    padding: 0.75rem 1rem !important;
    margin-top: 0.5rem !important;
    border-bottom: none !important;
    box-shadow: 0 4px 14px -1px rgba(249, 115, 22, 0.35) !important;
    text-align: center !important;
    display: block !important;
  }
}

/* ==========================================================================
   Mobile-Only Horizontal Scrollable Product Category Tab Bar (Amazon/Apple UX)
   ========================================================================== */
@media (max-width: 768px) {

  /* Category Filters Container - Single Row Horizontal Scroll */
  .filter-btn-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    justify-content: flex-start !important;
    align-items: center !important;
    background: transparent !important;
    border: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 2rem !important;
    padding: 0.5rem 1.25rem !important;
    /* Side padding so first/last pills aren't flush */
    gap: 0.625rem !important;
    scrollbar-width: none !important;
    /* Firefox */
    -ms-overflow-style: none !important;
    /* IE/Edge */
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
  }

  /* Hide scrollbar on Chrome, Safari, Opera */
  .filter-btn-container::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }

  /* Individual Category Pill Buttons (Accessibility 44px min touch target) */
  .filter-btn-container .filter-btn {
    flex-shrink: 0 !important;
    min-height: 44px !important;
    height: 44px !important;
    padding: 0 1.25rem !important;
    border-radius: 9999px !important;
    font-size: 0.8125rem !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    scroll-snap-align: start !important;
    transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  /* Active Category Pill Button */
  .filter-btn-container .filter-btn.bg-\[\#5b51e8\],
  .filter-btn-container .filter-btn.bg-\[\#005B82\],
  .filter-btn-container .filter-btn.active {
    background: linear-gradient(135deg, #005B82 0%, #0f58a2 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(0, 91, 130, 0.35) !important;
    border: none !important;
  }

  /* Inactive Category Pill Buttons */
  .filter-btn-container .filter-btn:not(.bg-\[\#5b51e8\]):not(.bg-\[\#005B82\]):not(.active) {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(175, 210, 247, 0.8) !important;
    color: #002B3E !important;
    box-shadow: 0 2px 8px rgba(0, 43, 62, 0.04) !important;
  }

  .filter-btn-container .filter-btn:not(.bg-\[\#5b51e8\]):not(.bg-\[\#005B82\]):not(.active):active {
    transform: scale(0.96) !important;
    background: #ffffff !important;
  }
}

/* Background styling for Portfolio-Partners wrapper section to create a single continuous canvas */
#portfolio-partners-wrapper {
  background-image: none !important;
}

#portfolio,
#why-us,
#partners {
  background-image: none !important;
  background-color: transparent !important;
}

/* Alternating section shades for homepage background continuity */
#metrics-section {
  background-color: transparent !important;
}

#about {
  background-color: rgba(248, 250, 252, 0.45) !important;
}

#products {
  background-color: transparent !important;
}

#portfolio {
  background-color: rgba(248, 250, 252, 0.45) !important;
}

#why-us {
  background-color: transparent !important;
}

#partners {
  background-color: rgba(248, 250, 252, 0.45) !important;
}

/* ========================================================================== */
/* INDUSTRY-STANDARD MOBILE RESPONSIVENESS & TYPOGRAPHY ENHANCEMENTS          */
/* ========================================================================== */

/* Base font scaling */
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

@media (max-width: 640px) {
  html {
    font-size: 15px;
  }
}

/* Enhanced Mobile Typography Legibility Rules */
p,
span,
li,
td,
th,
label {
  letter-spacing: 0.01em;
}

/* Upgrade utility text sizes to industry standards */
.text-xs {
  font-size: 0.8125rem !important;
  /* 13px */
  line-height: 1.5 !important;
}

.text-sm {
  font-size: 0.9375rem !important;
  /* 15px */
  line-height: 1.6 !important;
}

.text-base {
  font-size: 1.0625rem !important;
  /* 17px */
  line-height: 1.75 !important;
}

.text-lg {
  font-size: 1.25rem !important;
  /* 20px */
  line-height: 1.65 !important;
}

.text-xl {
  font-size: 1.4375rem !important;
  /* 23px */
  line-height: 1.5 !important;
}

.text-2xl {
  font-size: 1.75rem !important;
  /* 28px */
  line-height: 1.4 !important;
}

/* Responsive Heading typography scale */
h1 {
  font-size: 56px;
  line-height: 68px;
  font-weight: 700;
}

h2 {
  font-size: 48px;
  line-height: 60px;
  font-weight: 700;
}

h3 {
  font-size: 40px;
  line-height: 52px;
  font-weight: 700;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 44px !important;
    line-height: 1.2 !important;
  }

  h2 {
    font-size: 38px !important;
    line-height: 1.2 !important;
  }

  h3 {
    font-size: 32px !important;
    line-height: 1.25 !important;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 34px !important;
    line-height: 1.2 !important;
  }

  h2 {
    font-size: 30px !important;
    line-height: 1.2 !important;
  }

  h3 {
    font-size: 26px !important;
    line-height: 1.25 !important;
  }
}

/* Mobile Touch Target Standards (Minimum 44px for WCAG & Mobile UX) */
button,
a.px-6,
a.px-4,
input[type="text"],
input[type="email"],
textarea,
select {
  min-height: 44px;
}

/* Responsive Table Scroll Wrapping */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1rem;
}

/* Prevent horizontal body overflow on small viewports */
body,
html {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Mobile Padding & Spacing Touchups */
@media (max-width: 768px) {

  .container,
  .max-w-7xl,
  .max-w-6xl,
  .max-w-5xl,
  .max-w-4xl {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .py-16,
  .py-20,
  .py-24 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  /* Mobile modal adjustments */
  .modal-content {
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 1.5rem !important;
    padding: 1.25rem !important;
  }
}

/* Industry Standard Perfect Center Alignment for Navigation Pill Links */
header nav a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  height: 32px !important;
  box-sizing: border-box !important;
  vertical-align: middle !important;
}

/* Equal Mobile Padding for Logo & Side Bar Toggle (Mobile View Only) */
@media (max-width: 768px) {
  header {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  header a[href="index.html"],
  header a.flex.items-center {
    padding-left: 0.5rem !important;
  }

  header #mobile-menu-btn {
    padding-right: 0.5rem !important;
  }
}

/* ==========================================================================
   Click / Active State Transformations: Turn Blue Elements White on Click
   ========================================================================== */

/* Active blue navigation links & pill buttons default text legibility */
header nav a.bg-\[\#0f58a2\],
header nav a[class*="bg-[#0f58a2]"],
.bg-\[\#0f58a2\] {
  color: #ffffff !important;
}

/* While clicking (:active state), make blue backgrounds turn white with blue text */
header nav a:active,
header nav a.bg-\[\#0f58a2\]:active,
header nav a[class*="bg-[#0f58a2]"]:active,
.bg-\[\#0f58a2\]:active,
a.bg-\[\#0f58a2\]:active,
button.bg-\[\#0f58a2\]:active,
.bg-brand-blue:active {
  background-color: #ffffff !important;
  color: #0f58a2 !important;
  border: 1px solid #0f58a2 !important;
  box-shadow: 0 2px 8px rgba(15, 88, 162, 0.15) !important;
}

/* Ensure SVG icon inside active/clicked link turns blue when background turns white */
header nav a:active svg,
header nav a.bg-\[\#0f58a2\]:active svg,
header nav a[class*="bg-[#0f58a2]"]:active svg {
  stroke: #0f58a2 !important;
}

/* ==========================================================================
   Luxury Pharmaceutical Header & Hero Section Design System
   Primary: #CAE3FD | Supporting: #AFD2F7, #C5DEF9, #EAF4FF
   ========================================================================== */

:root {
  --pharma-bg-primary: #CAE3FD;
  --pharma-bg-support-1: #AFD2F7;
  --pharma-bg-support-2: #C5DEF9;
  --pharma-bg-support-3: #EAF4FF;
  --pharma-brand-dark: #002B3E;
  --pharma-brand-blue: #005B82;
  --pharma-brand-orange: #F07D00;
}


/* Hero Section background gradient */
.pharma-hero-section {
  background: linear-gradient(135deg, #EAF4FF 0%, #CAE3FD 35%, #C5DEF9 70%, #AFD2F7 100%) !important;
  position: relative;
  overflow: hidden;
}

/* Transparent container for hero content (no card background) */
.pharma-glass-hero-card {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* Navigation Pill Container */
.pharma-nav-container {
  background: rgba(255, 255, 255, 0.82) !important;
  border: 1px solid rgba(175, 210, 247, 0.7) !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 2px 8px rgba(0, 43, 62, 0.04) !important;
}

/* Navigation Pill Active State */
.pharma-nav-active {
  background: linear-gradient(135deg, #005B82 0%, #0f58a2 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(0, 91, 130, 0.3) !important;
  font-weight: 700 !important;
}

/* Category Sub-heading Label - Clean Text Only (No Box, No Background, No Border) */
.pharma-pill-badge {
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0 !important;
  color: #005B82 !important;
  font-weight: 800 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
}

/* Mobile Responsiveness for Hero Banner Header Image */
@media (max-width: 768px) {
  .pharma-hero-section {
    min-height: 400px !important;
    padding-top: 7.5rem !important;
    padding-bottom: 3rem !important;
  }

  .pharma-hero-section img {
    object-fit: cover !important;
    object-position: 80% center !important;
  }
}

@media (max-width: 480px) {
  .pharma-hero-section {
    min-height: 380px !important;
    padding-top: 7.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .pharma-hero-section img {
    object-fit: cover !important;
    object-position: 75% center !important;
  }
}

/* Hero Text Block Alignment & Proportional Spacing (About Us, Products, Careers, Contact Us) */
/* Primary Pages (About Us, Products, Careers, Contact Us) Hero Section Background */
.pharma-hero-section {
  background-image: url('images/banner.png') !important;
  background-size: cover !important;
  background-position: center right !important;
  background-repeat: no-repeat !important;
}

.pharma-hero-text-block {
  width: 100%;
  max-width: 28rem;
  margin-left: 0;
  margin-right: auto;
}

@media (min-width: 768px) {
  .pharma-hero-text-block {
    width: 44%;
    max-width: 350px;
    margin-left: -0.75rem;
  }
}

@media (min-width: 1024px) {
  .pharma-hero-text-block {
    width: 42%;
    max-width: 420px;
    margin-left: -1.25rem;
  }
}

@media (min-width: 1280px) {
  .pharma-hero-text-block {
    width: 40%;
    max-width: 450px;
    margin-left: -1.75rem;
  }
}

/* ==========================================================================
   DESKTOP NAVIGATION BAR (OXENTRA PHARMA - ENTERPRISE SAAS DESIGN SYSTEM)
   ========================================================================== */

.oxentra-header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  width: 100%;
  pointer-events: none;
  padding: 16px 16px 0 16px;
}

.oxentra-navbar-shell {
  pointer-events: auto;
  width: 95%;
  max-width: 1400px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 250, 252, 0.88) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  gap: 24px;
  transition: all 250ms ease-out;
}

.oxentra-logo-link {
  display: flex !important;
  align-items: center !important;
  height: 28px !important;
  max-height: 28px !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
  margin-right: 32px !important;
  margin-left: 0 !important;
  padding: 0 !important;
}

.oxentra-logo-img {
  height: 28px !important;
  max-height: 28px !important;
  width: auto !important;
  max-width: 140px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  scale: 1 !important;
}

/* Central Navigation Container Pill Capsule */
.oxentra-nav-capsule {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: 999px;
  padding: 2px 4px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

/* Individual Navigation Item */
.oxentra-nav-item {
  height: 42px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #0F172A;
  border-radius: 999px;
  text-decoration: none;
  transition: all 250ms ease-out;
  white-space: nowrap;
  user-select: none;
}

.oxentra-nav-item:hover:not(.active) {
  background-color: rgba(224, 242, 254, 0.6);
  color: #005B82;
  transform: translateY(-1px);
}

/* Active Item Style (Products ▼ in reference image) */
.oxentra-nav-item.active {
  background: linear-gradient(135deg, #005B82 0%, #0F58A2 100%) !important;
  color: #FFFFFF !important;
  border-radius: 999px !important;
  box-shadow: 0 6px 18px rgba(0, 91, 130, 0.22) !important;
}

.oxentra-nav-item.active svg {
  stroke: #FFFFFF;
  fill: none;
}

/* Search Bar Wrapper */
.oxentra-search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 220px;
  height: 44px;
  flex-shrink: 0;
}

.oxentra-search-icon {
  position: absolute;
  left: 14px;
  width: 16px;
  height: 16px;
  color: #94A3B8;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oxentra-search-input {
  width: 100%;
  height: 44px;
  padding-left: 40px;
  padding-right: 16px;
  border-radius: 999px;
  background: rgba(241, 245, 249, 0.65);
  border: 1px solid rgba(226, 232, 240, 0.8);
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0F172A;
  transition: all 250ms ease-out;
  outline: none;
}

.oxentra-search-input::placeholder {
  color: #94A3B8;
  font-weight: 500;
}

.oxentra-search-input:focus {
  background: #FFFFFF;
  border-color: #005B82;
  box-shadow: 0 0 0 3px rgba(0, 91, 130, 0.15);
}

/* Contact CTA Button */
.oxentra-cta-btn {
  height: 46px;
  padding: 0 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  color: #FFFFFF !important;
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.25);
  transition: all 250ms ease-out;
  white-space: nowrap;
  flex-shrink: 0;
}

.oxentra-cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 22px rgba(249, 115, 22, 0.35);
  background: linear-gradient(135deg, #FB923C 0%, #EA580C 100%);
}

.oxentra-cta-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

@media (max-width: 1024px) {
  .oxentra-header-wrapper {
    padding: 12px 12px 0 12px;
  }
  .oxentra-navbar-shell {
    height: 64px;
    padding: 0 16px;
  }
}

@media (max-width: 1024px) {
  .oxentra-header-wrapper {
    padding: 10px 12px 0 12px !important;
  }

  .oxentra-navbar-shell {
    width: 100% !important;
    max-width: 100% !important;
    height: 58px !important;
    padding: 0 14px !important;
    border-radius: 999px !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 246, 252, 0.92) 100%) !important;
    border: 1px solid rgba(226, 232, 240, 0.85) !important;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .oxentra-logo-link {
    height: 24px !important;
    max-height: 24px !important;
    flex-shrink: 0 !important;
    margin-right: 0 !important;
  }

  .oxentra-logo-img {
    height: 24px !important;
    max-height: 24px !important;
    width: auto !important;
    max-width: 115px !important;
    flex-shrink: 0 !important;
    object-fit: contain !important;
  }

  /* Mobile/iPad Header Action Icon Buttons (Phone Call & Hamburger Menu) */
  header .flex.lg\:hidden {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-left: auto !important;
    flex-shrink: 0 !important;
  }

  header a[href^="tel:"] {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 14px !important;
    background-color: #FFF7ED !important;
    border: 1px solid #FFEDD5 !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
    text-decoration: none !important;
  }

  header a[href^="tel:"] svg {
    display: block !important;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    margin: 0 !important;
    fill: #F97316 !important;
    color: #F97316 !important;
    flex-shrink: 0 !important;
    transform: translate(-3.5px, -2px) !important;
  }

  header #mobile-menu-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 14px !important;
    background-color: #F0F7FF !important;
    border: 1px solid #E2E8F0 !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
  }

  header #mobile-menu-btn svg {
    display: block !important;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    margin: auto !important;
    stroke: #005B82 !important;
    color: #005B82 !important;
    flex-shrink: 0 !important;
  }
}

/* ==========================================================================
   MOBILE & IPAD NAVIGATION DRAWER & OVERLAY (Hidden on Desktop View > 1024px)
   ========================================================================== */

.oxentra-drawer-overlay,
.oxentra-mobile-drawer {
  display: none !important;
}

.oxentra-drawer-overlay.active {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.oxentra-mobile-drawer.active {
  display: flex !important;
  transform: translate3d(0, 0, 0) !important;
}

@media (max-width: 1024px) {
  .oxentra-drawer-overlay {
    display: block !important;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25) !important;
    z-index: 99998 !important;
    opacity: 0;
    visibility: hidden;
    will-change: opacity, visibility;
    transition: opacity 250ms ease, visibility 250ms ease;
    pointer-events: auto !important;
  }

  .oxentra-drawer-overlay.active {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .oxentra-mobile-drawer {
    display: flex !important;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    width: 340px;
    max-width: 85vw;
    background: rgba(255, 255, 255, 0.99) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    border-radius: 32px 0 0 32px;
    border-left: 1px solid rgba(255, 255, 255, 0.85) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 8px 20px rgba(0, 0, 0, 0.05) !important;
    overflow: hidden;
    z-index: 99999 !important;
    flex-direction: column;
    transform: translate3d(100%, 0, 0);
    will-change: transform;
    transition: transform 250ms cubic-bezier(.16, 1, .3, 1);
    pointer-events: auto !important;
    -webkit-font-smoothing: antialiased;
  }

  .oxentra-mobile-drawer.active {
    display: flex !important;
    transform: translate3d(0, 0, 0) !important;
  }

  .oxentra-drawer-header {
    height: 72px;
    padding: 0 24px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFFFFF !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    flex-shrink: 0;
  }

  .oxentra-drawer-logo {
    height: 24px !important;
    max-height: 24px !important;
    width: auto !important;
    max-width: 115px !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
    margin-left: 4px !important;
  }

  .oxentra-drawer-close-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 9999px;
    background: #F3F4F6 !important;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151 !important;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .oxentra-drawer-close-btn:hover {
    background: #E5E7EB !important;
    color: #111827 !important;
  }

  .oxentra-drawer-close-btn svg {
    width: 18px;
    height: 18px;
  }

  .oxentra-drawer-nav {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow-y: auto;
    flex-grow: 1;
  }

  .oxentra-drawer-card {
    height: 48px;
    min-height: 48px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    user-select: none;
  }

  .oxentra-drawer-card:hover {
    background: rgba(0, 0, 0, 0.04) !important;
    border: none !important;
    box-shadow: none !important;
  }

  .oxentra-drawer-card.active {
    background: linear-gradient(135deg, #0B6FBF, #0A84FF) !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(10, 132, 255, 0.25) !important;
  }

  .oxentra-drawer-card-left {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .oxentra-drawer-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: transparent !important;
    border: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4B5563 !important;
    flex-shrink: 0;
  }

  .oxentra-drawer-card.active .oxentra-drawer-icon-box {
    background: transparent !important;
    color: #FFFFFF !important;
  }

  .oxentra-drawer-card.active .oxentra-drawer-icon-box svg {
    stroke: #FFFFFF !important;
    color: #FFFFFF !important;
  }

  .oxentra-drawer-card-label {
    font-size: 15px;
    font-weight: 600;
    color: #1F2937 !important;
  }

  .oxentra-drawer-card.active .oxentra-drawer-card-label {
    color: #FFFFFF !important;
  }

  #products-toggle-btn {
    height: 48px !important;
    min-height: 48px !important;
    width: 44px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 12px !important;
  }

  #products-toggle-btn:hover {
    background: rgba(0, 0, 0, 0.04) !important;
  }

  .oxentra-drawer-sublist {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 4px 0 4px 44px;
  }

  .oxentra-drawer-sublist.active {
    display: flex;
  }

  .oxentra-drawer-subitem {
    height: 44px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #4B5563 !important;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s ease;
  }

  .oxentra-drawer-subitem:hover {
    background: #F3F4F6 !important;
    color: #0A84FF !important;
  }

  .oxentra-drawer-contact-btn {
    margin-top: auto;
    height: 54px;
    min-height: 54px;
    width: 100%;
    border-radius: 16px;
    background: linear-gradient(135deg, #FF7A00, #FF5500) !important;
    color: #FFFFFF !important;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(255, 102, 0, 0.35) !important;
    transition: all 0.25s ease;
    flex-shrink: 0;
  }

  .oxentra-drawer-contact-btn:hover {
    background: linear-gradient(135deg, #FF6600, #E64A00) !important;
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(255, 102, 0, 0.45) !important;
  }

  .oxentra-drawer-contact-btn svg {
    width: 20px;
    height: 20px;
    fill: #FFFFFF !important;
  }
}

/* Consistent Opaque Footer Background across all pages */
footer {
  background-color: #0b1a30 !important;
}

/* ================================================= */
/* MOBILE VIEW PRODUCT PICTURE & GAP OPTIMIZATIONS   */
/* ================================================= */
@media (max-width: 768px) {
  /* Reduce 480px backdrop height on mobile to prevent massive vertical empty space */
  .hero-circle-backdrop {
    width: 100% !important;
    max-width: 320px !important;
    height: 300px !important;
    margin: 0 auto !important;
  }

  /* Scale pedestal disc for mobile screen size */
  .pedestal-3d-disc {
    width: 90% !important;
    max-width: 280px !important;
    height: 48px !important;
    bottom: 12px !important;
  }

  /* Make product image prominent without excessive empty padding */
  .hero-product-img img {
    height: 250px !important;
    max-height: 260px !important;
    width: auto !important;
    object-fit: contain !important;
  }

  /* Reduce vertical gap between sections on mobile view */
  main > section:first-of-type {
    padding-top: 16px !important;
    padding-bottom: 8px !important;
  }

  main > section:nth-of-type(2) {
    padding-top: 4px !important;
    padding-bottom: 20px !important;
  }

  /* Move hero section text overlay downwards in mobile view only */
  #hero-main-header {
    padding-top: 10rem !important;
    margin-top: 3.5rem !important;
  }

  .pharma-hero-section .pharma-hero-text-block {
    padding-top: 1.75rem !important;
  }

  #hero {
    background: #002B3E !important;
    isolation: isolate;
  }

  #hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 0;
    right: 0;
    height: 200px;
    background: #002B3E !important;
    z-index: 0;
    pointer-events: none;
  }

  .hero-sticky-viewport {
    background: #002B3E !important;
  }
}
/* ==========================================================================
   ACCESSIBILITY: FOCUS-VISIBLE & PREFERS-REDUCED-MOTION
   ========================================================================== */

/* High-Contrast Focus Visible Rings for Keyboard Accessibility (WCAG 2.1 AA) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #005B82 !important;
  outline-offset: 2px !important;
}

/* Reduced Motion Preference Support */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-fade,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .reveal-blur {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}
