/* 
 * Ruhee Overseas - Premium Stylesheet
 * Custom designed based on Navy & Green branding logo.
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --color-primary: #002C6C;      /* Navy Blue from logo */
  --color-primary-light: #0B3C7E;
  --color-primary-dark: #001A44;
  --color-secondary: #155A27;    /* Forest Green from logo */
  --color-secondary-light: #20873D;
  --color-secondary-dark: #0C3617;
  --color-accent: #10B981;       /* Mint Accent from logo swoosh */
  --color-accent-rgb: 16, 185, 129;
  
  --color-text-main: #0F172A;    /* Slate 900 */
  --color-text-muted: #475569;   /* Slate 600 */
  --color-text-light: #94A3B8;   /* Slate 400 */
  
  --color-bg-light: #F8FAFC;     /* Slate 50 */
  --color-bg-white: #FFFFFF;
  --color-bg-dark: #040D1A;      /* Dark Midnight Navy */
  --color-bg-dark-card: rgba(11, 37, 69, 0.4);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
  
  --shadow-premium: 0 10px 40px -10px rgba(0, 44, 108, 0.06);
  --shadow-hover: 0 20px 50px -15px rgba(0, 44, 108, 0.12);
  --shadow-accent: 0 10px 30px -10px rgba(16, 185, 129, 0.2);
  
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 28px;
  
  --nav-height: 132px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-light);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-light);
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: var(--border-radius-sm);
  border: 2px solid var(--color-bg-light);
}
::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

/* Typography Selection */
::selection {
  background: rgba(16, 185, 129, 0.2);
  color: var(--color-secondary-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-primary-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

/* Layout Utilities */
.section {
  padding: 100px 0;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Badge and Heading styling */
.badge-container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--color-secondary);
  border: 1px solid rgba(16, 185, 129, 0.25);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition-smooth);
}

.badge-glow {
  animation: pulse-glow 2s infinite;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
}

.section-title span {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin-bottom: 60px;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: var(--color-bg-white);
  box-shadow: 0 4px 15px rgba(0, 44, 108, 0.2);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: 0.75s ease-in-out;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 44, 108, 0.35);
  background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-light));
}

.btn-primary:hover::after {
  left: 125%;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-bg-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-bg-white);
  transform: translateY(-3px);
}

/* Header & Absolute Navigation (Scrolls away with page) */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  background-color: var(--color-bg-white);
  border-bottom: 1px solid rgba(0, 44, 108, 0.08);
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  position: absolute;
  height: var(--nav-height);
  background-color: var(--color-bg-white);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: var(--shadow-premium);
  border-bottom: 1px solid rgba(0, 44, 108, 0.08);
}

.navbar.scrolled .nav-link {
  color: var(--color-primary-dark);
}

.navbar.scrolled .logo-container img {
  width: 145px;
  height: 124px;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 72px);
  height: 100%;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  height: 100%;
  margin: 0;
  padding: 0;
}

.logo-container img {
  width: 145px;
  height: 124px;
  margin: 0;
  padding: 0;
  object-fit: contain;
  object-position: center;
  transition: var(--transition-smooth);
}

.logo-tagline {
  display: block;
  margin-top: 2px;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.35px;
  white-space: nowrap;
}

/* Unified header logo + tagline brand block */
.logo-brand-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 145px;
  line-height: 1;
}

.logo-brand-wrap img,
.navbar.scrolled .logo-brand-wrap img {
  display: block;
  width: clamp(100px, 9vw, 145px);
  height: auto;
  object-fit: contain;
}

.logo-brand-tagline {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-top: 1px;
  color: #07336c;
  font-family: var(--font-heading);
  font-size: clamp(7.5px, .65vw, 10.5px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: clamp(.2px, .055vw, .8px);
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-quote-btn {
  padding: 12px 26px;
  font-size: 0.92rem;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 56px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-primary-dark);
  letter-spacing: 0.5px;
  padding: 6px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-accent) !important;
}

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

.nav-dropdown {
  position: relative;
}

.nav-dropdown-link {
  display: flex;
  align-items: center;
  gap: 7px;
}

.nav-dropdown-arrow {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform var(--transition-fast);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: 620px;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 44, 108, 0.12);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(4, 13, 26, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 15px;
}

.nav-dropdown-menu a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-size: 0.86rem;
  line-height: 1.35;
  transition: color var(--transition-fast), background-color var(--transition-fast), transform var(--transition-fast);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--color-accent);
  background: rgba(32, 135, 61, 0.08);
  transform: translateX(3px);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-dropdown-arrow,
.nav-dropdown:focus-within .nav-dropdown-arrow {
  transform: translateY(2px) rotate(225deg);
}

.nav-cta {
  display: flex;
  align-items: center;
}

/* About Page: Pharmaceutical Compliance Network */
.compliance-sourcing {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(16, 185, 129, 0.1), transparent 30%),
    linear-gradient(145deg, #f5faf8 0%, #ffffff 54%, #f3f7fc 100%);
}

.compliance-sourcing::before {
  content: '';
  position: absolute;
  top: -110px;
  right: -90px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(21, 90, 39, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(21, 90, 39, 0.025), 0 0 0 84px rgba(0, 44, 108, 0.02);
}

.compliance-sourcing__intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 38px;
}

.compliance-sourcing__kicker,
.compliance-card__label,
.compliance-assurance__title > span {
  display: block;
  margin-bottom: 10px;
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.compliance-sourcing__intro .section-title {
  margin-bottom: 0;
}

.compliance-sourcing__intro > p {
  margin: 0;
  color: var(--color-text-light);
  font-size: 1.02rem;
  line-height: 1.8;
}

.compliance-sourcing__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.compliance-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(21, 90, 39, 0.14);
  border-top: 4px solid var(--color-secondary);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(4, 13, 26, 0.07);
}

.compliance-card--blue {
  border-color: rgba(0, 44, 108, 0.14);
  border-top-color: var(--color-primary);
}

.compliance-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--color-secondary);
  background: rgba(21, 90, 39, 0.09);
  border-radius: 14px;
}

.compliance-card--blue .compliance-card__icon {
  color: var(--color-primary);
  background: rgba(0, 44, 108, 0.08);
}

.compliance-card__icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.compliance-card h3 {
  margin: 0 0 12px;
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-size: 1.45rem;
}

.compliance-card p {
  margin: 0;
  color: var(--color-text-light);
  line-height: 1.75;
}

.compliance-card--blue .compliance-card__label {
  color: var(--color-primary);
}

.compliance-assurance {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.7fr;
  gap: 40px;
  align-items: center;
  margin-top: 24px;
  padding: 28px 32px;
  color: #fff;
  background: linear-gradient(120deg, var(--color-primary-dark), var(--color-primary));
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0, 44, 108, 0.16);
}

.compliance-assurance__title > span {
  color: #80d59a;
}

.compliance-assurance__title h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.35;
}

.compliance-assurance__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.compliance-assurance__steps div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}

.compliance-assurance__steps strong {
  color: #80d59a;
  font-family: var(--font-heading);
  font-size: 0.78rem;
}

.compliance-assurance__steps span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  line-height: 1.5;
}

.compliance-sourcing__note {
  margin: 18px 0 0;
  color: var(--color-text-light);
  font-size: 0.78rem;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 900px) {
  .compliance-sourcing__intro,
  .compliance-assurance {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .compliance-sourcing__grid {
    grid-template-columns: 1fr;
  }
  .compliance-assurance__steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .compliance-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .compliance-assurance {
    padding: 24px;
  }
}

/* Mobile Menu Button */
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary-dark);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.navbar.scrolled .menu-btn span {
  background-color: var(--color-primary-dark);
}

/* 2. Hero Banner Section */
.hero-banner-section {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 3;
  margin-top: var(--nav-height);
  background-color: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid var(--color-primary);
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

/* 3. About Section (Who We Are / Mission & Vision) */
.about {
  background-color: var(--color-bg-white);
  position: relative;
  overflow: hidden;
}

/* Background Decorators for Technical Look */
.about-bg-decorator {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
}

.about-bg-decorator.ring-1 {
  width: 350px;
  height: 350px;
  border: 2px dashed rgba(16, 185, 129, 0.07);
  top: 10%;
  left: -5%;
  animation: spin 80s linear infinite;
}

.about-bg-decorator.ring-2 {
  width: 220px;
  height: 220px;
  border: 1px solid rgba(0, 44, 108, 0.03);
  bottom: 8%;
  right: -5%;
  animation: spin-reverse 45s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spin-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(45px, 6vw, 90px);
  position: relative;
  z-index: 2;
}

.about-profile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-description {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Trust Statistics Grid */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
  border-top: 1px solid #E2E8F0;
  padding-top: 30px;
  width: 100%;
}

.stat-box {
  --stat-color: var(--color-primary);
  text-align: center;
  background: var(--color-bg-white);
  border: 1px solid #E2E8F0;
  border-radius: var(--border-radius-md);
  padding: 26px 14px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease, color .4s ease;
  box-shadow: 0 4px 15px rgba(0, 44, 108, 0.02);
}

.stat-box:nth-child(2) { --stat-color: #0f8a5f; }
.stat-box:nth-child(3) { --stat-color: #d18b12; }
.stat-box:nth-child(4) { --stat-color: #2563eb; }

.stat-box::before {
  content: '';
  position: absolute;
  z-index: -1;
  width: 150%;
  aspect-ratio: 1;
  left: 50%;
  bottom: -165%;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--stat-color) 92%, white) 0%, var(--stat-color) 66%);
  transform: translateX(-50%);
  transition: bottom .55s cubic-bezier(.16,1,.3,1);
}

.stat-box::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, var(--stat-color), var(--color-accent));
  transition: width 0.4s ease;
}

.stat-box:hover::after {
  width: 42px;
}

.stat-box:hover {
  transform: translateY(-9px) scale(1.035);
  box-shadow: 0 18px 38px color-mix(in srgb, var(--stat-color) 22%, transparent);
  border-color: var(--stat-color);
}

.stat-box:hover::before {
  bottom: -48%;
}

.stat-box:hover::after {
  background: rgba(255,255,255,.8);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--stat-color);
  line-height: 1.1;
  margin-bottom: 4px;
  transition: color .35s ease, transform .45s cubic-bezier(.16,1,.3,1), text-shadow .35s ease;
  animation: stat-breathe 3.6s ease-in-out infinite;
}

.stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color .35s ease, transform .35s ease;
}

.stat-box:hover .stat-number {
  color: #fff;
  transform: scale(1.12);
  text-shadow: 0 4px 18px rgba(0,0,0,.2);
  animation-play-state: paused;
}

.stat-box:hover .stat-label {
  color: rgba(255,255,255,.92);
  transform: translateY(2px);
}

@keyframes stat-breathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Interactive Card Deck */
.about-cards-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1500px;
}

.about-image-wrapper {
  position: relative;
  width: min(100%, 540px);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 65px rgba(0, 44, 108, 0.14);
  border: 1px solid rgba(0, 44, 108, 0.1);
}

.about-image-wrapper img {
  width: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(0, 44, 108, 0.17));
  pointer-events: none;
}

.interactive-deck {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: 450px;
}

.interactive-card {
  background: var(--color-bg-white);
  border: 1px solid rgba(0, 44, 108, 0.08);
  border-radius: 24px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 44, 108, 0.02);
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
}

.mission-card {
  border-left: 5px solid var(--color-primary);
}

.vision-card {
  border-left: 5px solid var(--color-accent);
}

.interactive-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(0, 44, 108, 0.07);
}

.mission-card:hover {
  border-color: var(--color-primary);
}

.vision-card:hover {
  border-color: var(--color-accent);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(16, 185, 129, 0.04) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.interactive-card:hover .card-glow {
  opacity: 1;
}

.card-content {
  transform: translateZ(30px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.card-icon-container {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition-smooth);
}

.mission-card .card-icon-container {
  color: var(--color-primary);
  background: rgba(0, 44, 108, 0.05);
}

.vision-card .card-icon-container {
  color: var(--color-secondary);
  background: rgba(21, 90, 39, 0.05);
}

.interactive-card:hover .card-icon-container {
  transform: translateZ(20px) scale(1.1);
  color: var(--color-bg-white);
}

.mission-card:hover .card-icon-container {
  background-color: var(--color-primary);
}

.vision-card:hover .card-icon-container {
  background-color: var(--color-secondary);
}

.interactive-card h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
  color: var(--color-primary-dark);
}

.interactive-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Card SVG Animations */
.anim-icon {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.interactive-card:hover .anim-icon {
  transform: rotate(15deg);
}

.mission-card:hover .anim-icon {
  animation: target-pulse 1.5s infinite;
}

.vision-card:hover .anim-icon {
  animation: eye-scan 2s infinite;
}

@keyframes target-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); filter: drop-shadow(0 0 5px var(--color-accent)); }
  100% { transform: scale(1); }
}

@keyframes eye-scan {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(12deg) scale(1.05); }
  75% { transform: rotate(-12deg) scale(0.95); }
  100% { transform: rotate(0deg); }
}

/* 4. Interactive Export Infrastructure Dashboard */
.services {
  background-color: var(--color-bg-light);
  position: relative;
  overflow: hidden;
}

/* Background Glowing Accents */
.services-bg-decorator {
  position: absolute;
  pointer-events: none;
  filter: blur(140px);
  border-radius: 50%;
  opacity: 0.08;
  z-index: 1;
}

.services-bg-decorator.glow-1 {
  width: 400px;
  height: 400px;
  background-color: var(--color-accent);
  top: 10%;
  right: -10%;
}

.services-bg-decorator.glow-2 {
  width: 500px;
  height: 500px;
  background-color: var(--color-primary);
  bottom: -10%;
  left: -10%;
}

.pipeline-dashboard {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-top: 40px;
}

/* Left Side: Timeline Pipeline */
.pipeline-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.pipeline-line-connector {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 40px;
  width: 4px;
  background-color: #E2E8F0;
  z-index: 1;
}

.pipeline-progress-bar {
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
  transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pipeline-step-card {
  display: flex;
  gap: 20px;
  background-color: var(--color-bg-white);
  border: 1px solid #E2E8F0;
  border-radius: var(--border-radius-md);
  padding: 24px;
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.pipeline-step-card:hover {
  transform: translateX(8px);
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: 0 10px 25px rgba(0, 44, 108, 0.04);
}

.pipeline-step-card.active {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.12);
  transform: translateX(12px) scale(1.01);
}

.step-num-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #F1F5F9;
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.pipeline-step-card.active .step-num-badge {
  background-color: var(--color-accent);
  color: var(--color-primary-dark);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.step-card-content h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--color-primary-dark);
  transition: var(--transition-fast);
}

.pipeline-step-card.active .step-card-content h3 {
  color: var(--color-secondary);
}

.step-card-content p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Right Side: Visualizer Monitor */
.pipeline-monitor {
  display: flex;
  justify-content: center;
  align-items: center;
}

.monitor-glass-screen {
  width: 100%;
  max-width: 460px;
  background: rgba(4, 13, 26, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
}

.monitor-header {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.monitor-led {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #64748B;
}

.monitor-led.green {
  background-color: var(--color-accent);
  animation: pulse-led 1.5s infinite;
}

.monitor-title {
  font-family: monospace;
  font-size: 0.85rem;
  color: #94A3B8;
  letter-spacing: 1px;
  flex-grow: 1;
}

.monitor-pulse {
  font-family: monospace;
  font-size: 0.75rem;
  color: var(--color-accent);
  animation: pulse-led-text 2s infinite;
}

.monitor-display {
  position: relative;
  height: 250px;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.monitor-scene {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.monitor-scene.active {
  display: block;
  opacity: 1;
  transform: scale(1);
}

.visualizer-svg {
  width: 100%;
  height: 100%;
}

.monitor-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bars {
  display: flex;
  gap: 4px;
}

.footer-bars span {
  width: 3px;
  height: 10px;
  background-color: var(--color-accent);
  opacity: 0.3;
}

.footer-bars span:nth-child(1) { animation: bar-rise 1s infinite alternate; }
.footer-bars span:nth-child(2) { animation: bar-rise 0.7s infinite alternate 0.2s; }
.footer-bars span:nth-child(3) { animation: bar-rise 1.2s infinite alternate 0.1s; }
.footer-bars span:nth-child(4) { animation: bar-rise 0.9s infinite alternate 0.3s; }

.monitor-stats {
  font-family: monospace;
  font-size: 0.75rem;
  color: #64748B;
}

/* --- Dynamic SVG Animations --- */
.ocean-wave {
  fill: none;
  stroke-linecap: round;
}

.wave-back {
  animation: wave-float-back 6s ease-in-out infinite;
}

.wave-front {
  animation: wave-float-front 4s ease-in-out infinite;
}

.bobbing-vessel {
  animation: ship-bobbing 3.5s ease-in-out infinite;
  transform-origin: 60px 25px;
}

.flying-aircraft {
  animation: aircraft-fly 10s linear infinite;
}

.scanner-line {
  animation: scanner-sweep 3s ease-in-out infinite alternate;
}

.lab-bubble {
  opacity: 0;
}

.lab-bubble.b1 { animation: bubble-up 2.2s infinite ease-in-out 0.2s; }
.lab-bubble.b2 { animation: bubble-up 1.8s infinite ease-in-out 0.6s; }
.lab-bubble.b3 { animation: bubble-up 2.5s infinite ease-in-out 0.1s; }
.lab-bubble.b4 { animation: bubble-up 2s infinite ease-in-out 0.8s; }
.lab-bubble.b5 { animation: bubble-up 2.1s infinite ease-in-out 0.4s; }

.stamp-tool {
  animation: stamp-motion 4s ease-in-out infinite;
  transform-origin: top center;
}

.doc-seal-mark {
  animation: stamp-reveal-circle 4s ease-in-out infinite;
}

.doc-seal-checkmark {
  animation: stamp-reveal-check 4s ease-in-out infinite;
}

.conveyor-box.box-1 {
  animation: conveyor-flow 4s linear infinite;
}

.conveyor-box.box-2, .conveyor-box.box-3 {
  animation: box-load-pulse 2s infinite alternate;
}

/* --- KEYFRAMES --- */
@keyframes pulse-led {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; box-shadow: 0 0 10px var(--color-accent); }
}

@keyframes pulse-led-text {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes bar-rise {
  0% { height: 3px; opacity: 0.3; }
  100% { height: 14px; opacity: 1; }
}

@keyframes wave-float-back {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-15px); }
}

@keyframes wave-float-front {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

@keyframes ship-bobbing {
  0%, 100% { transform: translate(130px, 185px) rotate(0deg); }
  50% { transform: translate(128px, 188px) rotate(-1.5deg); }
}

@keyframes aircraft-fly {
  0% { transform: translate(-50px, 80px) rotate(5deg); opacity: 0; }
  5% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translate(450px, -20px) rotate(5deg); opacity: 0; }
}

@keyframes scanner-sweep {
  0% { transform: translateY(0); }
  100% { transform: translateY(-160px); }
}

@keyframes bubble-up {
  0% { transform: translateY(20px) scale(0.6); opacity: 0; }
  50% { opacity: 0.8; }
  100% { transform: translateY(-80px) scale(1.1); opacity: 0; }
}

@keyframes stamp-motion {
  0% { transform: translate(140px, -150px); }
  25% { transform: translate(140px, -150px); }
  35% { transform: translate(140px, 30px); }
  45% { transform: translate(140px, -10px); }
  55% { transform: translate(140px, -150px); }
  100% { transform: translate(140px, -150px); }
}

@keyframes stamp-reveal-circle {
  0% { opacity: 0; }
  35% { opacity: 0; }
  36% { opacity: 1; }
  75% { opacity: 1; }
  85% { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes stamp-reveal-check {
  0% { opacity: 0; transform: scale(0.5); }
  35% { opacity: 0; transform: scale(0.5); }
  38% { opacity: 1; transform: scale(1); }
  75% { opacity: 1; }
  85% { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes conveyor-flow {
  0% { transform: translate(-60px, 160px); opacity: 1; }
  70% { transform: translate(140px, 160px); opacity: 1; }
  80% { transform: translate(210px, 185px) scale(0.95); opacity: 0; }
  100% { transform: translate(210px, 185px); opacity: 0; }
}

@keyframes box-load-pulse {
  0% { box-shadow: 0 0 0 rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 8px rgba(16, 185, 129, 0.15); border-color: rgba(16, 185, 129, 0.4); }
}

@media (max-width: 1024px) {
  .pipeline-dashboard {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pipeline-monitor {
    order: -1;
  }
}

/* 5. Interactive Product Directory */
.products {
  background-color: var(--color-bg-light);
  position: relative;
  overflow: hidden;
}

.tab-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 55px;
  flex-wrap: wrap;
  border-bottom: none;
  padding-bottom: 0px;
}

.tab-btn {
  background: #FFFFFF;
  border: 1px solid rgba(0, 44, 108, 0.08);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  color: var(--color-text-muted);
  cursor: pointer;
  border-radius: 50px;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 44, 108, 0.02);
}

.tab-btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2px;
  opacity: 0.7;
  transition: var(--transition-smooth);
}

.tab-btn.active {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-bg-white);
  box-shadow: 0 8px 25px rgba(0, 26, 68, 0.15);
}

.tab-btn.active svg {
  color: var(--color-accent);
  opacity: 1;
  transform: rotate(5deg) scale(1.1);
}

.tab-btn:hover:not(.active) {
  background-color: rgba(0, 44, 108, 0.04);
  color: var(--color-primary-dark);
  border-color: rgba(0, 44, 108, 0.2);
}

/* Category Grid Panels */
.tab-content {
  display: none;
  animation: tab-fade-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.tab-content.active {
  display: block;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* Product cards redesign */
.product-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(0, 44, 108, 0.1);
  border-radius: 18px 18px 42px 18px;
  padding: 34px 28px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0, 44, 108, 0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
}

.product-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 22px 46px rgba(0, 44, 108, 0.13);
}

.product-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  width: 52px;
  height: 4px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transition: width 0.45s ease;
}

.product-card:hover::after {
  width: calc(100% - 56px);
}

/* Dynamically colored active borders on hover */
#tab-agro .product-card:hover { border-color: rgba(21, 90, 39, 0.3); }
#tab-health .product-card:hover { border-color: rgba(16, 185, 129, 0.35); }
#tab-industrial .product-card:hover { border-color: rgba(0, 44, 108, 0.25); }
#tab-fmcg .product-card:hover { border-color: rgba(32, 135, 61, 0.3); }

/* Staggered card animation entries when tab active */
.tab-content.active .product-card {
  animation: card-appear 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--card-idx) * 0.06s);
}

@keyframes card-appear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Masked Gradient Border glow on hover */
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.product-card:hover::before {
  opacity: 1;
}

/* Inner radial light glow */
.card-inner-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(16, 185, 129, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.product-card:hover .card-inner-glow {
  opacity: 1;
}

/* Watermark background illustrations */
.card-faded-bg {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 120px;
  height: 120px;
  opacity: 0.05;
  color: var(--color-text-light);
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease, color 0.6s ease;
  transform: scale(0.9) translate(5px, 5px);
  z-index: 1;
}

.product-card:hover .card-faded-bg {
  opacity: 0.15;
  transform: scale(1.08) translate(0, 0);
  color: var(--color-accent);
}

.card-faded-bg svg {
  width: 100%;
  height: 100%;
}

.product-card-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.product-card:hover .product-card-content {
  transform: translateY(-4px);
}

/* Circular Icon Container matching mockup */
.product-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(21, 90, 39, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(21, 90, 39, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.categories-action {
  max-width: 760px;
  margin: 48px auto 0;
  padding: 28px 34px;
  text-align: center;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(0, 44, 108, 0.09);
  box-shadow: 0 14px 35px rgba(0, 44, 108, 0.05);
}

.categories-action p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0 auto 18px;
}

.categories-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  background: var(--color-primary);
  padding: 13px 24px;
}

.categories-action-btn span {
  transition: transform 0.3s ease;
}

.categories-action-btn:hover {
  color: #fff;
  background: var(--color-primary-dark);
  transform: translateY(-3px);
}

.categories-action-btn:hover span {
  transform: translateX(5px);
}

/* Mission, Vision & Operational Strength */
.purpose-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-color: var(--color-bg-dark);
}

.purpose-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 24%, rgba(16, 185, 129, .1), transparent 27%),
    radial-gradient(circle at 88% 72%, rgba(0, 44, 108, .35), transparent 30%);
}

.purpose-container {
  position: relative;
  z-index: 2;
}

.purpose-heading {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
}

.purpose-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: #7be4bc;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.purpose-heading .section-title {
  color: #fff;
}

.purpose-heading .section-title span {
  background: linear-gradient(135deg, #fff 30%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.purpose-heading p {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
}

.purpose-map {
  position: relative;
  max-width: 980px;
  min-height: 630px;
  margin: 0 auto;
  padding-top: 10px;
  perspective: 1200px;
}

.purpose-foundation {
  position: relative;
  z-index: 3;
  width: 154px;
  height: 154px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  border: 1px solid rgba(16, 185, 129, .55);
  background: rgba(255,255,255,.06);
  box-shadow: 0 0 0 14px rgba(16,185,129,.04), 0 0 0 28px rgba(16,185,129,.025), 0 18px 50px rgba(0,0,0,.35);
  animation: foundation-float 5s ease-in-out infinite;
}

.foundation-spark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  border-radius: 50%;
  color: var(--color-accent);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
}

.purpose-foundation strong {
  font-family: var(--font-heading);
  font-size: 1rem;
}

.purpose-foundation small {
  margin-top: 3px;
  color: rgba(255,255,255,.52);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.purpose-connectors {
  position: absolute;
  z-index: 1;
  top: 130px;
  left: 0;
  width: 100%;
  height: 250px;
  overflow: visible;
}

.purpose-connectors path {
  fill: none;
  stroke: rgba(16,185,129,.72);
  stroke-width: 2;
  stroke-dasharray: 8 8;
  vector-effect: non-scaling-stroke;
  animation: purpose-dash 18s linear infinite;
}

.purpose-connectors circle {
  fill: var(--color-accent);
  stroke: var(--color-bg-dark);
  stroke-width: 6;
  vector-effect: non-scaling-stroke;
}

.purpose-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: space-between;
  gap: clamp(40px, 12vw, 180px);
  margin-top: 188px;
}

.purpose-card-wrapper {
  position: relative;
  height: 380px;
  width: 100%;
  perspective: 1500px;
}

.purpose-card-3d {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1.15);
  will-change: transform;
}

/* Horizontal flip for Vision Card */
.purpose-card-wrapper:hover .purpose-card-vision,
.purpose-card-vision.flipped {
  transform: rotateY(180deg);
}

/* Vertical flip for Mission Card */
.purpose-card-wrapper:hover .purpose-card-mission,
.purpose-card-mission.flipped {
  transform: rotateX(180deg);
}

.purpose-card-front,
.purpose-card-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  border-radius: 22px;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transform-style: preserve-3d;
  transition: background 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
  overflow: hidden;
}

.purpose-card-front {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
  z-index: 2;
  transform: rotateY(0deg);
}

/* Dynamic background gradient for fronts */
.purpose-card-front::after {
  content: '';
  position: absolute;
  inset: -50%;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.08) 48%, transparent 58%);
  transform: translateX(-55%) rotate(8deg);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.purpose-card-wrapper:hover .purpose-card-front::after {
  transform: translateX(55%) rotate(8deg);
}

.purpose-card-back {
  background: rgba(4, 13, 26, 0.95);
  border: 1px solid rgba(16, 185, 129, 0.25);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 45px rgba(16, 185, 129, 0.1);
}

/* Separate card types distinct visual overlays */
.purpose-card-vision .purpose-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(145deg, rgba(0, 44, 108, 0.95), rgba(4, 13, 26, 0.98));
  border-color: rgba(16, 185, 129, 0.35);
}

.purpose-card-mission .purpose-card-back {
  transform: rotateX(180deg);
  background: linear-gradient(145deg, rgba(21, 90, 39, 0.95), rgba(4, 13, 26, 0.98));
  border-color: rgba(16, 185, 129, 0.35);
}

/* Hover effects for both front & back active borders */
.purpose-card-wrapper:hover .purpose-card-front {
  border-color: rgba(123, 228, 188, 0.4);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.3);
}

.purpose-card-wrapper:hover .purpose-card-back {
  border-color: rgba(123, 228, 188, 0.5);
  box-shadow: 0 25px 55px rgba(16, 185, 129, 0.2);
}

.purpose-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  width: 100%;
  transform: translateZ(35px);
}

.purpose-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #7be4bc;
  border-radius: 12px;
  background: rgba(16, 185, 129, .13);
  border: 1px solid rgba(16, 185, 129, .25);
  transition: transform .5s ease, background .4s ease;
}

.purpose-icon svg {
  width: 23px;
  height: 23px;
}

.purpose-label {
  padding: 7px 12px;
  border-radius: 999px;
  color: #8ce8c5;
  background: rgba(16, 185, 129, .08);
  border: 1px solid rgba(16, 185, 129, .22);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.purpose-card-wrapper:hover .purpose-icon {
  transform: rotate(-6deg) scale(1.1);
  background: rgba(16, 185, 129, .24);
}

.purpose-card-front h3,
.purpose-card-back h3 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 1.55rem;
  transform: translateZ(26px);
  font-family: var(--font-heading);
}

.purpose-card-front p,
.purpose-card-back p {
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
  font-size: .92rem;
  transform: translateZ(18px);
}

.purpose-card-back ul {
  display: grid;
  gap: 9px;
  margin-top: 18px;
  transform: translateZ(14px);
}

.purpose-card-back li {
  position: relative;
  padding-left: 17px;
  color: rgba(255, 255, 255, .72);
  font-size: .82rem;
  text-align: left;
}

.purpose-card-back li::before {
  content: '';
  position: absolute;
  top: .62em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* Flip Hints */
.flip-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateZ(15px);
}

.purpose-card-wrapper:hover .flip-hint {
  opacity: 1;
}

.hint-arrow {
  width: 14px;
  height: 14px;
  stroke: var(--color-accent);
  transition: transform 0.3s ease;
}

.purpose-card-wrapper:hover .hint-arrow {
  transform: translateX(4px);
}

@keyframes foundation-float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-7px); }
}

@keyframes purpose-dash {
  to { stroke-dashoffset: -160; }
}

#tab-health .product-icon {
  background: rgba(16, 185, 129, 0.06);
  color: var(--color-accent);
}

#tab-industrial .product-icon {
  background: rgba(0, 44, 108, 0.05);
  color: var(--color-primary);
}

#tab-fmcg .product-icon {
  background: rgba(32, 135, 61, 0.06);
  color: var(--color-secondary-light);
}

.product-card:hover .product-icon {
  transform: scale(1.08);
}

#tab-agro .product-card:hover .product-icon { background-color: var(--color-secondary); color: #FFFFFF; }
#tab-health .product-card:hover .product-icon { background-color: var(--color-accent); color: #FFFFFF; }
#tab-industrial .product-card:hover .product-icon { background-color: var(--color-primary); color: #FFFFFF; }
#tab-fmcg .product-card:hover .product-icon { background-color: var(--color-secondary-light); color: #FFFFFF; }

.product-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2.2px;
  transition: transform 0.4s ease;
}

.product-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0px;
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
}

/* Card divider horizontal line under title */
.card-divider {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  margin: 8px 0 16px 0;
  transition: width 0.3s ease, background-color 0.3s ease;
}

#tab-agro .card-divider { background-color: var(--color-secondary); }
#tab-health .card-divider { background-color: var(--color-accent); }
#tab-industrial .card-divider { background-color: var(--color-primary); }
#tab-fmcg .card-divider { background-color: var(--color-secondary-light); }

.product-card:hover .card-divider {
  width: 42px;
}

.product-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.product-card:hover p {
  color: var(--color-text-main);
}

/* Action Specs Link */
.product-cta {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-accent);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-cta {
  opacity: 1;
  transform: translateY(0);
}

/* Round Arrow Button in bottom-right corner */
.card-arrow-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid rgba(0, 44, 108, 0.06);
  box-shadow: 0 4px 12px rgba(0, 44, 108, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 24px;
  right: 24px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  z-index: 3;
}

#tab-agro .card-arrow-btn { color: var(--color-secondary); }
#tab-health .card-arrow-btn { color: var(--color-accent); }
#tab-industrial .card-arrow-btn { color: var(--color-primary); }
#tab-fmcg .card-arrow-btn { color: var(--color-secondary-light); }

.card-arrow-btn svg {
  width: 16px;
  height: 16px;
  stroke-width: 3px;
  transition: transform 0.3s ease;
}

.product-card:hover .card-arrow-btn {
  transform: scale(1.1) translateX(2px);
  box-shadow: 0 6px 18px rgba(0, 44, 108, 0.12);
}

#tab-agro .product-card:hover .card-arrow-btn { background-color: var(--color-secondary); color: #FFFFFF; border-color: transparent; }
#tab-health .product-card:hover .card-arrow-btn { background-color: var(--color-accent); color: #FFFFFF; border-color: transparent; }
#tab-industrial .product-card:hover .card-arrow-btn { background-color: var(--color-primary); color: #FFFFFF; border-color: transparent; }
#tab-fmcg .product-card:hover .card-arrow-btn { background-color: var(--color-secondary-light); color: #FFFFFF; border-color: transparent; }

/* SVG icon hover animations inside cards */
.product-card:hover .product-icon svg {
  animation: keyframe-icon-spin 1.5s ease-in-out infinite alternate;
}

/* Grain sway animation */
.product-card:hover .icon-grain svg {
  animation: sway-grain 2s infinite ease-in-out;
}

/* Med capsule floating pulse */
.product-card:hover .icon-pharma svg {
  animation: float-capsule 2.2s infinite ease-in-out;
}

/* Packaging box pulse */
.product-card:hover .icon-package svg {
  animation: scale-box 1.8s infinite ease-in-out;
}

/* Specific SVG Loops keyframes */
@keyframes keyframe-icon-spin {
  0% { transform: rotate(0); }
  100% { transform: rotate(12deg) scale(1.05); }
}

@keyframes sway-grain {
  0%, 100% { transform: rotate(0); }
  50% { transform: rotate(8deg) skewX(2deg); }
}

@keyframes float-capsule {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.05); filter: drop-shadow(0 0 3px rgba(16,185,129,0.3)); }
}

@keyframes scale-box {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* Global Network & Route Map Section */
.network {
  background-color: var(--color-bg-dark);
  color: var(--color-bg-white);
  overflow: hidden;
}

.network .section-title {
  color: #FFFFFF;
}

.network .section-title span {
  background: linear-gradient(135deg, var(--color-bg-white) 30%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.network .section-subtitle {
  color: rgba(255, 255, 255, 0.8) !important;
}

.network .badge {
  color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  background-color: rgba(255, 255, 255, 0.05) !important;
}

.map-container {
  position: relative;
  width: 100%;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#globeContainer {
  width: 580px;
  height: 580px;
  position: relative;
  max-width: 100%;
  cursor: grab;
  user-select: none;
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(0, 44, 108, 0.3), inset 0 0 60px rgba(16, 185, 129, 0.1);
  background: radial-gradient(circle at center, rgba(10, 29, 55, 0.3) 0%, rgba(3, 10, 20, 0.9) 80%);
}

#globeContainer:active {
  cursor: grabbing;
}

#globeContainer canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
  border-radius: 50%;
}

/* Glowing Port HTML Pin overlays */
.globe-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  pointer-events: auto;
  cursor: pointer;
  z-index: 5;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.globe-marker-dot {
  width: 9px;
  height: 9px;
  background-color: #F59E0B; /* Amber Orange core */
  border-radius: 50%;
  box-shadow: 0 0 10px #F59E0B;
  transition: all 0.3s ease;
  position: relative;
}

/* Pulsing outer ring */
.globe-marker-dot::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  width: 21px;
  height: 21px;
  border: 1.5px solid rgba(245, 158, 11, 0.6);
  border-radius: 50%;
  animation: pulse-ring 2s infinite ease-out;
  pointer-events: none;
}

.globe-marker-label {
  margin-left: 10px;
  color: #E2E8F0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.3px;
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9), 0 2px 8px rgba(0, 0, 0, 0.9);
  transition: all 0.3s ease;
  pointer-events: none;
}

/* Hover highlights */
.globe-marker:hover .globe-marker-dot {
  background-color: #FFFFFF;
  box-shadow: 0 0 15px #FFFFFF, 0 0 30px var(--color-accent);
  transform: scale(1.3);
}

.globe-marker:hover .globe-marker-label {
  color: #FFFFFF;
  font-size: 0.78rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 1), 0 2px 12px var(--color-accent);
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Map tooltip styling */
.map-tooltip {
  position: absolute;
  background: rgba(6, 18, 36, 0.95);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--border-radius-sm);
  padding: 10px 14px;
  color: var(--color-bg-white);
  font-size: 0.85rem;
  pointer-events: none;
  opacity: 0;
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
  transition: opacity 0.25s, transform 0.25s;
  transform: translate(-50%, -110%);
  z-index: 10;
}

.map-tooltip h5 {
  color: var(--color-accent);
  margin-bottom: 2px;
  font-size: 0.9rem;
}

/* Contact Us Section */
.contact {
  background-color: var(--color-bg-white);
  position: relative;
  overflow: hidden;
}

.contact::before,
.contact::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
  opacity: .42;
  animation: contact-orb 9s ease-in-out infinite;
}

.contact::before {
  top: -180px;
  left: -130px;
  background: radial-gradient(circle, rgba(16,185,129,.15), transparent 68%);
}

.contact::after {
  right: -150px;
  bottom: -190px;
  background: radial-gradient(circle, rgba(0,44,108,.13), transparent 68%);
  animation-delay: -4s;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 40px;
  align-items: stretch;
  position: relative;
  z-index: 2;
  perspective: 1400px;
}

/* Info block visual design card */
.contact-info {
  background: var(--color-bg-white);
  border: 1px solid rgba(0, 44, 108, 0.08);
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 15px 45px rgba(0, 44, 108, 0.02);
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  z-index: 2;
}

/* Gradient outline overlay on hover */
.contact-info::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 24px;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.contact-info:hover {
  transform: translateY(-7px) rotateY(1.5deg);
  box-shadow: 0 25px 55px rgba(0, 44, 108, 0.08);
  border-color: transparent;
}

.contact-info:hover::before {
  opacity: 1;
}

/* Contact detail row cards */
.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(0, 44, 108, 0.015);
  border: 1px solid rgba(0, 44, 108, 0.03);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
  transform: translateX(8px) scale(1.015);
  background: linear-gradient(100deg, rgba(16,185,129,.08), rgba(0,44,108,.035));
  border-color: rgba(16, 185, 129, 0.15);
  box-shadow: 0 5px 15px rgba(16, 185, 129, 0.03);
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 44, 108, 0.05);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2px;
}

.contact-item:hover .contact-item-icon {
  background: var(--color-primary);
  color: var(--color-bg-white);
  transform: scale(1.06) rotate(4deg);
}

.contact-item-details h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--color-primary-dark);
}

.contact-item-details p, .contact-item-details a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.contact-item-details a:hover {
  color: var(--color-accent);
}

/* Social media connections */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 44, 108, 0.04);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-btn svg {
  width: 16px;
  height: 16px;
  stroke-width: 2px;
}

.social-btn:hover {
  background: var(--color-accent);
  color: var(--color-bg-white);
  transform: translateY(-3px) scale(1.05);
}

/* Form block visual design card */
.contact-form-wrapper {
  background: var(--color-bg-white);
  border: 1px solid rgba(0, 44, 108, 0.08);
  border-radius: 24px;
  padding: 44px;
  min-height: auto;
  box-shadow: 0 15px 45px rgba(0, 44, 108, 0.02);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  z-index: 2;
}

/* Gradient outline overlay on hover */
.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 24px;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.contact-form-wrapper:hover {
  transform: translateY(-7px) rotateY(-1.5deg);
  box-shadow: 0 25px 55px rgba(0, 44, 108, 0.08);
  border-color: transparent;
}

.contact-form-wrapper:hover::before {
  opacity: 1;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
  width: 100%;
}

.form-group:hover .form-control:not(:focus) {
  border-color: rgba(0, 44, 108, 0.22);
  background-color: var(--color-bg-white);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: rgba(0, 44, 108, 0.015);
  border: 1px solid rgba(0, 44, 108, 0.08);
  border-radius: 12px;
  color: var(--color-text-main);
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-accent);
  background-color: var(--color-bg-white);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
  outline: none;
  transform: translateY(-2px);
}

.form-label {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  font-size: 0.92rem;
  pointer-events: none;
  transition: var(--transition-smooth);
}

/* Floating Label logic */
.form-control:focus ~ .form-label,
.form-control:not(:placeholder-shown) ~ .form-label {
  top: 0;
  left: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-secondary);
  background: var(--color-bg-white);
  padding: 0 8px;
  transform: translateY(-50%);
}

textarea.form-control {
  min-height: 150px;
  resize: none;
}

textarea.form-control ~ .form-label {
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  line-height: 1.45;
}

textarea.form-control:focus ~ .form-label,
textarea.form-control:not(:placeholder-shown) ~ .form-label {
  top: 0;
  transform: translateY(-50%);
}

.submit-btn-container {
  align-self: flex-start;
}

.submit-btn-container button[type="submit"] {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.submit-btn-container button[type="submit"]:hover {
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 8px 25px rgba(21, 90, 39, 0.3);
}

.contact .badge {
  position: relative;
  overflow: hidden;
  animation: contact-badge-pulse 2.8s ease-in-out infinite;
}

.contact .section-title span {
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: contact-title-flow 4s linear infinite;
}

@keyframes contact-orb {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(28px,18px,0) scale(1.12); }
}

@keyframes contact-badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
  50% { box-shadow: 0 0 0 8px rgba(16,185,129,.08); }
}

@keyframes contact-title-flow {
  to { background-position: 200% center; }
}

.submit-btn-container button[type="submit"] svg {
  transition: transform 0.3s ease;
}

.submit-btn-container button[type="submit"]:hover svg {
  transform: translateX(4px) translateY(-1px);
}

/* Form Response Notification */
.form-status {
  padding: 14px 20px;
  border-radius: var(--border-radius-sm);
  font-size: 0.95rem;
  display: none;
  animation: fade-in 0.4s ease;
}

.form-status.success {
  display: block;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--color-secondary);
}

.form-status.error {
  display: block;
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #DC2626;
}

/* Footer Section */
.footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(16,185,129,.1), transparent 28%),
    linear-gradient(145deg, #040d1a 0%, #06152a 58%, #040d1a 100%);
  color: var(--color-bg-white);
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .9fr 1.2fr;
  gap: clamp(36px, 5vw, 70px);
  margin-bottom: 50px;
}

.footer-col {
  padding: 8px 0;
}

.footer-brand {
  max-width: 430px;
  justify-self: start;
  text-align: left;
}

.footer-logo {
  display: block;
  width: 154px;
  height: 154px;
  max-width: 100%;
  margin-bottom: 22px;
  object-fit: contain;
  object-position: left center;
  padding: 7px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.15);
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.22));
  transition: transform .45s cubic-bezier(.16,1,.3,1), filter .45s ease;
}

.footer-logo:hover {
  transform: translateY(-5px) scale(1.035);
  filter: drop-shadow(0 15px 30px rgba(16,185,129,.18));
}

.footer-col h4 {
  color: var(--color-bg-white);
  font-size: 1.15rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-accent);
}

.footer-col p {
  color: #94A3B8;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: #94A3B8;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
}

.footer-link span {
  color: var(--color-accent);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform .3s ease;
}

.footer-link svg {
  width: 14px;
  height: 14px;
  color: var(--color-accent);
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-bg-white);
  transform: translateX(4px);
}

.footer-link:hover svg {
  transform: translateX(2px);
}

.footer-link:hover span {
  transform: translateX(4px);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #dbe7f5;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.055);
}

.footer-socials svg {
  width: 17px;
  height: 17px;
}

.footer-socials a:hover {
  color: #fff;
  border-color: var(--color-accent);
  background: var(--color-accent);
  transform: translateY(-4px) rotate(5deg);
  box-shadow: 0 8px 20px rgba(16,185,129,.25);
}

.footer-contact-intro {
  margin-bottom: 16px !important;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 13px;
  color: #cbd5e1;
  font-size: .82rem;
  line-height: 1.45;
  transition: color .3s ease, transform .3s ease;
}

.footer-contact-item:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-contact-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  border-radius: 9px;
  color: var(--color-accent);
  background: rgba(16,185,129,.09);
  border: 1px solid rgba(16,185,129,.15);
}

.footer-contact-icon svg {
  width: 16px;
  height: 16px;
}

.footer-contact-item small {
  display: block;
  margin-bottom: 1px;
  color: #718096;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-quote-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 11px 18px;
  color: #fff;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  font-size: .82rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0,0,0,.2);
}

.footer-quote-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(16,185,129,.18);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.85rem;
  color: #64748B;
  flex-wrap: wrap;
  gap: 16px;
}

.back-to-top {
  width: 44px;
  height: 44px;
  border-radius: 50px;
  background-color: var(--color-primary);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg-white);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.back-to-top:hover {
  background-color: var(--color-accent);
  color: var(--color-primary-dark);
  transform: translateY(-5px);
}

/* Animations */
@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes pulse-glow-dot {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; filter: drop-shadow(0 0 6px var(--color-accent)); }
  100% { transform: scale(1); opacity: 0.8; }
}

@keyframes scroll-wheel-animate {
  0% { top: 6px; opacity: 1; }
  50% { top: 18px; opacity: 0; }
  100% { top: 6px; opacity: 1; }
}

@keyframes tab-fade-in {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dash-pulse {
  from {
    stroke-dashoffset: 200;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Reveal Observer Utility Classes */
.reveal {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade {
  transform: scale(0.98);
}

.reveal-up {
  transform: translateY(40px);
}

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

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

.revealed {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-cards-panel {
    justify-content: center;
    width: 100%;
  }
  .interactive-deck {
    max-width: 100%;
  }
  .about-image-wrapper img {
    min-height: 0;
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }
}

@media (max-width: 900px) {
  :root {
    --nav-height: 94px;
  }
  .section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .hero-banner-section {
    margin-top: var(--nav-height);
    height: auto;
  }
  .menu-btn {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: rgba(4, 13, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 50px 24px;
    align-items: flex-start;
    gap: 24px;
    transition: var(--transition-smooth);
    z-index: 999;
  }
  .nav-links.active {
    left: 0;
  }
  .nav-link {
    color: var(--color-bg-white) !important;
    font-size: 1.25rem;
    width: 100%;
  }
  .nav-dropdown {
    width: 100%;
  }
  .nav-dropdown-link {
    justify-content: space-between;
  }
  .nav-dropdown-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0 0 0 14px;
    grid-template-columns: 1fr;
    gap: 2px;
    overflow: hidden;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height var(--transition-smooth), padding var(--transition-smooth);
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: none;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    max-height: 760px;
    padding-top: 12px;
    padding-bottom: 4px;
  }
  .nav-dropdown-menu a {
    padding: 8px 10px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
  }
  .nav-dropdown.open .nav-dropdown-arrow {
    transform: translateY(2px) rotate(225deg);
  }
  .nav-cta {
    display: none; /* Hide in mobile navbar */
  }
  .logo-container img,
  .navbar.scrolled .logo-container img {
    width: 98px;
    height: 84px;
  }
  .logo-tagline {
    margin-top: 1px;
    font-size: 0.54rem;
    letter-spacing: 0.8px;
  }
  .navbar-container {
    padding: 0 18px;
  }
  .nav-links.active ~ .nav-cta {
    display: block;
    margin-top: 20px;
  }
  .menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .contact-info {
    padding: 24px;
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .categories-action {
    padding: 24px 20px;
  }
  .purpose-card-wrapper {
    height: 390px;
  }
  .purpose-map {
    min-height: 0;
  }
  .purpose-foundation {
    width: 136px;
    height: 136px;
    margin-bottom: 46px;
  }
  .purpose-connectors {
    display: none;
  }
  .purpose-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 600px;
    margin: 0 auto;
  }
  .purpose-card-front,
  .purpose-card-back {
    padding: 24px;
  }
}

@media (max-width: 1200px) and (min-width: 901px) {
  :root {
    --nav-height: 116px;
  }
  .navbar-container {
    padding-inline: 24px;
  }
  .logo-container img,
  .navbar.scrolled .logo-container img {
    width: 124px;
    height: 106px;
  }
  .logo-tagline {
    margin-top: 1px;
    font-size: 0.63rem;
    letter-spacing: 1px;
  }
  .hero-banner-section {
    height: auto;
  }
  .nav-links {
    gap: 20px;
  }
  .nav-link {
    font-size: .88rem;
  }
  .header-quote-btn {
    padding: 11px 18px;
  }
  .purpose-map {
    max-width: 880px;
  }
  .purpose-grid {
    grid-template-columns: repeat(2, minmax(0, 340px));
  }
}

/* Minimal reusable Ruhee Overseas loading screen */
body.ruhee-loader-active {
  overflow: hidden;
}

.ruhee-loader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 24px;
  background: #fffefb;
  opacity: 1;
  transition: opacity .55s ease;
}

.ruhee-loader__content {
  width: min(420px, 90vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .42s ease, transform .55s cubic-bezier(.16, 1, .3, 1);
}

.ruhee-loader__logo {
  display: block;
  width: clamp(125px, 11vw, 185px);
  height: auto;
  object-fit: contain;
  opacity: 0;
  filter: blur(5px);
  transform: translateY(12px) scale(.96);
  animation: ruhee-logo-enter .75s cubic-bezier(.16, 1, .3, 1) .12s forwards;
}

.ruhee-loader__tagline {
  display: flex;
  justify-content: center;
  gap: clamp(7px, 1vw, 12px);
  margin-top: clamp(12px, 1.6vw, 18px);
  color: #07336c;
  font-family: var(--font-heading);
  font-size: clamp(10px, .8vw, 13px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: clamp(1px, .16vw, 2.2px);
  text-align: center;
  white-space: nowrap;
}

.ruhee-loader__tagline span {
  opacity: 0;
  transform: translateY(8px);
  animation: ruhee-word-enter .5s ease forwards;
}

.ruhee-loader__tagline span:nth-child(1) {
  animation-delay: .55s;
}

.ruhee-loader__tagline span:nth-child(2) {
  animation-delay: .72s;
}

.ruhee-loader__tagline span:nth-child(3) {
  animation-delay: .89s;
}

.ruhee-loader__progress {
  position: relative;
  width: clamp(140px, 13vw, 180px);
  height: 2px;
  margin-top: clamp(20px, 2.2vw, 28px);
  overflow: hidden;
  background: rgba(0, 44, 108, .1);
  opacity: 0;
  animation: ruhee-simple-fade .3s ease .48s forwards;
}

.ruhee-loader__progress-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #002c6c, #155a27);
  transform: scaleX(0);
  transform-origin: left;
  animation: ruhee-progress-fill 1.95s cubic-bezier(.2, .65, .25, 1) .42s forwards;
}

.ruhee-loader__progress-light {
  position: absolute;
  top: 0;
  left: -28px;
  width: 28px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .95), transparent);
  animation: ruhee-progress-light 1.35s ease-in-out .75s infinite;
}

.ruhee-loader--exit {
  pointer-events: none;
  opacity: 0;
}

.ruhee-loader--exit .ruhee-loader__content {
  opacity: .25;
  transform: translateY(-10px);
}

@keyframes ruhee-logo-enter {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes ruhee-word-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ruhee-simple-fade {
  to { opacity: 1; }
}

@keyframes ruhee-progress-fill {
  to { transform: scaleX(1); }
}

@keyframes ruhee-progress-light {
  from { transform: translateX(0); }
  to { transform: translateX(208px); }
}

@media (max-width: 360px) {
  .ruhee-loader__tagline {
    max-width: 270px;
    flex-wrap: wrap;
    row-gap: 4px;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ruhee-loader {
    transition-duration: .2s;
  }

  .ruhee-loader__content {
    transition-duration: .2s;
  }

  .ruhee-loader__logo,
  .ruhee-loader__tagline span,
  .ruhee-loader__progress {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
  }

  .ruhee-loader__progress-fill {
    transform: scaleX(1);
    animation: none;
  }

  .ruhee-loader__progress-light {
    display: none;
  }
}

@media (max-width: 576px) {
  .container {
    padding-inline: 18px;
  }
  .section {
    padding: 52px 0;
  }
  .section-title {
    font-size: clamp(1.85rem, 9vw, 2.25rem);
  }
  .section-subtitle {
    font-size: .95rem;
  }
  .hero-banner-section {
    height: auto;
    aspect-ratio: 5 / 3;
    overflow: hidden;
  }
  .hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  .about-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .stat-box {
    padding: 20px 14px;
  }
  .tab-nav {
    gap: 10px;
    margin-bottom: 36px;
  }
  .tab-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .product-card {
    padding: 30px 24px 26px;
  }
  .categories-action-btn {
    width: 100%;
    justify-content: center;
  }
  .purpose-heading {
    margin-bottom: 28px;
  }
  .purpose-heading p {
    font-size: .95rem;
  }
  .purpose-foundation {
    width: 124px;
    height: 124px;
    box-shadow: 0 0 0 10px rgba(16,185,129,.04), 0 0 0 20px rgba(16,185,129,.025);
  }
  .purpose-card-front,
  .purpose-card-back {
    padding: 24px 20px;
  }
  .purpose-card-top {
    margin-bottom: 20px;
  }
  .purpose-label {
    padding: 6px 9px;
    font-size: .58rem;
  }
  #globeContainer {
    width: min(88vw, 420px);
    height: min(88vw, 420px);
  }
  .footer {
    padding: 20px 0 24px;
  }
  .footer .container {
    padding-inline: 14px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 20px;
    padding: 24px 12px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.045));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 45px rgba(0,0,0,.22);
  }
  .footer-col {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .footer-col:last-child {
    border-bottom: 0;
  }
  .footer-brand {
    max-width: none;
    justify-self: stretch;
    text-align: center;
  }
  .footer-logo {
    width: 170px;
    height: 170px;
    margin: 0 auto 22px;
    object-position: center;
  }
  .footer-brand p {
    max-width: 310px;
    margin-inline: auto;
  }
  .footer-socials {
    justify-content: center;
  }
  .footer-col h4 {
    margin-bottom: 16px;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: .95rem;
  }
  .footer-col h4::after {
    background: linear-gradient(90deg, #fbbf24, transparent);
  }
  .footer-links {
    gap: 8px;
  }
  .footer-link {
    width: 100%;
    min-height: 44px;
    padding: 11px 14px;
    color: #fff;
    border-radius: 11px;
    background: rgba(1, 18, 36, .92);
    border: 1px solid rgba(255,255,255,.04);
    font-size: .84rem;
  }
  .footer-link span {
    color: #fbbf24;
  }
  .footer-contact-item {
    padding: 9px 10px;
    margin-bottom: 8px;
    border-radius: 11px;
    background: rgba(1,18,36,.68);
  }
  .footer-quote-btn {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
    padding-top: 20px;
  }
  .footer-bottom > div {
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
  }
}

@media (min-width: 577px) and (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Scroll Reveal Transitions */
.reveal {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-down {
  transform: translateY(-40px);
}

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

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

.reveal-fade {
  transform: scale(0.96);
}

.reveal.revealed {
  opacity: 1;
  transform: translate(0) scale(1);
}

.purpose-card-wrapper {
  transition: transform 0.4s ease;
}

.purpose-card-wrapper:hover {
  transform: translateY(-10px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Responsive styling for statistics section */
@media (max-width: 991px) {
  .stats-bar-section .about-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}
@media (max-width: 576px) {
  .stats-bar-section .about-stats {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

/* Who We Are image hover zoom */
.about-image-wrapper img:hover {
  transform: scale(1.05);
}

/* ==========================================
   Cinematic Preloader Loading Screen
   ========================================== */
body.preloader-active {
  overflow: hidden !important;
  height: 100vh;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(145deg, #eff9ff 0%, #dff3ff 38%, #edf8ff 68%, #d7efff 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1),
              visibility 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  overflow: hidden;
}

.preloader-bg-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 44%, rgba(255,255,255,.92) 0%, rgba(224,244,255,.7) 34%, transparent 64%),
    radial-gradient(circle at 18% 22%, rgba(56,189,248,.2), transparent 25%),
    radial-gradient(circle at 84% 76%, rgba(14,165,233,.16), transparent 28%);
  pointer-events: none;
  animation: preloader-glow-breath 4s ease-in-out infinite alternate;
}

.preloader-grid-network {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .5;
  background-image:
    linear-gradient(rgba(2,132,199,.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2,132,199,.065) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, #000 12%, transparent 72%);
  animation: preloader-grid-drift 12s linear infinite;
}

#preloader::before,
#preloader::after {
  content: "";
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
  border: 1px solid rgba(14,165,233,.2);
  box-shadow: 0 0 60px rgba(56,189,248,.1), inset 0 0 40px rgba(255,255,255,.35);
}

#preloader::before {
  width: min(42vw, 520px);
  height: min(42vw, 520px);
  left: -12vw;
  top: -18vw;
  animation: preloader-orb-float 8s ease-in-out infinite;
}

#preloader::after {
  width: min(32vw, 390px);
  height: min(32vw, 390px);
  right: -8vw;
  bottom: -13vw;
  animation: preloader-orb-float 9s ease-in-out -3s infinite reverse;
}

.preloader-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 90%;
  width: 460px;
}

.preloader-logo-svg {
  width: min(76vw, 290px);
  height: min(76vw, 290px);
  overflow: visible;
  filter: drop-shadow(0 16px 28px rgba(0, 86, 150, .16));
  margin-bottom: 24px;
}

/* SVG Elements Base States & Sequences */

.svg-bg-network {
  opacity: 0;
  animation: preloader-fade-in 1.5s forwards 0.2s;
}

.swoosh-navy-globe {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: draw-stroke 1.5s forwards 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.swoosh-green-globe {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: draw-stroke 1.5s forwards 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.globe-grid-lines {
  opacity: 0;
  animation: preloader-fade-in 1s forwards 1.0s;
}

/* Globe continent rotating animation */
.spinning-landmasses {
  opacity: 0;
  animation: preloader-fade-in 1s forwards 1.0s, rotate-continents 15s infinite linear 1.0s;
}

.logo-capital-r {
  opacity: 0;
  transform: scale(0.96);
  transform-origin: 240px 160px;
  animation: preloader-scale-in 1.3s forwards 1.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.swoosh-center-green {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: draw-stroke 1.3s forwards 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-cargo-ship {
  opacity: 0;
  transform: translate(15px, 5px);
  animation: preloader-ship-sail 1.6s forwards 1.9s cubic-bezier(0.25, 1, 0.5, 1);
}

.ship-wave-navy {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: draw-stroke 1.2s forwards 2.0s, ship-wave-bob 3.5s infinite ease-in-out 3.2s;
}

.ship-wave-green {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: draw-stroke 1.2s forwards 2.1s, ship-wave-bob 3.5s infinite ease-in-out 3.4s;
}

.logo-growth-arrow {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: draw-stroke 1s forwards 2.4s cubic-bezier(0.16, 1, 0.3, 1), preloader-arrow-glow 2s infinite alternate 3.4s;
}

/* Typography styles */
.preloader-text {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary-dark) !important; /* Brand navy instead of white */
  letter-spacing: 0.26em;
  text-indent: 0.26em; /* Centers letter-spacing exactly */
  text-transform: uppercase;
  margin-bottom: 2px;
  opacity: 0;
  transform: translateY(12px);
  animation: preloader-fade-in-up 0.8s forwards 2.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-sub {
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 700;
  color: #10b981 !important; /* Brand green */
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(12px);
  animation: preloader-fade-in-up 0.8s forwards 2.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--color-text-muted) !important; /* Slate color instead of white */
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  text-transform: uppercase;
  border-top: 1px solid rgba(0, 44, 108, 0.12); /* Darker border for light bg */
  padding-top: 10px;
  width: 220px;
  opacity: 0;
  animation: preloader-fade-in 1s forwards 3.2s;
}

/* Shimmer Progress bar */
.preloader-progress-wrap {
  width: 140px;
  height: 4px;
  background: rgba(2,132,199,.12);
  border-radius: 4px;
  margin-top: 24px;
  overflow: hidden;
  opacity: 0;
  animation: preloader-fade-in 0.6s forwards 3.4s;
}

.preloader-progress-bar {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #0284c7, #38bdf8, var(--color-accent), transparent);
  filter: drop-shadow(0 0 5px rgba(14,165,233,.55));
  transform: translateX(-100%);
  animation: preloader-shimmer 2.2s infinite linear;
}

/* Fade out classes */
#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Animations & Keyframes */

@keyframes preloader-fade-in {
  to { opacity: 1; }
}

@keyframes preloader-grid-drift {
  to { background-position: 54px 54px; }
}

@keyframes preloader-orb-float {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(22px,16px,0) scale(1.06); }
}

@keyframes preloader-fade-in-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes draw-stroke {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes rotate-continents {
  0% { transform: translateX(0); }
  100% { transform: translateX(-140px); }
}

@keyframes preloader-scale-in {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes preloader-ship-sail {
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes ship-wave-bob {
  0%, 100% { transform: translateX(0) scaleY(1); }
  50% { transform: translateX(-5px) scaleY(1.05); }
}

@keyframes preloader-arrow-glow {
  0% { filter: drop-shadow(0 0 1px rgba(16, 185, 129, 0.2)); }
  100% { filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.8)); }
}

@keyframes preloader-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes preloader-glow-breath {
  0% { opacity: 0.8; }
  100% { opacity: 1; }
}

/* ==========================================================================
   Secondary Pages & Inner Sections
   ========================================================================== */

/* Inner Page Banner styling */
.hero-banner-section.inner-banner {
  position: relative;
  height: auto;
  aspect-ratio: 1672 / 941;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-banner-section.inner-banner.about-page-banner {
  background: #fff;
  border-bottom-color: rgba(0, 44, 108, 0.1);
}

.hero-banner-section.inner-banner.about-page-banner::before {
  content: none;
}

.about-page-banner .hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.banner-overlay-content {
  position: absolute;
  width: 100%;
  z-index: 2;
  left: 0;
}

.banner-overlay-content .container {
  padding-left: 20px;
  padding-right: 20px;
}

.banner-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-bg-white);
  margin-bottom: 12px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  animation: fadeUpIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.banner-subtitle {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--color-accent);
  font-weight: 500;
  max-width: 600px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  animation: fadeUpIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  opacity: 0;
}

/* Why Choose Us Section with Animated Winding Timeline (Dark Dashboard Theme) */
.why-choose-us {
  background-color: #040D1A;
  position: relative;
  overflow: hidden;
  padding: 92px 0 70px;
}

.why-choose-us .section-title {
  color: #FFFFFF;
}

.why-choose-us .section-subtitle {
  color: #94A3B8;
  max-width: 610px;
  margin-top: 12px;
}

.why-choose-kicker {
  position: relative;
  margin-bottom: 12px;
  padding-left: 34px;
}

.why-choose-kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
  background: var(--color-accent);
  transform: translateY(-50%);
}

.why-choose-kicker .badge {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-accent);
  border-radius: 0;
  font-size: .72rem;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.pipeline-flow-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 44px auto 0;
}

/* Winding Connector SVG */
.pipeline-diagram-wrapper {
  position: relative;
  width: 100%;
  height: 850px;
}

.pipeline-svg-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.pipeline-track {
  fill: none;
  stroke: rgba(16, 185, 129, 0.13);
  stroke-width: 9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pipeline-flow {
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16, 16;
  animation: pipelineDash 2s linear infinite;
  filter: drop-shadow(0 0 7px rgba(16, 185, 129, 0.72));
}

@keyframes pipelineDash {
  to {
    stroke-dashoffset: -50;
  }
}

/* Why Choose Us Timeline Cards */
.why-choose-card {
  position: absolute;
  background: linear-gradient(145deg, rgba(17, 35, 58, .96), rgba(6, 18, 34, .98));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 15px;
  padding: 22px 22px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
  border: 1px solid rgba(148, 163, 184, .17);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-height: 145px;
}

.why-choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), #8ee4c3);
  transition: var(--transition-smooth);
  opacity: 1;
  border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
}

.why-choose-card:hover {
  box-shadow: 0 22px 48px rgba(16, 185, 129, 0.16);
  border-color: rgba(16, 185, 129, 0.45);
}

.why-choose-card:hover::before {
  opacity: 1;
}

/* Card Step Badge */
.why-choose-card .step-badge {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-accent);
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, .32);
  padding: 4px 12px;
  border-radius: 20px;
  align-self: flex-start;
  transition: var(--transition-smooth);
}

.why-choose-card:hover .step-badge {
  background-color: var(--color-accent);
  color: #03130d;
}

.why-choose-card h3 {
  font-family: var(--font-heading);
  font-size: 1.04rem;
  color: #FFFFFF; /* White title text */
  font-weight: 700;
  margin: 0;
}

.why-choose-card p {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #94A3B8; /* Muted text */
  line-height: 1.5;
  margin: 0;
}

/* Pipeline Connecting Nodes on Desktop */
.why-choose-card .pipeline-node {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #040D1A;
  border: 4px solid #040d1a; /* Matches dark background */
  box-shadow: 0 0 0 2px var(--color-accent), 0 0 12px rgba(16, 185, 129, .55);
  z-index: 10;
  transition: var(--transition-smooth);
}

.why-choose-card:hover .pipeline-node {
  background-color: var(--color-accent);
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.8);
}

.why-choose-card .pipeline-node::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  top: -4px;
  left: -4px;
  opacity: 0;
  box-sizing: content-box;
}

.why-choose-card:hover .pipeline-node::after {
  border-color: var(--color-accent);
  animation: pulseRing 1.5s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
}

.why-choose-card.step-5 .pipeline-node {
  bottom: auto;
  top: -14px;
}

@keyframes pulseRing {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Specific Positions of Cards on Desktop */
.why-choose-card.step-1 {
  left: 10%;
  width: 25%;
  top: 190px;
  transform: translateY(-100%);
}
.why-choose-card.step-1:hover {
  transform: translateY(-100%) translateY(-5px);
}

.why-choose-card.step-2 {
  left: 59%;
  width: 25%;
  top: 190px;
  transform: translateY(-100%);
}
.why-choose-card.step-2:hover {
  transform: translateY(-100%) translateY(-5px);
}

.why-choose-card.step-3 {
  left: 12%;
  width: 25%;
  top: 470px;
  transform: translateY(-50%);
}
.why-choose-card.step-3:hover {
  transform: translateY(-50%) translateY(-5px);
}

.why-choose-card.step-4 {
  left: 57%;
  width: 25%;
  top: 470px;
  transform: translateY(-50%);
}
.why-choose-card.step-4:hover {
  transform: translateY(-50%) translateY(-5px);
}

.why-choose-card.step-3 .pipeline-node,
.why-choose-card.step-4 .pipeline-node {
  display: none;
}

.why-choose-card.step-5 {
  left: 35%;
  width: 30%;
  top: 740px;
  transform: translateY(0);
}
.why-choose-card.step-5:hover {
  transform: translateY(-5px);
}

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

/* Responsiveness for Inner Banner and Custom Timeline */
@media (max-width: 991px) {
  .pipeline-diagram-wrapper {
    height: auto !important;
    padding-bottom: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 45px;
    position: relative;
    padding-left: 40px; /* Space for the vertical line */
  }
  
  .pipeline-diagram-wrapper::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 20px;
    bottom: 20px;
    width: 4px;
    background: repeating-linear-gradient(to bottom, var(--color-accent) 0, var(--color-accent) 10px, transparent 10px, transparent 20px);
    opacity: 0.4;
  }
  
  .why-choose-card {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    bottom: auto !important;
    width: 100% !important;
    transform: none !important; /* Reset vertical offset transforms on mobile */
  }
  
  .why-choose-card.step-1:hover,
  .why-choose-card.step-2:hover,
  .why-choose-card.step-3:hover,
  .why-choose-card.step-4:hover,
  .why-choose-card.step-5:hover {
    transform: translateY(-5px) !important;
  }
  
  .why-choose-card .pipeline-node {
    display: block;
    left: -37px !important; /* Align exactly on the vertical line center */
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    border-color: #040d1a !important;
  }

  .why-choose-card:hover .pipeline-node {
    transform: translateY(-50%) scale(1.1) !important;
  }
}

@media (max-width: 768px) {
  .hero-banner-section.inner-banner {
    height: auto;
    aspect-ratio: 1672 / 941;
  }
  .banner-title {
    font-size: 2.5rem;
  }
  .banner-subtitle {
    font-size: 1.1rem;
  }
}

/* About page: supplied wide corporate image */
.about-image-wrapper:has(img[src$="about us section.png"]) {
  width: 100%;
  max-width: 620px;
  background: #fff;
}

.about-image-wrapper img[src$="about us section.png"] {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 8 / 3;
  object-fit: contain;
}

/* Director's Message */
.director-message {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(16, 185, 129, .10), transparent 26%),
    linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}

.director-message-card {
  position: relative;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 250px;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(38px, 6vw, 74px);
  overflow: hidden;
  border: 1px solid rgba(0, 44, 108, .10);
  border-radius: 30px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 28px 75px rgba(0, 44, 108, .10);
}

.director-message-card::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 300px;
  height: 300px;
  border: 42px solid rgba(16, 185, 129, .055);
  border-radius: 50%;
  pointer-events: none;
}

.director-message-mark {
  align-self: start;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(145deg, var(--color-primary), var(--color-secondary));
  box-shadow: 0 18px 38px rgba(0, 44, 108, .20);
}

.director-message-mark span {
  height: 70px;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
}

.director-message-content {
  position: relative;
  z-index: 2;
}

.director-message-kicker {
  display: block;
  margin-bottom: 11px;
  color: var(--color-secondary);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.director-message-content .section-title {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.director-message-content blockquote {
  margin: 0 0 16px;
  color: var(--color-text-main);
  font-size: 1.03rem;
  font-weight: 600;
  line-height: 1.75;
}

.director-message-content > p {
  color: var(--color-text-muted);
  font-size: .94rem;
  line-height: 1.75;
}

.director-signature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 26px;
}

.signature-line {
  width: 44px;
  height: 2px;
  background: var(--color-accent);
}

.director-signature strong,
.director-signature small {
  display: block;
}

.director-signature strong {
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-size: 1.02rem;
}

.director-signature small {
  color: var(--color-text-muted);
  font-size: .75rem;
}

.director-message-values {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 13px;
}

.director-message-values > div {
  padding: 18px 20px;
  border-left: 3px solid var(--color-accent);
  border-radius: 0 14px 14px 0;
  background: #f7fafc;
}

.director-message-values strong,
.director-message-values span {
  display: block;
}

.director-message-values strong {
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-size: .95rem;
}

.director-message-values span {
  margin-top: 2px;
  color: var(--color-text-muted);
  font-size: .72rem;
}

/* Mission & Vision: light page treatment */
.purpose-section {
  color: var(--color-text-main);
  background: #fff;
}

.purpose-section::before {
  background:
    radial-gradient(circle at 12% 24%, rgba(16, 185, 129, .08), transparent 27%),
    radial-gradient(circle at 88% 72%, rgba(0, 44, 108, .08), transparent 30%);
}

.purpose-kicker {
  color: var(--color-secondary);
}

.purpose-heading .section-title {
  color: var(--color-primary-dark);
}

.purpose-heading .section-title span {
  background: linear-gradient(135deg, var(--color-primary) 25%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.purpose-heading p {
  color: var(--color-text-muted);
}

.purpose-foundation {
  color: var(--color-primary-dark);
  background: #fff;
  box-shadow: 0 0 0 14px rgba(16,185,129,.05), 0 0 0 28px rgba(16,185,129,.025), 0 18px 50px rgba(0,44,108,.12);
}

.foundation-spark {
  background: rgba(16,185,129,.08);
  border-color: rgba(16,185,129,.18);
}

.purpose-foundation small {
  color: var(--color-text-muted);
}

.purpose-connectors circle {
  stroke: #fff;
}

.purpose-card-front {
  background: rgba(255,255,255,.94);
  border-color: rgba(0,44,108,.12);
  box-shadow: 0 20px 45px rgba(0,44,108,.11);
}

.purpose-card-front::after {
  background: linear-gradient(115deg, transparent 38%, rgba(16,185,129,.07) 48%, transparent 58%);
}

.purpose-card-front h3 {
  color: var(--color-primary-dark);
}

.purpose-card-front p {
  color: var(--color-text-muted);
}

.purpose-card-front .purpose-label {
  color: var(--color-secondary);
}

.purpose-card-wrapper:hover .purpose-card-front {
  border-color: rgba(16,185,129,.4);
  box-shadow: 0 25px 55px rgba(0,44,108,.14);
}

/* Why Choose Us: requested white section background */
.why-choose-us {
  background: #fff;
}

.why-choose-us .section-title {
  color: var(--color-primary-dark);
}

.why-choose-us .section-subtitle {
  color: var(--color-text-muted);
}

.why-choose-card .pipeline-node {
  border-color: #fff;
  background-color: #fff;
}

@media (max-width: 991px) {
  .director-message-card {
    grid-template-columns: 80px minmax(0, 1fr);
  }

  .director-message-mark {
    width: 76px;
    height: 76px;
    border-radius: 20px;
  }

  .director-message-mark span {
    height: 57px;
    font-size: 4rem;
  }

  .director-message-values {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }

  .why-choose-card .pipeline-node {
    border-color: #fff !important;
  }
}

@media (max-width: 640px) {
  .director-message-card {
    grid-template-columns: 1fr;
    padding: 30px 24px;
    border-radius: 22px;
  }

  .director-message-mark {
    width: 62px;
    height: 62px;
  }

  .director-message-mark span {
    height: 48px;
    font-size: 3.5rem;
  }

  .director-message-values {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
}

/* About page media and leadership feature */
.hero-banner-section.inner-banner.about-page-banner {
  aspect-ratio: 8 / 3;
}

.about-video-wrapper {
  width: 100%;
  max-width: 620px;
  aspect-ratio: 4 / 3;
  background: #03101f;
}

.about-video-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.16, 1, .3, 1), filter .5s ease;
}

.about-video-wrapper:hover video {
  transform: scale(1.045);
  filter: saturate(1.12) contrast(1.04);
}

.director-message {
  background: #060a0f;
}

.director-message-card {
  display: none;
}

.director-showcase {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.director-showcase__intro {
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}

.director-showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 1px solid rgba(16,185,129,.25);
  border-radius: 999px;
  color: #8ce8c5;
  background: rgba(16,185,129,.08);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.director-showcase__intro .section-title {
  margin: 20px 0 14px;
  color: #fff;
  font-size: clamp(2.25rem, 3.8vw, 3.4rem);
}

.director-showcase__intro .section-title span {
  color: #8ce8c5;
}

.director-showcase__intro p {
  color: rgba(255,255,255,.68);
  font-size: 1.02rem;
  line-height: 1.9;
}

.director-showcase__card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 26px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(16,185,129,.09), transparent 24%),
    linear-gradient(160deg, #11161d 0%, #0d1218 100%);
  box-shadow: 0 34px 80px rgba(0,0,0,.34);
}

.director-showcase__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255,255,255,.06), transparent 22%, transparent 78%, rgba(16,185,129,.08));
  pointer-events: none;
}

.director-showcase__identity,
.director-showcase__grid {
  position: relative;
  z-index: 1;
}

.director-showcase__identity {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(8,28,48,.92) 0%, rgba(11,21,33,.96) 100%);
}

.director-showcase__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0b3c7e 0%, #0f7d56 100%);
  color: #fff;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.director-showcase__identity h3 {
  margin: 22px 0 12px;
  color: #fff;
  font-size: clamp(2rem, 2.4vw, 2.6rem);
}

.director-showcase__identity p {
  color: rgba(255,255,255,.76);
  line-height: 1.9;
}

.director-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-content: center;
}

.director-showcase__item {
  min-height: 220px;
  padding: 26px 22px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 22px;
  background: rgba(255,255,255,.03);
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.director-showcase__item:hover {
  transform: translateY(-8px);
  border-color: rgba(16,185,129,.35);
  background: rgba(16,185,129,.06);
}

.director-showcase__item span {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(140,232,197,.65);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.director-showcase__item h4 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.16rem;
}

.director-showcase__item p {
  margin: 0;
  color: rgba(255,255,255,.68);
  line-height: 1.8;
}

.director-message-card {
  display: grid;
  grid-template-columns: minmax(270px, 340px) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 26px;
  background: #15191e;
  box-shadow: 0 30px 70px rgba(0,0,0,.38);
}

.director-message-card::after {
  width: 260px;
  height: 260px;
  border-color: rgba(16,185,129,.035);
}

.director-portrait-panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px 38px 44px;
  background: #0d1116;
  border-right: 1px solid rgba(255,255,255,.06);
}

.director-portrait-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: #cbd5e1;
  box-shadow: 0 22px 42px rgba(0,0,0,.34);
  transition: transform .55s cubic-bezier(.16,1,.3,1), box-shadow .55s ease;
}

.director-portrait-frame svg {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(.18);
}

.director-profile-summary {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: 30px 28px;
  background:
    radial-gradient(circle at top right, rgba(16,185,129,.12), transparent 34%),
    linear-gradient(160deg, #132031 0%, #0f1724 55%, #0a121d 100%);
}

.director-profile-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(16,185,129,.22);
  border-radius: 999px;
  color: #9cefd0;
  background: rgba(16,185,129,.08);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.director-profile-summary h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.65rem, 2vw, 2rem);
}

.director-profile-summary p {
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.8;
}

.director-profile-stats {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.director-profile-stats > div {
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
}

.director-profile-stats strong,
.director-profile-stats span {
  display: block;
}

.director-profile-stats strong {
  color: #fff;
  font-size: .98rem;
  font-weight: 700;
}

.director-profile-stats span {
  margin-top: 4px;
  color: #98a7ba;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.director-message-content > blockquote:last-of-type,
.director-message-content > p:last-of-type {
  display: none;
}

.director-message-values:not(.director-message-values--updated) {
  display: none;
}

.director-message-card:hover .director-portrait-frame {
  transform: translateY(-7px) scale(1.015);
  box-shadow: 0 30px 54px rgba(0,0,0,.48);
}

.director-role {
  position: relative;
  z-index: 3;
  width: calc(100% - 34px);
  margin: -24px auto 0;
  padding: 14px 18px;
  text-align: center;
  border: 1px solid rgba(16,185,129,.55);
  border-radius: 10px;
  background: #10161d;
  box-shadow: 0 12px 26px rgba(0,0,0,.3);
}

.director-role strong,
.director-role span {
  display: block;
}

.director-role strong {
  color: #fff;
  font-family: var(--font-heading);
  font-size: .96rem;
}

.director-role span {
  margin-top: 2px;
  color: #8ce8c5;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.director-message-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(45px, 6vw, 72px);
}

.director-message-kicker {
  position: relative;
  padding-left: 38px;
  color: var(--color-accent);
}

.director-message-kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 27px;
  height: 2px;
  background: var(--color-accent);
}

.director-message-content .section-title {
  max-width: 680px;
  margin: 0 0 34px;
  color: #fff;
  font-size: clamp(2rem, 3.1vw, 2.9rem);
}

.director-message-content .section-title span {
  color: var(--color-accent);
}

.director-message-content blockquote {
  position: relative;
  margin: 0 0 18px;
  padding: 0 0 0 25px;
  border-left: 2px solid var(--color-accent);
  color: rgba(255,255,255,.86);
  font-size: 1rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.75;
}

.director-message-content blockquote::before {
  content: "“";
  position: absolute;
  left: -7px;
  top: -13px;
  color: rgba(16,185,129,.22);
  font-family: Georgia, serif;
  font-size: 4.4rem;
}

.director-message-content > p {
  color: rgba(255,255,255,.58);
}

.director-message-values {
  grid-column: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.director-message-values > div {
  padding: 14px 12px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.09);
  border-left-width: 0;
  border-radius: 0;
  background: rgba(255,255,255,.025);
  transition: transform .35s ease, background .35s ease, border-color .35s ease;
}

.director-message-values > div:first-child {
  border-left-width: 1px;
  border-radius: 11px 0 0 11px;
}

.director-message-values > div:last-child {
  border-radius: 0 11px 11px 0;
}

.director-message-values > div:hover {
  position: relative;
  z-index: 2;
  transform: translateY(-5px);
  border-color: rgba(16,185,129,.48);
  background: rgba(16,185,129,.09);
}

.director-message-values span {
  color: rgba(255,255,255,.28);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
}

.director-message-values strong {
  margin-top: 3px;
  color: #fff;
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* More tactile hover movement across About page sections */
.about .stat-box,
.purpose-foundation,
.why-choose-card {
  will-change: transform;
}

.about .stat-box:hover {
  transform: translateY(-8px);
  border-color: rgba(16,185,129,.35);
  box-shadow: 0 18px 38px rgba(0,44,108,.12);
}

@media (max-width: 991px) {
  .hero-banner-section.inner-banner.about-page-banner {
    aspect-ratio: 8 / 3;
  }

  .director-message-card {
    grid-template-columns: minmax(230px, 290px) minmax(0, 1fr);
  }

  .director-portrait-panel {
    padding: 42px 28px 36px;
  }

  .director-message-body {
    padding: 42px 34px;
  }
}

@media (max-width: 760px) {
  .director-message-card {
    grid-template-columns: 1fr;
  }

  .director-portrait-panel {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }

  .director-portrait-frame {
    width: min(100%, 310px);
    margin: 0 auto;
  }

  .director-role {
    width: min(calc(100% - 34px), 276px);
  }
}

@media (max-width: 520px) {
  .director-message-body {
    padding: 36px 22px;
  }

  .director-message-values {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .director-message-values > div,
  .director-message-values > div:first-child,
  .director-message-values > div:last-child {
    border-width: 1px;
    border-radius: 10px;
  }
}

/* Final override for About leadership redesign and linked home cards */
.director-message-card {
  display: none !important;
}

.director-showcase {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.director-showcase__intro {
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}

.director-showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 1px solid rgba(16,185,129,.25);
  border-radius: 999px;
  color: #8ce8c5;
  background: rgba(16,185,129,.08);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.director-showcase__intro .section-title {
  margin: 20px 0 14px;
  color: #fff;
  font-size: clamp(2.25rem, 3.8vw, 3.4rem);
}

.director-showcase__intro .section-title span {
  color: #8ce8c5;
}

.director-showcase__intro p {
  color: rgba(255,255,255,.68);
  font-size: 1.02rem;
  line-height: 1.9;
}

.director-showcase__card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 26px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(16,185,129,.09), transparent 24%),
    linear-gradient(160deg, #11161d 0%, #0d1218 100%);
  box-shadow: 0 34px 80px rgba(0,0,0,.34);
}

.director-showcase__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255,255,255,.06), transparent 22%, transparent 78%, rgba(16,185,129,.08));
  pointer-events: none;
}

.director-showcase__identity,
.director-showcase__grid {
  position: relative;
  z-index: 1;
}

.director-showcase__identity {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(8,28,48,.92) 0%, rgba(11,21,33,.96) 100%);
}

.director-showcase__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0b3c7e 0%, #0f7d56 100%);
  color: #fff;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.director-showcase__identity h3 {
  margin: 22px 0 12px;
  color: #fff;
  font-size: clamp(2rem, 2.4vw, 2.6rem);
}

.director-showcase__identity p {
  color: rgba(255,255,255,.76);
  line-height: 1.9;
}

.director-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-content: center;
}

.director-showcase__item {
  min-height: 220px;
  padding: 26px 22px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 22px;
  background: rgba(255,255,255,.03);
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.director-showcase__item:hover {
  transform: translateY(-8px);
  border-color: rgba(16,185,129,.35);
  background: rgba(16,185,129,.06);
}

.director-showcase__item span {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(140,232,197,.65);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.director-showcase__item h4 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.16rem;
}

.director-showcase__item p {
  margin: 0;
  color: rgba(255,255,255,.68);
  line-height: 1.8;
}

.product-card {
  text-decoration: none;
}

@media (max-width: 991px) {
  .director-showcase__card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .director-showcase__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .director-showcase__card {
    padding: 22px;
    border-radius: 24px;
  }

  .director-showcase__identity {
    padding: 22px;
    border-radius: 18px;
  }

  .director-showcase__item {
    min-height: auto;
  }
}

/* Product catalog page */
.product-page-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 1916 / 821;
  margin-top: var(--nav-height);
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid rgba(0,44,108,.08);
}

.product-page-banner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  animation: product-banner-arrive 1.25s cubic-bezier(.16,1,.3,1) both;
}

.product-banner-glow {
  position: absolute;
  left: 50%;
  bottom: -100px;
  width: 62%;
  height: 150px;
  border-radius: 50%;
  background: rgba(16,185,129,.12);
  filter: blur(48px);
  transform: translateX(-50%);
  animation: product-banner-glow 4s ease-in-out infinite alternate;
}

@keyframes product-banner-arrive {
  from { opacity: 0; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes product-banner-glow {
  from { opacity: .35; transform: translateX(-50%) scale(.9); }
  to { opacity: .8; transform: translateX(-50%) scale(1.08); }
}

.product-catalog {
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 9%, rgba(16,185,129,.08), transparent 22%),
    radial-gradient(circle at 96% 42%, rgba(0,44,108,.07), transparent 24%),
    #f8fafc;
}

.product-catalog-heading {
  max-width: 820px;
  margin-bottom: 54px;
  text-align: center;
}

.product-catalog-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-secondary);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.product-catalog-kicker::before,
.product-catalog-kicker::after {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--color-accent);
}

.product-catalog-heading .section-title {
  margin: 12px 0;
  font-size: clamp(2.25rem, 4vw, 3.65rem);
}

.product-catalog-heading p {
  color: var(--color-text-muted);
  font-size: 1rem;
}

.product-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}

.catalog-card {
  --card-accent: #10b981;
  --card-accent-rgb: 16,185,129;
  position: relative;
  min-width: 0;
  padding: 16px 16px 22px;
  overflow: hidden;
  border: 1px solid rgba(0,44,108,.09);
  border-radius: 22px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 14px 35px rgba(0,44,108,.055);
  transition:
    transform .5s cubic-bezier(.16,1,.3,1),
    box-shadow .5s ease,
    border-color .4s ease;
}

.catalog-card::before {
  content: "";
  position: absolute;
  inset: auto -55px -65px auto;
  width: 145px;
  height: 145px;
  border: 24px solid rgba(var(--card-accent-rgb),.055);
  border-radius: 50%;
  transition: transform .65s cubic-bezier(.16,1,.3,1);
}

.catalog-card:hover {
  z-index: 2;
  transform: translateY(-12px);
  border-color: rgba(var(--card-accent-rgb),.34);
  box-shadow: 0 28px 58px rgba(0,44,108,.14);
}

.catalog-card:hover::before {
  transform: translate(-18px,-16px) scale(1.18) rotate(20deg);
}

.catalog-card-art {
  position: relative;
  height: 220px;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 15px;
  background: #eef3f8;
  isolation: isolate;
}

.catalog-card-art > img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px;
  object-fit: contain;
  object-position: center;
  transition: transform .65s cubic-bezier(.16,1,.3,1), filter .5s ease;
}

.catalog-card:hover .catalog-card-art > img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.03);
}

.catalog-card-number {
  margin-bottom: 9px;
  color: var(--card-accent);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.catalog-card h2 {
  min-height: 2.55em;
  margin-bottom: 9px;
  color: var(--color-primary-dark);
  font-size: 1.2rem;
}

.catalog-card p {
  position: relative;
  z-index: 2;
  min-height: 4.5em;
  color: var(--color-text-muted);
  font-size: .82rem;
  line-height: 1.55;
}

.catalog-card > a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--color-primary);
  font-size: .78rem;
  font-weight: 800;
}

.catalog-card > a span {
  color: var(--card-accent);
  transition: transform .3s ease;
}

.catalog-card:hover > a span {
  transform: translateX(6px);
}

.theme-health { --card-accent:#10b981; --card-accent-rgb:16,185,129; }
.theme-care { --card-accent:#d946ef; --card-accent-rgb:217,70,239; }
.theme-lab { --card-accent:#0284c7; --card-accent-rgb:2,132,199; }
.theme-agro { --card-accent:#15803d; --card-accent-rgb:21,128,61; }
.theme-food { --card-accent:#ea580c; --card-accent-rgb:234,88,12; }
.theme-spice { --card-accent:#dc2626; --card-accent-rgb:220,38,38; }
.theme-fresh { --card-accent:#65a30d; --card-accent-rgb:101,163,13; }
.theme-clean { --card-accent:#0891b2; --card-accent-rgb:8,145,178; }
.theme-essential { --card-accent:#2563eb; --card-accent-rgb:37,99,235; }
.theme-pack { --card-accent:#b45309; --card-accent-rgb:180,83,9; }
.theme-grain { --card-accent:#ca8a04; --card-accent-rgb:202,138,4; }
.theme-organic { --card-accent:#16a34a; --card-accent-rgb:22,163,74; }
.theme-fmcg { --card-accent:#7c3aed; --card-accent-rgb:124,58,237; }
.theme-coffee { --card-accent:#92400e; --card-accent-rgb:146,64,14; }
.theme-oil { --card-accent:#eab308; --card-accent-rgb:234,179,8; }
.theme-herbal { --card-accent:#0f766e; --card-accent-rgb:15,118,110; }
.theme-holi { --card-accent:#e11d48; --card-accent-rgb:225,29,72; }

.product-page-cta {
  padding: 72px 0;
  background: #fff;
}

.product-page-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 42px 48px;
  overflow: hidden;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 0%, rgba(16,185,129,.25), transparent 30%),
    linear-gradient(120deg, var(--color-primary-dark), #07386f);
}

.product-page-cta .container > div {
  max-width: 760px;
}

.product-page-cta span {
  color: #7be4bc;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.product-page-cta h2 {
  margin: 8px 0;
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.product-page-cta p {
  color: rgba(255,255,255,.68);
}

.product-page-cta .btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

/* Pharmaceutical category detail page */
.pharma-hero {
  min-height: 455px;
  display: flex;
  align-items: center;
  padding: 145px 0 68px;
  background:
    linear-gradient(135deg, rgba(0, 44, 108, .94), rgba(21, 90, 39, .9)),
    #002c6c;
  color: #fff;
  overflow: hidden;
}

.pharma-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 900px);
  gap: 0;
  align-items: center;
}

.pharma-hero .section-title,
.pharma-hero p {
  color: #fff;
}

.pharma-hero .section-title span {
  background: none;
  color: #8df0b2;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #8df0b2;
  text-shadow: 0 4px 24px rgba(141, 240, 178, .2);
}

.pharma-hero p {
  max-width: 680px;
  margin-top: 16px;
  opacity: .88;
}

/* Center the hero and catalog headings on the Fruits and Vegetables page. */
.fruits-vegetables-page .pharma-hero-inner > div,
.fruits-vegetables-page .product-catalog-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.fruits-vegetables-page .pharma-hero p {
  margin-right: auto;
  margin-left: auto;
}

.pharma-hero img {
  display: none;
}

.pharma-hero img:hover {
  transform: none;
}

.pharma-catalog-section {
  background: #f6f9fc;
}

.pharma-catalog-shell {
  background: #fff;
  border: 1px solid rgba(0, 44, 108, .08);
  border-radius: 18px;
  box-shadow: 0 22px 70px rgba(0, 44, 108, .08);
  padding: 28px;
}

.pharma-catalog-top {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-end;
  margin-bottom: 22px;
}

.pharma-catalog-top h2 {
  color: var(--color-primary);
  font-size: clamp(1.7rem, 2.4vw, 2.45rem);
  margin-top: 8px;
}

.pharma-search-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pharma-search-actions input,
.pharma-filter-bar select {
  width: min(320px, 100%);
  min-height: 46px;
  border: 1px solid rgba(0, 44, 108, .16);
  border-radius: 8px;
  padding: 0 14px;
  font: inherit;
  outline: none;
}

.pharma-search-actions input:focus,
.pharma-filter-bar select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, .12);
}

.pharma-filter-bar select {
  width: min(420px, 100%);
  background: #fff;
  color: var(--color-primary);
  font-weight: 700;
}

.pharma-search-actions button {
  border: 1px solid rgba(0, 44, 108, .14);
  background: #fff;
  color: var(--color-primary);
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}

.pharma-search-actions button {
  min-height: 46px;
  padding: 0 18px;
}

.pharma-filter-bar {
  display: grid;
  gap: 8px;
  max-width: 420px;
  margin-bottom: 18px;
}

.pharma-filter-bar label {
  color: var(--color-primary);
  font-size: .82rem;
  font-weight: 800;
}

.pharma-search-actions button:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  transform: translateY(-1px);
}

.pharma-results-summary {
  color: var(--color-secondary);
  font-weight: 800;
  margin-bottom: 18px;
}

.pharma-product-list {
  display: grid;
  gap: 24px;
}

.pharma-category-block {
  border: 1px solid rgba(0, 44, 108, .08);
  border-radius: 14px;
  padding: 22px;
  background: linear-gradient(180deg, #fff, #fbfdff);
  transition:
    transform .45s cubic-bezier(.16, 1, .3, 1),
    border-color .4s ease,
    box-shadow .45s ease;
}

.pharma-category-block:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 128, 61, .2);
  box-shadow: 0 22px 58px rgba(0, 44, 108, .09);
}

.pharma-category-block h3 {
  color: var(--color-primary);
  font-size: 1.55rem;
  margin-bottom: 18px;
}

.pharma-range-block + .pharma-range-block {
  margin-top: 22px;
}

.pharma-range-block h4 {
  color: var(--color-secondary);
  font-size: 1rem;
  margin-bottom: 12px;
}

.pharma-name-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 10px;
}

.pharma-name-card {
  position: relative;
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 44, 108, .08);
  border-radius: 8px;
  background: #fff;
  color: #263445;
  font-weight: 700;
  line-height: 1.35;
  box-shadow: 0 10px 24px rgba(0, 44, 108, .04);
  transition:
    transform .38s cubic-bezier(.16, 1, .3, 1),
    color .3s ease,
    border-color .3s ease,
    box-shadow .38s ease;
}

.pharma-name-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--color-secondary), var(--color-accent));
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}

.pharma-name-card:hover {
  transform: translateY(-5px);
  border-color: rgba(21, 128, 61, .26);
  color: var(--color-primary);
  box-shadow: 0 18px 38px rgba(0, 44, 108, .12);
}

.pharma-name-card:hover::before {
  transform: scaleY(1);
}

.pharma-empty {
  padding: 28px;
  text-align: center;
  border-radius: 10px;
  background: rgba(0, 44, 108, .04);
  color: var(--color-primary);
  font-weight: 700;
}

.dehydrated-catalog-section {
  background: #f6f9fc;
}

.dehydrated-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.dehydrated-product-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 44, 108, .08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 54px rgba(0, 44, 108, .08);
  isolation: isolate;
  transition:
    transform .5s cubic-bezier(.16, 1, .3, 1),
    box-shadow .5s ease,
    border-color .4s ease;
}

.dehydrated-product-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(145deg, transparent 58%, rgba(21, 128, 61, .08));
  opacity: 0;
  content: "";
  transition: opacity .45s ease;
}

.dehydrated-product-card:hover {
  transform: translateY(-10px) scale(1.012);
  border-color: rgba(21, 128, 61, .32);
  box-shadow: 0 28px 74px rgba(0, 44, 108, .16);
}

.dehydrated-product-card:hover::after {
  opacity: 1;
}

.dehydrated-product-card img {
  width: 100%;
  height: 300px;
  padding: 14px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #fff;
  transition: transform .65s cubic-bezier(.16, 1, .3, 1), filter .5s ease;
}

.dehydrated-product-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.025);
}

.dehydrated-product-card h3 {
  min-height: 72px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 18px;
  color: var(--color-primary);
  font-size: 1.08rem;
  line-height: 1.35;
}

@media (max-width: 820px) {
  .pharma-hero {
    padding-top: 98px;
  }

  .pharma-hero-inner {
    grid-template-columns: 1fr;
  }

  .pharma-catalog-top {
    display: grid;
  }

  .pharma-search-actions {
    justify-content: stretch;
  }

  .pharma-search-actions input,
  .pharma-search-actions button {
    width: 100%;
  }

  .pharma-catalog-shell,
  .pharma-category-block {
    padding: 18px;
  }
}

@media (max-width: 1000px) {
  .product-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .product-page-banner {
    aspect-ratio: 1916 / 821;
  }

  .product-category-grid {
    grid-template-columns: 1fr;
  }

  .catalog-card h2,
  .catalog-card p {
    min-height: 0;
  }

  .product-page-cta .container {
    align-items: flex-start;
    flex-direction: column;
    padding: 34px 25px;
  }
}

/* Homepage banner: match the supplied 1916 × 821 artwork without letterboxing */
.hero-banner-section:not(.inner-banner) {
  height: auto;
  aspect-ratio: 1916 / 821;
  margin-top: calc(var(--nav-height) + 7px);
  background: #fff;
  border-bottom: 0;
}

.hero-banner-section:not(.inner-banner) .hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Requested About page refinements */
.director-message .container {
  max-width: 1440px;
}

.director-message-card {
  max-width: 1340px;
  grid-template-columns: minmax(320px, 390px) minmax(0, 1fr);
}

/* Restore the original dark Mission & Vision presentation */
.purpose-section {
  color: #fff;
  background-color: var(--color-bg-dark);
}

.purpose-section::before {
  background:
    radial-gradient(circle at 12% 24%, rgba(16, 185, 129, .1), transparent 27%),
    radial-gradient(circle at 88% 72%, rgba(0, 44, 108, .35), transparent 30%);
}

.purpose-kicker {
  color: #7be4bc;
}

.purpose-heading .section-title {
  color: #fff;
}

.purpose-heading .section-title span {
  background: linear-gradient(135deg, #fff 30%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.purpose-heading p {
  color: rgba(255,255,255,.7);
}

.purpose-foundation {
  color: #fff;
  background: rgba(255,255,255,.06);
  box-shadow: 0 0 0 14px rgba(16,185,129,.04), 0 0 0 28px rgba(16,185,129,.025), 0 18px 50px rgba(0,0,0,.35);
}

.foundation-spark {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.15);
}

.purpose-foundation small {
  color: rgba(255,255,255,.52);
}

.purpose-connectors circle {
  stroke: var(--color-bg-dark);
}

.purpose-card-front {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 20px 45px rgba(0,0,0,.2);
}

.purpose-card-front::after {
  background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,.08) 48%, transparent 58%);
}

.purpose-card-front h3 {
  color: #fff;
}

.purpose-card-front p {
  color: rgba(255,255,255,.7);
}

.purpose-card-front .purpose-label {
  color: #8ce8c5;
}

.purpose-card-wrapper:hover .purpose-card-front {
  border-color: rgba(123,228,188,.4);
  box-shadow: 0 25px 55px rgba(0,0,0,.3);
}

/* Final About CTA */
.about-final-cta {
  padding: 72px 0;
  overflow: hidden;
  background: #fff;
}

.about-cta-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: clamp(38px, 5vw, 64px);
  overflow: hidden;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 20%, rgba(16,185,129,.25), transparent 29%),
    linear-gradient(125deg, var(--color-primary-dark), #07386f 65%, var(--color-secondary-dark));
  box-shadow: 0 28px 65px rgba(0,44,108,.2);
}

.about-cta-card::after {
  content: "";
  position: absolute;
  right: -65px;
  top: -150px;
  width: 340px;
  height: 340px;
  border: 44px solid rgba(255,255,255,.05);
  border-radius: 50%;
  transition: transform .8s cubic-bezier(.16,1,.3,1);
}

.about-cta-card:hover::after {
  transform: translate(-25px, 25px) rotate(18deg);
}

.about-cta-copy,
.about-cta-actions {
  position: relative;
  z-index: 2;
}

.about-cta-copy {
  max-width: 720px;
}

.about-cta-kicker {
  color: #7be4bc;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.about-cta-copy h2 {
  margin: 12px 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.about-cta-copy h2 span {
  color: var(--color-accent);
}

.about-cta-copy p {
  max-width: 620px;
  color: rgba(255,255,255,.72);
}

.about-cta-actions {
  min-width: 210px;
  display: grid;
  gap: 16px;
}

.about-cta-actions .btn {
  justify-content: center;
  white-space: nowrap;
}

.about-cta-call {
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  transition: transform .3s ease, background .3s ease;
}

.about-cta-call:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.11);
}

.about-cta-call small,
.about-cta-call strong {
  display: block;
}

.about-cta-call small {
  color: rgba(255,255,255,.58);
  font-size: .67rem;
}

.about-cta-call strong {
  color: #fff;
  font-family: var(--font-heading);
}

/* Contact page banner */
.contact-page-banner {
  position: relative;
  min-height: clamp(430px, 43vw, 650px);
  margin-top: var(--nav-height);
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--color-bg-dark);
}

.contact-page-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: contact-banner-breathe 12s ease-in-out infinite alternate;
}

.contact-banner-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(1,13,31,.12), transparent 48%, rgba(1,13,31,.08));
}

.contact-banner-shade::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, #000, transparent 76%);
}

.contact-banner-orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(16,185,129,.3);
  box-shadow: 0 0 80px rgba(16,185,129,.12);
  animation: contact-banner-orbit 8s ease-in-out infinite;
}

.contact-banner-orb.orb-one {
  width: 230px;
  height: 230px;
  right: 12%;
  top: 13%;
}

.contact-banner-orb.orb-two {
  width: 110px;
  height: 110px;
  right: 29%;
  bottom: 11%;
  animation-delay: -3s;
}

.contact-banner-content {
  position: relative;
  z-index: 3;
  padding-top: 30px;
  padding-bottom: 30px;
}

.contact-banner-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #7be4bc;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-banner-kicker::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--color-accent);
}

.contact-banner-content h1 {
  max-width: 760px;
  margin: 18px 0;
  color: #fff;
  font-size: clamp(2.6rem, 5.6vw, 5rem);
  line-height: 1.02;
}

.contact-banner-content h1 span {
  display: block;
  color: var(--color-accent);
}

.contact-banner-content p {
  max-width: 630px;
  color: rgba(255,255,255,.72);
  font-size: clamp(.98rem, 1.5vw, 1.15rem);
}

.contact-banner-scroll {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 28px;
  padding: 13px 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.07);
}

.contact-banner-scroll span {
  color: var(--color-accent);
  animation: contact-scroll-bounce 1.5s ease-in-out infinite;
}

.contact-banner-scroll:hover {
  border-color: rgba(16,185,129,.5);
  background: rgba(16,185,129,.13);
  transform: translateY(-3px);
}

@keyframes contact-banner-breathe {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

@keyframes contact-banner-orbit {
  0%,100% { transform: translate(0,0) rotate(0); }
  50% { transform: translate(18px,-12px) rotate(12deg); }
}

@keyframes contact-scroll-bounce {
  0%,100% { transform: translateY(-2px); }
  50% { transform: translateY(4px); }
}

/* Contact page content */
.contact-service-strip {
  position: relative;
  z-index: 5;
  margin-top: -34px;
}

.contact-service-strip .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 24px;
}

.contact-service-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 96px;
  padding: 18px 24px;
  border: 1px solid rgba(0,44,108,.09);
  border-right: 0;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0,44,108,.08);
  transition: transform .35s ease, background .35s ease;
}

.contact-service-card:first-child {
  border-radius: 18px 0 0 18px;
}

.contact-service-card:last-child {
  border-right: 1px solid rgba(0,44,108,.09);
  border-radius: 0 18px 18px 0;
}

.contact-service-card:hover {
  position: relative;
  z-index: 2;
  transform: translateY(-8px);
  background: #f7fffb;
}

.contact-service-card > span {
  color: rgba(0,44,108,.18);
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
}

.contact-service-card strong,
.contact-service-card small {
  display: block;
}

.contact-service-card strong {
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
}

.contact-service-card small {
  color: var(--color-text-muted);
  font-size: .72rem;
}

.contact-page-contact {
  padding-top: 110px;
}

.contact-intro {
  max-width: 760px;
  margin-bottom: 48px;
  text-align: center;
}

.contact-intro-kicker,
.contact-form-eyebrow {
  color: var(--color-secondary);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-intro .section-title {
  margin: 10px 0;
}

.contact-intro p,
.contact-card-intro {
  color: var(--color-text-muted);
}

.contact-card-title {
  margin: 8px 0 10px;
  font-size: 2.15rem;
}

.contact-page .contact-info {
  gap: 20px;
}

.contact-direct-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

.contact-direct-btn {
  display: flex;
  justify-content: space-between;
  padding: 13px 15px;
  border: 1px solid rgba(0,44,108,.09);
  border-radius: 11px;
  color: var(--color-primary);
  background: #f8fafc;
  font-size: .78rem;
  font-weight: 700;
}

.contact-direct-btn:hover {
  color: #fff;
  border-color: var(--color-primary);
  background: var(--color-primary);
  transform: translateY(-3px);
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-select {
  min-height: 52px;
  color: var(--color-text-muted);
}

.contact-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-muted);
  font-size: .76rem;
}

.contact-consent-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: var(--color-secondary);
}

.contact-bottom-cta {
  padding: 36px 0 72px;
  background: #fff;
}

.contact-bottom-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 34px 40px;
  border-radius: 20px;
  background: linear-gradient(120deg, #eef7ff, #effcf5);
  border: 1px solid rgba(0,44,108,.08);
}

.contact-bottom-cta span {
  color: var(--color-secondary);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-bottom-cta h2 {
  margin-top: 4px;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
}

@media (max-width: 900px) {
  .director-message-card {
    grid-template-columns: minmax(230px, 290px) minmax(0, 1fr);
  }

  .about-cta-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-page-banner {
    margin-top: var(--nav-height);
  }
}

@media (max-width: 760px) {
  .director-message-card {
    grid-template-columns: 1fr;
  }

  .contact-service-strip {
    margin-top: 0;
  }

  .contact-service-strip .container {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 20px;
  }

  .contact-service-card,
  .contact-service-card:first-child,
  .contact-service-card:last-child {
    border: 1px solid rgba(0,44,108,.09);
    border-radius: 14px;
  }

  .contact-page-contact {
    padding-top: 75px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-bottom-cta .container {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .contact-page-banner {
    min-height: 500px;
  }

  .contact-banner-shade {
    background: rgba(1,13,31,.08);
  }

  .contact-direct-actions {
    grid-template-columns: 1fr;
  }

  .contact-bottom-cta .container {
    padding: 28px 24px;
  }
}

/* FMCG text-only catalog */
.fmcg-text-hero .pharma-hero-inner {
  grid-template-columns: minmax(0, 820px);
}

.fmcg-products-page .product-catalog-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.fmcg-featured-section {
  background: #fff;
}

.fmcg-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.fmcg-featured-card {
  min-height: 150px;
  padding: 26px;
  border: 1px solid rgba(0, 44, 108, .1);
  border-radius: 16px;
  background: linear-gradient(145deg, #fff 0%, #f2f7fc 100%);
  box-shadow: 0 18px 54px rgba(0, 44, 108, .08);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.fmcg-featured-card:hover {
  transform: translateY(-6px);
  border-color: rgba(21, 128, 61, .28);
  box-shadow: 0 24px 70px rgba(0, 44, 108, .13);
}

.fmcg-featured-card span,
.fmcg-category-number {
  display: block;
  margin-bottom: 16px;
  color: var(--color-secondary);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.fmcg-featured-card h3 {
  margin: 0;
  color: var(--color-primary);
  font-size: 1.25rem;
  line-height: 1.35;
}

.fmcg-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 24px;
}

.fmcg-category-card {
  padding: 28px;
  border: 1px solid rgba(0, 44, 108, .08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(0, 44, 108, .08);
}

.fmcg-category-card h3 {
  margin: 0 0 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 44, 108, .1);
  color: var(--color-primary);
  font-size: 1.2rem;
  line-height: 1.35;
}

.fmcg-category-card ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fmcg-category-card li {
  position: relative;
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid rgba(0, 44, 108, .06);
  color: #425466;
  line-height: 1.45;
}

.fmcg-category-card li:last-child {
  border-bottom: 0;
}

.fmcg-category-card li::before {
  position: absolute;
  top: 17px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-secondary);
  content: "";
}

.herbal-products-page .product-catalog-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.herbal-speciality-section {
  background: #fff;
}

.herbal-text-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.herbal-text-product-card {
  position: relative;
  min-height: 240px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid rgba(21, 128, 61, .15);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(34, 197, 94, .14), transparent 42%),
    linear-gradient(145deg, #fff, #f2fbf5);
  box-shadow: 0 18px 54px rgba(0, 44, 108, .08);
  transition:
    transform .5s cubic-bezier(.16, 1, .3, 1),
    box-shadow .5s ease,
    border-color .4s ease;
}

.herbal-text-product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(21, 128, 61, .38);
  box-shadow: 0 28px 74px rgba(0, 44, 108, .15);
}

.herbal-text-product-card > span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--color-secondary);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.herbal-text-product-card h3 {
  margin: 0 0 14px;
  color: var(--color-primary);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.herbal-text-product-card p {
  max-width: 540px;
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .fmcg-featured-grid,
  .fmcg-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .fmcg-featured-grid,
  .fmcg-category-grid {
    grid-template-columns: 1fr;
  }

  .fmcg-featured-card,
  .fmcg-category-card {
    padding: 22px;
  }

  .dehydrated-product-grid,
  .herbal-text-product-grid {
    grid-template-columns: 1fr;
  }

  .dehydrated-product-card img {
    height: 260px;
  }

  .herbal-text-product-card {
    min-height: 0;
    padding: 28px;
  }
}

/* Final scoped header brand sizing (kept after legacy responsive rules). */
.navbar .logo-brand-wrap {
  width: clamp(100px, 9vw, 145px);
  max-width: 145px;
}

.navbar .logo-brand-wrap img,
.navbar.scrolled .logo-brand-wrap img {
  width: 100%;
  height: auto;
}

.navbar .logo-brand-tagline {
  width: 100%;
  margin-top: 1px;
  font-size: clamp(7.5px, .65vw, 10.5px);
  letter-spacing: clamp(.2px, .055vw, .8px);
  text-align: center;
  white-space: nowrap;
}

/* Hide legacy page-specific loader markup before the shared loader mounts. */
#preloader {
  display: none !important;
}

/* Final mobile refinements for shared inner heroes, Home/About, and footer. */
@media (max-width: 760px) {
  .pharma-hero {
    min-height: 365px;
    padding: calc(var(--nav-height) + 58px) 0 58px;
  }

  .pharma-hero-inner {
    grid-template-columns: 1fr;
  }

  .pharma-hero .section-title {
    max-width: 680px;
    font-size: clamp(2rem, 9.5vw, 3rem);
    line-height: 1.08;
  }

  .pharma-hero p {
    font-size: .96rem;
    line-height: 1.65;
  }

  .hero-banner-section:not(.inner-banner) {
    width: 100%;
    margin-top: var(--nav-height);
    overflow: hidden;
  }

  .about-grid,
  .pipeline-dashboard,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .about-profile,
  .about-cards-panel,
  .about-image-wrapper,
  .pipeline-monitor {
    min-width: 0;
    width: 100%;
  }

  .about-description {
    font-size: .96rem;
    line-height: 1.72;
  }

  .footer {
    padding: 22px 0 24px;
  }

  .footer .container {
    padding-inline: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 20px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .045));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 18px 45px rgba(0, 0, 0, .22);
  }

  .footer-col {
    padding: 18px 14px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 16px;
    background: rgba(255, 255, 255, .035);
  }

  .footer-brand {
    max-width: none;
    justify-self: stretch;
    text-align: center;
    background: transparent;
  }

  .footer-logo {
    width: clamp(138px, 42vw, 170px);
    height: auto;
    aspect-ratio: 1;
    margin: 0 auto 20px;
    object-position: center;
    border-radius: 16px;
  }

  .footer-brand p {
    max-width: 440px;
    margin-inline: auto;
    font-size: .9rem;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-col h4 {
    margin-bottom: 16px;
    color: #fbbf24;
    font-size: .9rem;
    letter-spacing: .06em;
    text-transform: uppercase;
  }

  .footer-col h4::after {
    background: linear-gradient(90deg, #fbbf24, transparent);
  }

  .footer-links {
    gap: 8px;
  }

  .footer-link {
    width: 100%;
    min-height: 44px;
    padding: 11px 14px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 11px;
    background: rgba(1, 18, 36, .92);
    font-size: .82rem;
  }

  .footer-link span {
    color: #fbbf24;
  }

  .footer-contact-item {
    padding: 10px;
    border-radius: 11px;
    background: rgba(1, 18, 36, .68);
  }

  .footer-quote-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    justify-content: center;
    gap: 16px;
    padding-top: 20px;
    text-align: center;
  }

  .footer-bottom > div {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Contact page: preserve the complete supplied banner on mobile. */
  .contact-page-banner {
    width: 100%;
    min-height: 0;
    height: auto;
    aspect-ratio: 1916 / 821;
    margin-top: var(--nav-height);
    overflow: hidden;
    background: #fff;
  }

  .contact-page-banner > img {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    animation: none;
  }

  .contact-banner-shade,
  .contact-banner-orb {
    display: none;
  }

  .contact-service-strip {
    margin-top: 0;
    padding-top: 18px;
  }

  .contact-service-strip .container {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 16px;
  }

  .contact-service-card,
  .contact-service-card:first-child,
  .contact-service-card:last-child {
    justify-content: flex-start;
    min-height: 82px;
    padding: 15px 18px;
    border: 1px solid rgba(0, 44, 108, .09);
    border-radius: 14px;
  }

  .contact-page-contact {
    padding-top: 64px;
  }

  .contact-intro {
    margin-bottom: 30px;
  }

  .contact-intro .section-title {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .contact-grid {
    gap: 22px;
  }

  .contact-page .contact-info,
  .contact-page .contact-form-wrapper {
    width: 100%;
    min-width: 0;
    padding: 26px 22px;
    border-radius: 18px;
  }

  .contact-card-title {
    font-size: clamp(1.65rem, 7vw, 2rem);
  }

  .contact-item {
    align-items: flex-start;
    gap: 12px;
  }

  .contact-item-details {
    min-width: 0;
  }

  .contact-item-details p,
  .contact-item-details a {
    overflow-wrap: anywhere;
  }

  .contact-form-row,
  .contact-direct-actions {
    grid-template-columns: 1fr;
  }

  .contact-form {
    gap: 17px;
  }

  .form-control {
    min-width: 0;
    padding: 14px 15px;
    font-size: .9rem;
  }

  .form-label {
    left: 15px;
    max-width: calc(100% - 30px);
    font-size: .82rem;
    line-height: 1.25;
  }

  textarea.form-control {
    min-height: 150px;
    padding-top: 20px;
  }

  textarea.form-control + .form-label {
    top: 28px;
  }

  .submit-btn-container .btn {
    width: 100%;
  }

  .contact-bottom-cta {
    padding: 18px 0 52px;
  }

  .contact-bottom-cta .container {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
    padding: 28px 22px;
    border-radius: 16px;
  }

  .contact-bottom-cta .btn {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .contact-page .contact-info,
  .contact-page .contact-form-wrapper {
    padding: 22px 17px;
  }

  .contact-service-card {
    gap: 12px;
  }

  .contact-service-card > span {
    font-size: 1.3rem;
  }

  .contact-consent {
    align-items: flex-start;
  }
}

/* Site-wide floating WhatsApp inquiry button */
.ruhee-whatsapp-float {
  position: fixed;
  right: clamp(16px, 2.2vw, 30px);
  bottom: clamp(16px, 2.2vw, 30px);
  z-index: 9000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  min-height: 58px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  color: #fff;
  background: #128c4a;
  box-shadow: 0 14px 34px rgba(5, 76, 39, .28);
  transition:
    transform .35s cubic-bezier(.16, 1, .3, 1),
    background .3s ease,
    box-shadow .35s ease;
}

.ruhee-whatsapp-float svg {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  fill: currentColor;
}

.ruhee-whatsapp-float:hover {
  color: #fff;
  background: #0f7a40;
  transform: translateY(-5px);
  box-shadow: 0 20px 42px rgba(5, 76, 39, .36);
}

.ruhee-whatsapp-float:focus-visible {
  outline: 3px solid rgba(16, 185, 129, .3);
  outline-offset: 4px;
}

@media (max-width: 520px) {
  .ruhee-whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
    min-height: 54px;
    padding: 0;
  }

  .ruhee-whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}
