/* ========================================
   Mackson Healthcare — Website Styles
   Matching Canva Design
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #FFFFFF;
  --off-white: #F5F6F8;
  --mint: #D4EDEA;
  --steel-blue: #6B8EA4;
  --teal-dark: #4A7C8A;
  --navy: #1B2541;
  --navy-dark: #02084b;
  --text-dark: #1A202C;
  --text-gray: #5A6378;
  --overlay: rgba(0, 0, 0, 0.45);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

[id] {
  scroll-margin-top: 60px;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  padding-top: 0;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  padding: 20px 0 0;
  text-align: center;
}

.main-nav.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-nav.fixed .nav-logo {
  display: flex;
  align-items: center;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.logo {
  display: inline-block;
  margin-bottom: 16px;
}

.logo-img {
  height: 75px;
  width: auto;
  margin: 0 auto;
}

/* Nav inline logo — hidden by default, shows when nav is fixed */
.nav-logo {
  display: none;
  margin-right: 48px;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 40px;
  width: auto;
}

/* Navigation */
.main-nav {
  border-top: 1px solid #E8EBF0;
  border-bottom: 1px solid #E8EBF0;
  padding: 14px 24px;
  background: var(--white);
  position: relative;
  overflow: visible;
}


.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 0;
  width: 100%;
}

.main-nav.fixed .nav-links {
  padding-left: 0;
}

.nav-links li a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.1em;
  padding: 4px 18px;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links li a:hover {
  color: var(--steel-blue);
}

.nav-links li a.nav-cta {
  background: var(--navy-dark);
  color: var(--white);
  padding: 10px 28px;
  border-radius: 6px;
  transition: background 0.25s ease;
}

.nav-links li a.nav-cta:hover {
  background: #498fb1;
  color: var(--white);
}

.nav-divider {
  color: #C0C4CC;
  font-size: 0.85rem;
  font-weight: 300;
  user-select: none;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 1px;
  transition: 0.3s;
}

/* ===== HERO BANNER (full single section) ===== */
.hero {
  position: relative;
  width: 100%;
  height: 680px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

/* All content stacked vertically on top of video */
.hero-all {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding-top: 90px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 1400px;
  padding: 0 24px;
}

.hero-headline {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(2.2rem, 3rem + 1.2vw, 4rem);
  font-weight: 700;
  font-style: normal;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}

.hero-sub {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.25rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-top: 12px;
  margin-bottom: 0;
  max-width: 750px;
}

/* Product strip — sits between headline and CTAs */
.product-strip {
  width: 100%;
  background: #d3f7f0;
  padding: 12px 24px;
  position: relative;
  z-index: 3;
  margin-top: 10px;
  border-top: 1.5px solid #ffffff;
  border-bottom: 1.5px solid #ffffff;
  text-align: center;
}

.product-strip p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* CTA row — below product strip, still on video bg */
.cta-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 40px);
  padding: 32px 24px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1.5px solid #ffffff;
  outline: none;
  max-width: 100%;
  white-space: nowrap;
}

.btn-partner {
  background: #5a9bbc;
  color: var(--white);
}

.btn-partner:hover {
  background: #4a8bac;
}

.btn-explore {
  background: #5a9bbc;
  color: var(--white);
}

.btn-explore:hover {
  background: #3a7d9e;
}

/* ===== STATS SECTION ===== */
.stats-section {
  position: relative;
  background: var(--navy-dark);
  padding: 80px 0;
  overflow: hidden;
}

.stats-bg-globe {
  position: absolute;
  right: -6%;
  top: 50%;
  transform: translateY(-50%);
  width: 60%;
  pointer-events: none;
  opacity: 0.08;
}

.stats-bg-globe img {
  width: 100%;
  mix-blend-mode: screen;
}

.stats-container {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(32px, 5vw, 80px);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 60px) clamp(50px, 6vw, 100px);
  max-width: 600px;
}

/* ===== GLOBAL REACH MAP SECTION ===== */
.global-reach {
  background: var(--white);
  padding: clamp(60px, 8vw, 100px) 0;
  overflow: hidden;
}

.global-reach-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.global-reach-header {
  text-align: center;
  margin-bottom: clamp(30px, 4vw, 50px);
}

.global-reach-title {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(2.2rem, 1.8rem + 1.5vw, 3.5rem);
  font-weight: 400;
  color: var(--navy-dark);
  margin-bottom: 16px;
}

.global-reach-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  color: var(--text-gray);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.global-reach-subtitle strong {
  color: var(--navy-dark);
  font-weight: 700;
}

.global-reach-map-wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.map-image {
  width: 100%;
  height: auto;
  display: block;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 700;
  color: #d3f7f0;
  line-height: 1;
  min-height: 1em;
}

.stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  line-height: 1.3;
}

/* ===== WHO WE ARE SECTION ===== */
.who-we-are {
  background: var(--white);
  padding: 50px 0 100px;
}

.wwa-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  align-items: flex-start;
  gap: clamp(30px, 4vw, 60px);
}

.wwa-text {
  flex: 0.9;
}

.wwa-label {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #02084b;
  letter-spacing: 0.1em;
  text-decoration: none;
  margin-bottom: 24px;
}

.wwa-headline {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(1.8rem, 1.3rem + 1.3vw, 3rem);
  font-weight: 400;
  color: #252627;
  line-height: 1.3;
  margin-bottom: 28px;
}

.wwa-headline em {
  font-style: italic;
  font-weight: 700;
  color: #252627;
}

.wwa-divider {
  border: none;
  border-top: 1px solid #252627;
  width: 80%;
  margin: 0 0 28px 0;
}

.wwa-body {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #252627;
  line-height: 1.8;
  margin-bottom: 36px;
}

.btn-partner-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 48px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E8636F;
  border: 2px solid #E8636F;
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  max-width: 100%;
  white-space: nowrap;
}

.btn-partner-outline:hover {
  background: #E8636F;
  color: var(--white);
}

.wwa-video {
  flex: 1;
}

.wwa-video {
  flex: 0.9;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.wwa-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== WHY MAKSON SECTION ===== */
.why-makson {
  background: #498fb1;
  padding: clamp(50px, 6vw, 80px) 0 clamp(60px, 7vw, 100px);
}

.why-makson-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.why-makson-title {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(2.2rem, 1.8rem + 1.5vw, 3.8rem);
  font-weight: 400;
  color: var(--white);
  text-align: center;
  margin-bottom: clamp(30px, 4vw, 60px);
}

.why-makson-title strong {
  font-weight: 700;
}

.why-makson-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 50px);
  max-width: 1700px;
  margin: 0;
}

.why-makson-card {
  text-align: center;
}

.why-makson-icon {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.why-makson-icon img {
  height: 150px;
  width: auto;
}

.why-makson-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.85rem, 0.7rem + 0.5vw, 1.3rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-bottom: 16px;
}

.why-makson-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  width: 80%;
  margin: 0 auto 20px;
}

.why-makson-body {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.7;
  text-align: center;
}

/* ===== WHAT WE MAKE SECTION ===== */
.what-we-make {
  background: var(--white);
  padding: clamp(20px, 2.4vw, 32px) 0 clamp(12px, 1.2vw, 20px);
}

.wwm-header {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  margin-bottom: clamp(20px, 2.5vw, 30px);
}

.wwm-label {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #02084b;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.wwm-headline {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(1.8rem, 1.3rem + 1.3vw, 3rem);
  font-weight: 400;
  color: #252627;
  line-height: 1.3;
  max-width: 1200px;
}

.wwm-grid {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.wwm-card {
  flex: 0 0 calc((100% - 60px) / 4);
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: pointer;
}

.wwm-card-bg {
  position: absolute;
  inset: 0;
}

.wwm-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.wwm-card:hover .wwm-card-bg img {
  transform: scale(1.05);
}

.wwm-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.wwm-card-video {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.wwm-card:hover .wwm-card-video {
  opacity: 1;
}

.wwm-card-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wwm-card-title {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.3rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 3;
}

/* ===== PRODUCT SHOWCASE ===== */
.product-showcase {
  position: relative;
  padding: clamp(30px, 4vw, 50px) 0;
  overflow: hidden;
}

.product-showcase-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.product-showcase-bg video,
.product-showcase-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-showcase-overlay {
  position: absolute;
  inset: 0;
  background: var(--navy-dark);
  opacity: 0.92;
  z-index: 1;
}

.product-showcase-inner {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  gap: clamp(40px, 5vw, 80px);
}

.product-showcase-image {
  flex: 0 0 45%;
}

.product-showcase-image img,
.product-showcase-image video {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-showcase-text {
  flex: 1;
}

.product-showcase-title {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(2.2rem, 1.8rem + 1.5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.product-showcase-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}

.product-showcase-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  width: 80%;
  margin: 0 0 24px 0;
}

.product-showcase-body {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 20px;
}

.product-showcase-body strong {
  font-weight: 700;
}

.product-showcase-list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 32px;
}

.product-showcase-list li {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.8;
}

.btn-explore-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 48px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  border: 2px solid var(--white);
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-explore-more:hover {
  background: var(--white);
  color: var(--navy-dark);
}

/* Light variant (Lozenges etc.) */
.product-showcase-light .product-showcase-overlay {
  background: rgba(255, 255, 255, 0.88);
}

.product-showcase-light .product-showcase-bg img {
  filter: blur(8px);
  transform: scale(1.05);
}

.product-showcase-light .product-showcase-title {
  color: var(--navy-dark);
}

.product-showcase-light .product-showcase-sub {
  color: var(--text-gray);
}

.product-showcase-light .product-showcase-divider {
  border-top-color: var(--navy-dark);
  width: 50%;
}

.product-showcase-light .product-showcase-body {
  color: var(--text-dark);
}

.product-showcase-light .product-showcase-list li {
  color: var(--text-dark);
}

.product-showcase-light .btn-explore-more {
  color: var(--navy-dark);
  border-color: var(--navy-dark);
}

.product-showcase-light .btn-explore-more:hover {
  background: var(--navy-dark);
  color: var(--white);
}

/* ===== PROCESS SECTION ===== */
.process-section {
  background: #498fb1;
  padding: clamp(50px, 6vw, 80px) 0;
}

.process-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.process-label {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.process-headline {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(1.8rem, 1.3rem + 1.3vw, 2.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
}

.process-headline em {
  font-style: italic;
  font-weight: 700;
}

.process-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  width: 100%;
  margin: 0 0 clamp(50px, 6vw, 80px) 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-bottom: clamp(40px, 5vw, 60px);
}

.process-step {
  text-align: center;
}

.process-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.process-icon img {
  height: 65px;
  width: auto;
}

.process-step-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.process-step-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-transform: uppercase;
}

.process-cta {
  text-align: center;
}

.btn-partner-process {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-partner-process:hover {
  background: var(--white);
  color: #498fb1;
}

/* ===== OUR CLIENTS SECTION ===== */
.clients-section {
  background: var(--white);
  padding: clamp(50px, 6vw, 80px) 0;
}

.clients-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  text-align: center;
}

.clients-title {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(2.2rem, 1.8rem + 1.5vw, 3.5rem);
  font-weight: 400;
  color: var(--navy-dark);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.clients-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.clients-divider {
  border: none;
  border-top: 1px solid #ccc;
  width: 100%;
  margin: 0 0 clamp(40px, 5vw, 60px) 0;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(20px, 3vw, 40px) 0;
  align-items: center;
  width: 100%;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  height: 140px;
}

.client-logo img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  width: auto;
  height: auto;
}

.client-logo img.logo-cipla { max-height: 50px; }
.client-logo img.logo-haleon { max-height: 110px; }
.client-logo img.logo-mars { max-height: 85px; }
.client-logo img.logo-mondelez { max-height: 85px; }
.client-logo img.logo-dabur { max-height: 100px; }
.client-logo img.logo-pg { max-height: 55px; }
.client-logo img.logo-reckitt { max-height: 120px; }
.client-logo img.logo-hawpar { max-height: 85px; }
.client-logo img.logo-amcal { max-height: 280px; }
.client-logo img.logo-unilever { max-height: 95px; }
.client-logo img.logo-nestle { max-height: 85px; }

/* ===== CERTIFICATIONS SECTION ===== */
.certs-section {
  background: #498fb1;
  padding: clamp(30px, 4vw, 50px) 0;
}

.certs-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  text-align: center;
}

.certs-title {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(2.2rem, 1.8rem + 1.5vw, 3.5rem);
  font-weight: 400;
  font-style: normal;
  color: var(--white);
  margin-bottom: 12px;
}

.certs-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 16px;
}

.certs-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  width: 100%;
  margin: 0 0 clamp(20px, 3vw, 30px) 0;
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.cert-card {
  background: var(--white);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 12px 10px 10px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.cert-card img {
  max-width: 80%;
  max-height: 65%;
  object-fit: contain;
  flex-shrink: 0;
  margin: auto 0;
  overflow: hidden;
}

.cert-card img.logo-who,
.cert-card img.logo-fssai,
.cert-card img.logo-tga {
  max-width: 90%;
  max-height: 70%;
}

.cert-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin-top: 10px;
  flex-shrink: 0;
}

/* ===== CONTACT US SECTION ===== */
.contact-section {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: var(--navy-dark);
  opacity: 0.90;
  z-index: 1;
}

.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  gap: clamp(40px, 5vw, 80px);
  align-items: flex-start;
}

/* Left: Info */
.contact-info {
  flex: 1;
}

.contact-label {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #d3f7f0;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.contact-title {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(2rem, 1.6rem + 1.3vw, 3rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 24px;
}

.contact-title strong {
  font-weight: 700;
}

.contact-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 48px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 52px;
  height: 52px;
  background: #498fb1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.contact-detail-item h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.contact-detail-item p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* Right: Form */
.contact-form-wrap {
  flex: 1;
  background: var(--white);
  border-radius: 16px;
  padding: clamp(30px, 4vw, 50px);
}

.form-title {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(1.8rem, 1.5rem + 1vw, 2.5rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.form-title strong {
  font-weight: 700;
}

.form-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 32px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group label .required {
  color: #E8636F;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid #D0D5DD;
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #A0A7B5;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #498fb1;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.message-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.message-header label {
  margin-bottom: 0;
}

.char-count {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  color: var(--text-gray);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  background: #498fb1;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  align-self: flex-start;
  margin-top: 8px;
}

.btn-submit:hover {
  background: #3a7d9e;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--white);
}

.footer-cta {
  padding: clamp(30px, 4vw, 50px) clamp(24px, 5vw, 80px);
}

.footer-cta-inner {
  max-width: 1500px;
  margin: 0 auto;
  background: var(--navy-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: clamp(30px, 4vw, 60px) clamp(30px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-cta-text h2 {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(2rem, 1.5rem + 1.5vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-cta-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
}

.btn-lets-connect {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-dark);
  background: var(--white);
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.btn-lets-connect span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #498fb1;
  color: var(--white);
  border-radius: 6px;
  font-size: 1.1rem;
}

.btn-lets-connect:hover {
  background: #d3f7f0;
}

/* Footer columns */
.footer-main {
  max-width: 1500px;
  margin: 0 auto;
  padding: 60px clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  border-top: 1px solid #D0D5DD;
}

.footer-about {
  padding-right: 20px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
}

.footer-about p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

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

.footer-col ul li a,
.footer-contact-list li {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--text-gray);
  transition: color 0.2s;
  line-height: 1.5;
}

.footer-col ul li a:hover {
  color: var(--text-dark);
}

.footer-bottom {
  max-width: 1500px;
  margin: 0 auto;
  padding: 24px clamp(24px, 5vw, 80px);
  border-top: 1px solid #D0D5DD;
  text-align: center;
}

.footer-bottom p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: var(--text-gray);
}


/* ===== SCROLL-TRIGGERED ANIMATIONS ===== */

/* --- Fade In --- */
.anim-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-fade.anim-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Pop --- */
.anim-pop {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.anim-pop.anim-visible {
  opacity: 1;
  transform: scale(1);
}

/* --- Gradient Shimmer (text) --- */
.anim-gradient {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.anim-gradient.anim-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Slide from left (Contact section) --- */
.anim-slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-slide-left.anim-visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Banner: animate on load, no scroll needed --- */
.hero .anim-fade,
.hero .anim-pop {
  transition-delay: 0.3s;
}

/* --- Stagger delays for grouped items --- */
.stat-item:nth-child(1) .anim-pop { transition-delay: 0s; }
.stat-item:nth-child(2) .anim-pop { transition-delay: 0.15s; }
.stat-item:nth-child(3) .anim-pop { transition-delay: 0.3s; }
.stat-item:nth-child(4) .anim-pop { transition-delay: 0.45s; }

.stat-item:nth-child(1) .anim-fade { transition-delay: 0.1s; }
.stat-item:nth-child(2) .anim-fade { transition-delay: 0.25s; }
.stat-item:nth-child(3) .anim-fade { transition-delay: 0.4s; }
.stat-item:nth-child(4) .anim-fade { transition-delay: 0.55s; }

.why-makson-card:nth-child(1) .anim-pop { transition-delay: 0s; }
.why-makson-card:nth-child(2) .anim-pop { transition-delay: 0.15s; }
.why-makson-card:nth-child(3) .anim-pop { transition-delay: 0.3s; }

.why-makson-card:nth-child(1) .anim-fade { transition-delay: 0.1s; }
.why-makson-card:nth-child(2) .anim-fade { transition-delay: 0.25s; }
.why-makson-card:nth-child(3) .anim-fade { transition-delay: 0.4s; }

.process-step:nth-child(1) .anim-pop { transition-delay: 0s; }
.process-step:nth-child(2) .anim-pop { transition-delay: 0.15s; }
.process-step:nth-child(3) .anim-pop { transition-delay: 0.3s; }
.process-step:nth-child(4) .anim-pop { transition-delay: 0.45s; }
.process-step:nth-child(5) .anim-pop { transition-delay: 0.6s; }

.client-logo.anim-fade:nth-child(1)  { transition-delay: 0s; }
.client-logo.anim-fade:nth-child(2)  { transition-delay: 0.07s; }
.client-logo.anim-fade:nth-child(3)  { transition-delay: 0.14s; }
.client-logo.anim-fade:nth-child(4)  { transition-delay: 0.21s; }
.client-logo.anim-fade:nth-child(5)  { transition-delay: 0.28s; }
.client-logo.anim-fade:nth-child(6)  { transition-delay: 0.35s; }
.client-logo.anim-fade:nth-child(7)  { transition-delay: 0.42s; }
.client-logo.anim-fade:nth-child(8)  { transition-delay: 0.49s; }
.client-logo.anim-fade:nth-child(9)  { transition-delay: 0.56s; }
.client-logo.anim-fade:nth-child(10) { transition-delay: 0.63s; }
.client-logo.anim-fade:nth-child(11) { transition-delay: 0.7s; }
.client-logo.anim-fade:nth-child(12) { transition-delay: 0.77s; }
.client-logo.anim-fade:nth-child(13) { transition-delay: 0.84s; }
.client-logo.anim-fade:nth-child(14) { transition-delay: 0.91s; }
.client-logo.anim-fade:nth-child(15) { transition-delay: 0.98s; }

.cert-card.anim-fade:nth-child(1)  { transition-delay: 0s; }
.cert-card.anim-fade:nth-child(2)  { transition-delay: 0.07s; }
.cert-card.anim-fade:nth-child(3)  { transition-delay: 0.14s; }
.cert-card.anim-fade:nth-child(4)  { transition-delay: 0.21s; }
.cert-card.anim-fade:nth-child(5)  { transition-delay: 0.28s; }
.cert-card.anim-fade:nth-child(6)  { transition-delay: 0.35s; }
.cert-card.anim-fade:nth-child(7)  { transition-delay: 0.42s; }
.cert-card.anim-fade:nth-child(8)  { transition-delay: 0.49s; }
.cert-card.anim-fade:nth-child(9)  { transition-delay: 0.56s; }
.cert-card.anim-fade:nth-child(10) { transition-delay: 0.63s; }
.cert-card.anim-fade:nth-child(11) { transition-delay: 0.7s; }
.cert-card.anim-fade:nth-child(12) { transition-delay: 0.77s; }
.cert-card.anim-fade:nth-child(13) { transition-delay: 0.84s; }
.cert-card.anim-fade:nth-child(14) { transition-delay: 0.91s; }
.cert-card.anim-fade:nth-child(15) { transition-delay: 0.98s; }

.contact-info.anim-slide-left { transition-delay: 0s; }
.contact-form-wrap.anim-slide-left { transition-delay: 0.2s; }

/* Reduced motion: disable all animations */
@media (prefers-reduced-motion: reduce) {
  .anim-fade,
  .anim-pop,
  .anim-gradient,
  .anim-slide-left {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
  }
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links li a {
    padding: 4px 14px;
    font-size: 0.9rem;
  }

  .hero {
    height: 600px;
  }

  .hero-headline {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  .cta-row {
    flex-direction: column;
    gap: 12px;
    padding: 20px 24px;
  }

  .btn-cta {
    padding: 14px 32px;
  }

  .why-makson-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .global-reach {
    padding: 60px 0 40px;
  }

  .global-reach-legend {
    gap: 20px;
  }

  .stats-section {
    padding: 60px 32px;
  }

  .stats-grid {
    gap: 40px 50px;
  }

  .stats-bg-globe {
    width: 280px;
    right: 2%;
  }

  .wwa-inner {
    flex-direction: column;
    padding: 0 24px;
    gap: 40px;
  }

  .who-we-are {
    padding: 60px 0;
  }

  .wwm-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }

  .product-showcase-inner {
    flex-direction: column;
  }

  .product-showcase-image {
    flex: none;
    width: 100%;
  }

  .contact-inner {
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 55px;
  }

  .hero-headline {
    font-size: 1.5rem;
  }

  .hero-sub {
    font-size: 0.8rem;
  }

  .product-strip p {
    font-size: 0.8rem;
  }

  .btn-cta {
    font-size: 0.72rem;
    padding: 12px 24px;
  }
}
