/* ═══════════════════════════════════════════════════════
   MOM'S CARE BOTANICALS  ·  Main Stylesheet  v2.1
   Pure • Botanical • Handcrafted
═══════════════════════════════════════════════════════ */

/* ── 0. GLOBAL MOBILE OVERFLOW FIX (must come first) ── */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

* {
  box-sizing: border-box;
}

img,
video {
  max-width: 100%;
  height: auto;
}

.container,
.container-fluid {
  width: 100%;
  max-width: 100%;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

/* ── 1. DESIGN TOKENS ─────────────────────────────── */
:root {
  /* Premium botanical green palette */
  --c-primary: #007A33;
  --c-primary-dark: #1F5B3A;
  --c-primary-mid: #0A6630;
  --c-primary-light: #8FAF8F;
  --c-secondary: #6BA96B;
  --c-gold: #C8A96B;
  --c-gold-light: #E8D4A8;
  --c-white: #FFFFFF;
  --c-off-white: #F8F6F1;
  --c-cream: #F0EDE8;
  --c-light-green: #EDF4ED;
  --c-dark: #1A2E20;
  --c-text: #1F1F1F;
  --c-muted: #5A6C5A;
  --c-border: #D4E2D4;

  --ff-head: 'Poppins', sans-serif;
  --ff-body: 'Open Sans', sans-serif;

  --fs-hero: clamp(36px, 5.5vw, 72px);
  --fs-h2: clamp(28px, 3.8vw, 52px);
  --fs-h3: clamp(20px, 2.5vw, 34px);
  --fs-h4: clamp(17px, 1.8vw, 22px);
  --fs-body: 16px;
  --fs-sm: 14px;
  --fw-reg: 400;
  --fw-med: 500;
  --fw-semi: 600;
  --fw-bold: 700;
  --fw-xb: 800;

  --section-py: clamp(64px, 8vw, 110px);
  --nav-h: 80px;

  --sh-xs: 0 2px 8px rgba(0, 0, 0, .06);
  --sh-sm: 0 4px 18px rgba(0, 0, 0, .09);
  --sh-md: 0 10px 36px rgba(0, 0, 0, .12);
  --sh-lg: 0 20px 64px rgba(0, 0, 0, .16);
  --sh-gold: 0 6px 24px rgba(200, 169, 107, .30);
  --sh-green: 0 8px 32px rgba(0, 122, 51, .28);

  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 40px;
  --r-full: 9999px;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --t-fast: .2s var(--ease);
  --t-base: .35s var(--ease);
  --t-slow: .65s var(--ease);
}

/* ── 2. BASE RESET ────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.75;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Bootstrap .row negative margins can push content beyond the viewport on real devices */
.row {
  margin-left: 0;
  margin-right: 0;
}

.container,
.container-fluid {
  width: 100%;
  max-width: 100%;
}

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  outline: none;
}

/* ── 3. TYPOGRAPHY ───────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-head);
  font-weight: var(--fw-bold);
  line-height: 1.25;
  color: var(--c-text);
}

/* ── 4. UTILITIES ────────────────────────────────── */
.section-padding {
  padding: var(--section-py) 0;
}

.bg-off-white {
  background: var(--c-off-white);
}

.bg-cream {
  background: var(--c-cream);
}

.bg-light-green {
  background: var(--c-light-green);
}

.bg-dark-green {
  background: var(--c-dark);
}

.bg-primary {
  background: var(--c-primary);
}

.text-primary-custom {
  color: var(--c-primary) !important;
}

.text-gold {
  color: var(--c-gold);
}

/* Section Header */
.section-header {
  max-width: 680px;
}

.section-header.centered {
  margin: 0 auto;
  text-align: center;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 18px;
  background: rgba(0, 122, 51, .08);
  border: 1px solid rgba(0, 122, 51, .20);
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: var(--fw-semi);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 16px;
}

.section-badge.badge-white {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .35);
  color: #fff;
}

.section-badge.badge-gold {
  background: rgba(200, 169, 107, .12);
  border-color: rgba(200, 169, 107, .3);
  color: var(--c-gold);
}

.section-title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-xb);
  line-height: 1.18;
  margin-bottom: 20px;
  color: var(--c-text);
}

.section-title span,
.section-title .accent {
  color: var(--c-primary);
}

.section-title.white {
  color: #fff;
}

.section-title.white .accent {
  color: var(--c-gold);
}

.section-desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--c-muted);
  margin-bottom: 0;
}

.section-desc.white {
  color: rgba(255, 255, 255, .8);
}

.divider-line {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-primary-dark));
  border-radius: var(--r-full);
  margin: 18px 0 28px;
}

.centered .divider-line {
  margin: 18px auto 28px;
}

/* ── 5. BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: var(--fw-semi);
  border-radius: var(--r-full);
  padding: 14px 32px;
  transition: var(--t-base);
  border: 2px solid transparent;
  white-space: normal;
  cursor: pointer;
}

.btn-primary-custom {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
  box-shadow: var(--sh-green);
}

.btn-primary-custom:hover {
  background: var(--c-primary-dark);
  border-color: var(--c-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 122, 51, .32);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .7);
  backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--c-primary);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-outline-primary-custom {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-primary);
}

.btn-outline-primary-custom:hover {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
  transform: translateY(-2px);
  box-shadow: var(--sh-green);
}

.btn-quote {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
  padding: 11px 26px;
  font-size: 14px;
  font-weight: var(--fw-semi);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 122, 51, 0.28);
}

.btn-quote:hover {
  background: var(--c-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 122, 51, 0.38);
}

.btn-cta-white {
  background: #fff;
  color: var(--c-primary);
  border-color: #fff;
  box-shadow: var(--sh-md);
}

.btn-cta-white:hover {
  background: var(--c-off-white);
  color: var(--c-primary-dark);
  transform: translateY(-2px);
}

.btn-cta-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .65);
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  transform: translateY(-2px);
}

/* ── 6. PRELOADER ────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--c-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity .5s var(--ease), visibility .5s var(--ease);
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  width: 160px;
  margin: 0 auto 28px;
  animation: pulse-logo 1.4s ease-in-out infinite;
}

.preloader-track {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, .15);
  border-radius: var(--r-full);
  overflow: hidden;
  margin: 0 auto 16px;
}

.preloader-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--c-primary-dark), var(--c-primary));
  border-radius: var(--r-full);
  animation: preload-bar 2s var(--ease) forwards;
}

.preloader-text {
  font-family: var(--ff-head);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}

@keyframes preload-bar {
  to {
    width: 100%;
  }
}

@keyframes pulse-logo {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .7;
    transform: scale(.96);
  }
}

/* ── 7. NAVBAR ───────────────────────────────────── */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
}

#mainNav {
  padding: 14px 0;
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow .3s var(--ease), padding .3s var(--ease);
}

#mainNav.scrolled {
  padding: 10px 0;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.09);
}

.navbar-logo {
  height: 82px;
  width: auto;
  transition: height .3s var(--ease);
}

#mainNav.scrolled .navbar-logo {
  height: 65px;
}

@media (max-width: 768px) {
  .navbar-logo {
    height: 60px !important;
  }
}

/* Nav Links */
.navbar-nav .nav-link {
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: var(--fw-semi);
  color: var(--c-text);
  padding: 8px 14px !important;
  border-radius: var(--r-sm);
  transition: var(--t-fast);
  position: relative;
  letter-spacing: 0.2px;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--c-primary);
  border-radius: var(--r-full);
  transform: scaleX(0);
  transition: transform .3s var(--ease);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--c-primary);
}

/* Scrolled mirrors base — always white */
#mainNav.scrolled .nav-link {
  color: var(--c-text) !important;
}

#mainNav.scrolled .nav-link:hover,
#mainNav.scrolled .nav-link.active {
  color: var(--c-primary) !important;
}

#mainNav.scrolled .nav-link::after {
  background: var(--c-primary);
}

#mainNav.scrolled .btn-quote {
  color: #fff !important;
}

/* Dropdown */
.nav-dropdown {
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
  overflow: hidden;
  padding: 8px;
  margin-top: 8px;
}

.cert-image {
  height: 320px;
  overflow: hidden;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cert-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-dropdown .dropdown-item {
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: var(--fw-med);
  color: var(--c-text);
  padding: 10px 16px;
  border-radius: var(--r-sm);
  transition: var(--t-fast);
}

.nav-dropdown .dropdown-item:hover {
  background: var(--c-light-green);
  color: var(--c-primary);
}

/* Hamburger */
.navbar-toggler {
  border: none;
  padding: 4px;
  background: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.hamburger-line {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--c-text);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--t-base);
}

#mainNav.scrolled .hamburger-line {
  background: var(--c-text);
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
@media (max-width: 991px) {
  #mainNav {
    padding: 12px 0;
  }

  .navbar-collapse {
    padding: 16px 0;
  }

  .navbar-nav .nav-link {
    color: var(--c-text) !important;
    padding: 12px 16px !important;
  }

  .navbar-nav .nav-link.active,
  .navbar-nav .nav-link:hover {
    color: var(--c-primary) !important;
    background: var(--c-light-green);
  }

  .nav-dropdown {
    background: var(--c-off-white);
    border-color: var(--c-border);
    box-shadow: none;
  }

  .nav-dropdown .dropdown-item {
    color: var(--c-text);
  }

  .nav-dropdown .dropdown-item:hover {
    background: var(--c-light-green);
    color: var(--c-primary);
  }

  .navbar-nav .ms-lg-2 {
    margin-top: 12px;
  }

  .btn-quote {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 991px) {
  #mainNav .navbar-collapse {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    margin-top: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  }

  #mainNav .nav-link {
    color: var(--c-text) !important;
    padding: 12px 0;
    font-weight: 600;
  }

  #mainNav .dropdown-menu {
    background: #fff;
    border: none;
    box-shadow: none;
    padding-left: 10px;
  }

  #mainNav .dropdown-item {
    color: var(--c-text);
    padding: 10px 15px;
  }

  #mainNav .btn-quote {
    width: 100%;
    justify-content: center;
    margin-top: 15px;
  }
}

/* ── 8. HERO SECTION ─────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-dark);
  margin-top: var(--nav-h);
}

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

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .75;
  filter: brightness(0.82) contrast(1.05);
}

.hero-video-fallback {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .75;
  filter: brightness(0.82) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.62) 35%,
      rgba(0, 0, 0, 0.30) 70%,
      rgba(0, 0, 0, 0.18) 100%);
  z-index: 1;
}

.custom-input.form-select {
  background-color: #fff !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23007A33' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 14px !important;
  border: 1.5px solid var(--c-border) !important;
  border-radius: var(--r-md) !important;
  padding: 14px 44px 14px 18px !important;
  font-size: 15px !important;
  height: auto !important;
  box-shadow: none !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: var(--c-text) !important;
  transition: border-color var(--t-fast), box-shadow var(--t-fast) !important;
}

.custom-input.form-select:focus {
  border-color: var(--c-primary) !important;
  box-shadow: 0 0 0 3px rgba(0, 122, 51, .12) !important;
}

.hero-content-wrap {
  position: relative;
  z-index: 5;
  padding-top: 60px;
  padding-bottom: 80px;
  min-height: 75vh;
  display: flex;
  align-items: center;
}


.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 122, 51, 0.72);
  border: 1px solid rgba(143, 175, 143, .5);
  color: #fff;
  padding: 8px 20px;
  border-radius: var(--r-full);
  font-family: var(--ff-head);
  font-size: 12px;
  font-weight: var(--fw-semi);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-badge i {
  font-size: 14px;
}

.hero-titles {
  font-size: clamp(38px, 4.5vw, 68px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 28px;
  max-width: 820px;
  white-space: normal;
}

.hero-titles .accent {
  color: #007A33;
}

.hero-titles,
.hero-subtitle,
.pain-point-item {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.86);
  max-width: 720px;
  margin-bottom: 35px;
}

.pain-points {
  margin-bottom: 36px;
}

.pain-point-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 10px;
  font-family: var(--ff-head);
  font-weight: var(--fw-med);
}

.pain-point-item i {
  color: var(--c-primary);
  font-size: 16px;
  flex-shrink: 0;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.hero-stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 2px solid rgba(0, 122, 51, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: left;
  transition: transform 0.32s ease, background 0.32s ease, border-top-color 0.32s ease;
}

.hero-stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.09);
  border-top-color: rgba(0, 122, 51, 0.85);
}

.hero-stat-icon {
  display: block;
  font-size: 17px;
  color: rgba(143, 175, 143, 0.9);
  margin-bottom: 16px;
}

.hero-stat-num {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--ff-head);
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
}

.hero-stat-num sup {
  font-size: 22px;
  font-weight: 700;
  color: #C8A96B;
}

.hero-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--ff-head);
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  cursor: pointer;
}

.scroll-indicator span {
  display: block;
  font-family: var(--ff-head);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 8px;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-radius: 12px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, .7);
  border-radius: 2px;
  animation: scroll-anim 1.8s ease infinite;
}

@keyframes scroll-anim {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  80% {
    transform: translateY(12px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 0;
  }
}

/* ── 9. TRUSTED BY / LOGO MARQUEE ─────────────────── */
.trusted-strip {
  padding: 28px 0;
  background: var(--c-off-white);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.trusted-label {
  font-family: var(--ff-head);
  font-size: 12px;
  font-weight: var(--fw-semi);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-muted);
  text-align: center;
  margin-bottom: 20px;
}

.logos-marquee {
  display: flex;
  overflow: hidden;
  gap: 0;
  width: 100%;
  max-width: 100%;
  position: relative;
}

.logos-track {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: marquee-scroll 35s linear infinite;
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-cta-outline {

  background: #007A33 !important;

  color: #fff !important;

  border: 1px solid #007A33 !important;

  border-radius: 14px;

  padding: 14px 28px;

  font-weight: 600;

  transition: 0.3s ease;
}

.btn-cta-outline:hover {

  background: #005f27 !important;

  border-color: #005f27 !important;

  color: #fff !important;

  transform: translateY(-2px);
}

.logos-track:hover {
  animation-play-state: paused;
}

.client-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  opacity: .55;
  filter: grayscale(1);
  transition: var(--t-base);
  flex-shrink: 0;
}

.client-logo:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.06);
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── 10. ABOUT SECTION ───────────────────────────── */
.about-section {
  background: var(--c-white);
}

.about-image-wrap {
  position: relative;
}

.about-img {
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: 0;
  background: var(--c-white);
  border-radius: var(--r-md);
  padding: 18px 22px;
  box-shadow: var(--sh-md);
  text-align: center;
  min-width: 140px;
}

.about-badge-float .num {
  font-family: var(--ff-head);
  font-size: 42px;
  font-weight: var(--fw-xb);
  color: var(--c-primary);
  line-height: 1;
}

.about-badge-float .lbl {
  font-size: 13px;
  color: var(--c-muted);
  font-weight: var(--fw-med);
}

.about-features {
  margin: 28px 0 36px;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--c-light-green);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  font-size: 20px;
  transition: var(--t-base);
}

.about-feature:hover .about-feature-icon {
  background: var(--c-primary);
  color: #fff;
  transform: scale(1.1);
}

.about-feature-text h6 {
  font-size: 15px;
  font-weight: var(--fw-semi);
  margin-bottom: 4px;
  color: var(--c-text);
}

.about-feature-text p {
  font-size: 14px;
  color: var(--c-muted);
  margin: 0;
}

/* ── 11. WHY CHOOSE US ───────────────────────────── */
.why-section {
  position: relative;
  padding: 120px 0;
  background: #1A2C1F;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 2px, transparent 2px);
  background-size: 60px 60px;
  opacity: 0.4;
  z-index: 0;
}

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

.why-section .row {
  position: relative;
  z-index: 2;
}

.why-section .col-lg-4,
.why-section .col-md-6 {
  display: flex;
}

.why-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 35px 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  transition: 0.4s ease;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.why-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
  color: #fff;
  flex-shrink: 0;
  transition: 0.4s ease;
}

.why-card:hover .why-icon {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.1);
}

.why-card h4 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.why-card p {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.8;
  margin: 0;
}

/* ── 12. PRODUCTS CAROUSEL ───────────────────────── */
.products-section {
  background: var(--c-white);
  overflow: hidden;
}

.product-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--c-primary);
  box-shadow: var(--sh-md);
  transform: translateY(-6px);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--c-light-green);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

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

/* Warm amber/cream tone for green-heavy product images — contrasts the green brand palette */
.product-img-wrap img[src*="aloe_gel"],
.product-img-wrap img[src*="cucumber_cream"],
.product-img-wrap img[src*="hailuo_1767583134"],
.product-img-wrap img[src*="hailuo_1766773925"] {
  filter: sepia(0.52) saturate(0.72) brightness(1.08) contrast(0.92);
  transition: transform .5s var(--ease), filter .5s var(--ease);
}

.product-card:hover .product-img-wrap img[src*="aloe_gel"],
.product-card:hover .product-img-wrap img[src*="cucumber_cream"],
.product-card:hover .product-img-wrap img[src*="hailuo_1767583134"],
.product-card:hover .product-img-wrap img[src*="hailuo_1766773925"] {
  filter: sepia(0.35) saturate(0.85) brightness(1.12) contrast(0.94);
  transform: scale(1.08);
}

.product-badge-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--c-primary);
  color: #fff;
  font-size: 11px;
  font-weight: var(--fw-semi);
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-family: var(--ff-head);
  letter-spacing: .5px;
}

.product-placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--c-light-green), var(--c-cream));
  min-height: 220px;
}

.product-placeholder-img i {
  font-size: 52px;
  color: var(--c-secondary);
  opacity: .7;
}

.product-placeholder-img span {
  font-size: 13px;
  color: var(--c-muted);
  font-family: var(--ff-head);
}

.product-info {
  padding: 20px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-cat {
  font-size: 11px;
  font-weight: var(--fw-semi);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-primary-dark);
  margin-bottom: 6px;
}

.product-name {
  font-size: 17px;
  font-weight: var(--fw-bold);
  color: var(--c-text);
  margin-bottom: 8px;
}

.product-desc {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.product-enquire {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: var(--fw-semi);
  color: var(--c-primary);
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: var(--t-fast);
}

.product-card:hover .product-enquire {
  border-color: var(--c-primary);
  gap: 10px;
}

.product-navigation-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 44px;
}

.product-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
}

.product-nav-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border);
  background: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--c-text);
  transition: var(--t-base);
  cursor: pointer;
  flex-shrink: 0;
}

.product-nav-btn:hover {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--sh-green);
}

/* Swiper pagination */
.swiper-pagination-bullet {
  background: var(--c-border);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--c-primary);
  transform: scale(1.3);
}

/* Filter Buttons */
.filter-btn {
  font-family: var(--ff-head) !important;
  font-size: 14px !important;
  font-weight: var(--fw-semi) !important;
  background: var(--c-off-white) !important;
  border: 1px solid var(--c-border) !important;
  border-radius: var(--r-full) !important;
  padding: 10px 22px !important;
  color: var(--c-text) !important;
  transition: var(--t-fast) !important;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--c-primary) !important;
  border-color: var(--c-primary) !important;
  color: #fff !important;
  box-shadow: var(--sh-green) !important;
}

/* ── 13. MANUFACTURING PROCESS ───────────────────── */
.process-section {
  background: var(--c-off-white);
}

.process-track {
  position: relative;
}

.process-track::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-primary-dark), var(--c-primary), var(--c-primary-dark), transparent);
  opacity: .35;
}

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

.process-num {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--c-primary-light), var(--c-primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: var(--fw-xb);
  color: #fff;
  box-shadow: var(--sh-green);
  border: 4px solid var(--c-white);
  transition: var(--t-base);
  position: relative;
  z-index: 1;
}

.process-step:hover .process-num {
  transform: scale(1.12);
  box-shadow: 0 12px 36px rgba(0, 122, 51, .35);
}

.process-icon {
  font-size: 24px;
  margin-bottom: 14px;
  color: var(--c-primary);
  display: block;
  height: 30px;
}

.process-step h5 {
  font-size: 15px;
  font-weight: var(--fw-semi);
  color: var(--c-text);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.6;
}

/* ── 14. INGREDIENTS ─────────────────────────────── */
.ingredients-section {
  background: var(--c-dark);
  position: relative;
  overflow: hidden;
}

.ingredients-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0, 122, 51, .15) 0%, transparent 70%);
  pointer-events: none;
}

.ingredient-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  cursor: default;
  height: 100%;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .3s var(--ease);
  transform-style: preserve-3d;
}

.ingredient-card:hover {
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

.ingredient-icon {
  font-size: 44px;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 122, 51, .35));
}

.ingredient-card h5 {
  font-size: 16px;
  font-weight: var(--fw-semi);
  color: #fff;
  margin-bottom: 8px;
}

.ingredient-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.65;
  margin: 0;
}

.ingredient-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: var(--fw-semi);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--r-full);
  background: rgba(0, 122, 51, .1);
  border: 1px solid rgba(0, 122, 51, .22);
  color: var(--c-primary);
}

/* ── 15. OEM / PRIVATE LABEL ─────────────────────── */
.oem-section {
  background: var(--c-white);
}

.oem-feature-list {
  margin: 28px 0 36px;
}

.oem-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--c-border);
}

.oem-feature:last-child {
  border-bottom: none;
}

.oem-feature-num {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--c-light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: var(--fw-bold);
  color: var(--c-primary);
  transition: var(--t-fast);
}

.oem-feature:hover .oem-feature-num {
  background: var(--c-primary);
  color: #fff;
}

.oem-feature-body h6 {
  font-size: 15px;
  font-weight: var(--fw-semi);
  margin-bottom: 4px;
}

.oem-feature-body p {
  font-size: 14px;
  color: var(--c-muted);
  margin: 0;
}

.oem-image-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}

.oem-image-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.oem-float-badge {
  position: absolute;
  top: 28px;
  left: 0;
  background: var(--c-primary);
  color: #fff;
  border-radius: var(--r-md);
  padding: 18px 22px;
  box-shadow: var(--sh-green);
  font-family: var(--ff-head);
  text-align: center;
}

.oem-float-badge .big {
  font-size: 28px;
  font-weight: var(--fw-xb);
  display: block;
  line-height: 1;
}

.oem-float-badge .sm {
  font-size: 12px;
  opacity: .85;
}

/* ── 16. INFRASTRUCTURE ──────────────────────────── */
.infra-section {
  background: var(--c-light-green);
}

.infra-stat-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--sh-sm);
  transition: var(--t-base);
  border: 1px solid transparent;
}

.infra-stat-card:hover {
  border-color: var(--c-primary);
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
}

.infra-stat-icon {
  font-size: 36px;
  color: var(--c-primary);
  margin-bottom: 14px;
}

.infra-stat-num {
  font-family: var(--ff-head);
  font-size: 44px;
  font-weight: var(--fw-xb);
  color: var(--c-text);
  line-height: 1;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.infra-stat-num .suffix {
  font-size: 28px;
  color: var(--c-primary);
}

.infra-stat-card h5 {
  font-size: 15px;
  font-weight: var(--fw-semi);
  color: var(--c-text);
  margin-bottom: 6px;
}

.infra-stat-card p {
  font-size: 13px;
  color: var(--c-muted);
  margin: 0;
}

.infra-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.infra-gallery-item {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 3/2;
}

.infra-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.infra-gallery-item:hover img {
  transform: scale(1.07);
}

/* ── 17. CERTIFICATIONS ──────────────────────────── */
.certs-section {
  background: var(--c-white);
}

.cert-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
  text-align: center;
}

.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
}

.cert-card .cert-image {
  width: 100%;
  margin-bottom: 0;
}

.cert-card .cert-image img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
}

.cert-card h4 {
  font-size: 17px;
  font-weight: var(--fw-bold);
  margin: 16px 0 8px;
}

.cert-card p {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.7;
  margin: 0;
}

.cert-badge-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--c-light-green);
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  padding: 8px 18px;
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: var(--fw-semi);
  color: var(--c-primary);
}

.cert-badge i {
  font-size: 14px;
}

/* Footer cert badges (reuse) */
.footer .cert-badge {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .8);
  font-size: 12px;
  padding: 5px 13px;
}

/* ── 18. TESTIMONIALS ────────────────────────────── */
.testimonials-section {
  background: var(--c-off-white);
}

.testi-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  box-shadow: var(--sh-sm);
  height: 100%;
  border: 1px solid transparent;
  transition: var(--t-base);
}

.testi-card:hover {
  border-color: var(--c-primary);
  box-shadow: var(--sh-md);
}

.testi-stars {
  color: #F59E0B;
  font-size: 15px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testi-quote {
  font-size: 32px;
  color: var(--c-light-green);
  line-height: 1;
  margin-bottom: -10px;
  font-family: Georgia, serif;
}

.testi-text {
  font-size: 15px;
  color: var(--c-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-light-green);
}

.testi-avatar-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary-dark), var(--c-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 18px;
  font-weight: var(--fw-bold);
  color: #fff;
}

.testi-name {
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: var(--fw-semi);
  margin-bottom: 2px;
}

.testi-role {
  font-size: 13px;
  color: var(--c-muted);
}

/* ── 19. FAQ ─────────────────────────────────────── */
.faq-section {
  background: var(--c-white);
}

.faq-accordion .accordion-item {
  border: 1px solid var(--c-border);
  border-radius: var(--r-md) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: var(--fw-semi);
  color: var(--c-text);
  background: var(--c-white);
  padding: 20px 24px;
  border-radius: var(--r-md) !important;
  box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--c-primary);
  background: var(--c-light-green);
}

.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%23007A33' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  transition: transform .3s var(--ease);
}

.faq-accordion .accordion-body {
  font-size: 15px;
  color: var(--c-muted);
  line-height: 1.8;
  padding: 0 24px 22px;
  background: var(--c-light-green);
}

/* ── 20. BLOG PREVIEW ────────────────────────────── */
.blog-section {
  background: var(--c-cream);
}

.blog-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xs);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--t-base);
}

.blog-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-6px);
}

.blog-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--c-light-green);
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.07);
}

.blog-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--c-primary);
  color: #fff;
  font-size: 11px;
  font-weight: var(--fw-semi);
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-family: var(--ff-head);
  letter-spacing: .5px;
}

.blog-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  font-size: 12px;
  color: var(--c-muted);
  margin-bottom: 10px;
  font-family: var(--ff-head);
  font-weight: var(--fw-med);
}

.blog-meta span {
  margin-right: 10px;
}

.blog-title {
  font-size: 18px;
  font-weight: var(--fw-bold);
  color: var(--c-text);
  line-height: 1.4;
  margin-bottom: 10px;
  flex: 1;
}

.blog-title a:hover {
  color: var(--c-primary);
}

.blog-excerpt {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: var(--fw-semi);
  color: var(--c-primary);
  transition: var(--t-fast);
}

.blog-read-more:hover {
  gap: 10px;
}

/* ── 21. ENQUIRY FORM ────────────────────────────── */
.enquiry-section {
  background: linear-gradient(145deg, var(--c-primary-dark) 0%, var(--c-primary) 60%, var(--c-primary-mid) 100%);
  position: relative;
  overflow: hidden;
}

.enquiry-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
}

.enquiry-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .03);
}

.enquiry-info {
  position: relative;
  z-index: 1;
}

.enquiry-info .section-title {
  color: #fff;
}

.enquiry-info .divider-line {
  background: linear-gradient(90deg, var(--c-gold), transparent);
}

.enquiry-info p {
  color: rgba(255, 255, 255, .8);
  font-size: 16px;
  margin-bottom: 32px;
}

.enquiry-contact-items {
  margin-top: 32px;
}

.enquiry-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, .9);
}

.enquiry-contact-item i {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, .12);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--c-gold);
  flex-shrink: 0;
}

.enquiry-contact-item a {
  color: rgba(255, 255, 255, .9);
}

.enquiry-contact-item a:hover {
  color: var(--c-gold);
}

.enquiry-form-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: 44px 40px;
  box-shadow: var(--sh-lg);
  position: relative;
  z-index: 1;
}

/* Form controls */
.form-floating>.form-control,
.form-floating>.form-select,
.custom-input {
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  font-size: 15px;
  color: var(--c-text);
  background: var(--c-white);
  transition: var(--t-fast);
  padding: 14px 18px;
  height: auto;
}

.custom-input {
  display: block;
  width: 100%;
}

.form-floating>.form-control:focus,
.form-floating>.form-select:focus,
.custom-input:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(0, 122, 51, .12);
}

.form-label {
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: var(--fw-med);
  color: var(--c-muted);
  margin-bottom: 6px;
}

textarea.custom-input {
  resize: vertical;
  min-height: 130px;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23007A33' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
}

.btn-submit {
  background: var(--c-primary);
  color: #fff;
  border-radius: var(--r-full);
  padding: 16px 40px;
  font-family: var(--ff-head);
  font-size: 16px;
  font-weight: var(--fw-semi);
  border: none;
  cursor: pointer;
  width: 100%;
  transition: var(--t-base);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit:hover {
  background: var(--c-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--sh-green);
}

.btn-submit:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}

.form-alert {
  padding: 14px 18px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: var(--fw-med);
  display: none;
  margin-top: 16px;
}

.form-alert.success {
  background: #EDF5ED;
  color: #1F5B3A;
  border: 1px solid #B8D4B8;
}

.form-alert.error {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

/* ── 22. CTA BANNER ──────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--c-primary-dark), var(--c-primary));
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
}

.cta-heading {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: var(--fw-xb);
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.25;
}

.product-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 40px;
}

.product-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 40px;
}

.product-navigation-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 45px;
}

.product-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.product-pagination {
  position: relative !important;
  width: auto !important;
  bottom: auto !important;
  left: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #cfd8cf;
  opacity: 1;
  margin: 0 5px !important;
}

.product-pagination .swiper-pagination-bullet-active {
  background: #007A33;
  transform: scale(1.2);
}

.product-nav-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid #e8e2d8;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  flex-shrink: 0;
}

.product-nav-btn:hover {
  background: #007A33;
  color: #fff;
  transform: translateY(-3px);
}

.section-header {
  max-width: 100%;
}

.section-title {
  width: 100%;
  max-width: 100%;
}


.cta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, .8);
  margin: 0;
}

/* ── 23. FOOTER ──────────────────────────────────── */
.main-footer {
  background: #0D1810;
  color: rgba(255, 255, 255, .8);
}

.footer-top {
  padding: 80px 0 50px;
}

.footer-logo {
  height: 100px;
  width: auto;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.75;
  max-width: 320px;
}

.footer-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255, 255, 255, .7);
  transition: var(--t-base);
}

.footer-social a:hover {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: var(--fw-semi);
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--c-primary);
  border-radius: var(--r-full);
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--t-fast);
}

.footer-links ul li a i {
  font-size: 10px;
  color: var(--c-primary);
  transition: var(--t-fast);
}

.footer-links ul li a:hover {
  color: #fff;
}

.footer-links ul li a:hover i {
  transform: translateX(4px);
}

.footer-contact ul li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
}

.footer-contact ul li i {
  width: 18px;
  flex-shrink: 0;
  color: var(--c-primary);
  margin-top: 2px;
  font-size: 14px;
}

.footer-contact ul li a {
  color: rgba(255, 255, 255, .7);
}

.footer-contact ul li a:hover {
  color: #fff;
}

.footer-newsletter h6 {
  font-size: 13px;
  font-weight: var(--fw-semi);
  color: rgba(255, 255, 255, .8);
  margin-bottom: 10px;
}

.newsletter-form .newsletter-group {
  display: flex;
  gap: 6px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--r-full);
  padding: 4px 4px 4px 14px;
}

.newsletter-form input {
  background: transparent;
  border: none;
  font-size: 13px;
  color: #fff;
  flex: 1;
  padding: 8px 0;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, .4);
}

.newsletter-form button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--c-primary);
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t-fast);
}

.newsletter-form button:hover {
  background: var(--c-primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 22px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, .45);
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, .8);
}

/* ── 24. FLOAT BUTTONS ───────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--t-base);
  z-index: 900;
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--c-primary-dark);
  transform: translateY(-3px);
}

.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
  z-index: 900;
  transition: var(--t-base);
  animation: wa-pulse 2.5s ease-in-out infinite 3s;
}

.whatsapp-float:hover {
  background: #128C7E;
  color: #fff;
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(37, 211, 102, .5);
}

.wa-tooltip {
  position: absolute;
  right: 58px;
  background: var(--c-dark);
  color: #fff;
  font-size: 12px;
  font-family: var(--ff-head);
  font-weight: var(--fw-med);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: var(--t-fast);
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--c-dark);
  border-right: none;
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@keyframes wa-pulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
  }

  50% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, .4), 0 0 0 12px rgba(37, 211, 102, .1);
  }
}

/* ── 25. INNER PAGE HERO ─────────────────────────── */
.page-hero {
  padding: 80px 0 80px;
  margin-top: var(--nav-h);
  background: linear-gradient(135deg, var(--c-primary-dark) 0%, var(--c-primary) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--c-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0 0 18px;
}

.page-hero .breadcrumb-item {
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  font-family: var(--ff-head);
}

.page-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, .75);
}

.page-hero .breadcrumb-item a:hover {
  color: #fff;
}

.page-hero .breadcrumb-item.active {
  color: var(--c-gold);
}

.page-hero .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, .4);
}

.page-hero h1 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: var(--fw-xb);
  color: #fff;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, .8);
  max-width: 600px;
}

/* ── 26. KEYFRAME ANIMATIONS ─────────────────────── */
@keyframes float-gentle {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  from {
    background-position: -200% center;
  }

  to {
    background-position: 200% center;
  }
}

.float-anim {
  animation: float-gentle 4s ease-in-out infinite;
}

/* ── 27. RESPONSIVE ──────────────────────────────── */
@media (max-width: 1199px) {
  .process-track::before {
    display: none;
  }

  .enquiry-form-card {
    padding: 36px 28px;
  }
}

@media (max-width: 991px) {
  :root {
    --section-py: 72px;
  }

  .about-badge-float {
    right: 0;
    bottom: -16px;
  }

  .oem-float-badge {
    left: 12px;
    top: 16px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }
}

@media (max-width: 991px) {
  .hero-titles {
    font-size: clamp(44px, 6vw, 62px);
    line-height: 1.06;
    letter-spacing: -1.5px;
  }

  .hero-subtitle {
    font-size: 17px;
    line-height: 1.8;
  }
}

@media (max-width: 767px) {
  :root {
    --section-py: 56px;
  }

  .hero-titles {
    font-size: clamp(38px, 9vw, 52px);
    letter-spacing: -1px;
    white-space: normal;
  }

  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stat-num {
    font-size: 36px;
  }

  .hero-stat-card {
    padding: 22px 18px;
  }

  .enquiry-form-card {
    padding: 28px 20px;
  }

  .footer-top {
    padding: 56px 0 36px;
  }

  .footer-legal {
    justify-content: center;
  }

  .footer-bottom .row>div:first-child {
    text-align: center;
  }

  .infra-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .cert-card {
    padding: 20px;
  }

  .cert-card .cert-image img {
    height: 240px;
  }

  .blog-title {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .logos-track {
    animation: none;
  }
}

@media(max-width:991px) {

  .product-nav {
    justify-content: center;
    margin-top: 25px;
  }

}

/* ═══════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVE OPTIMIZATION  ·  v3.0
   Mom's Care Botanicals — Premium Responsive Refinement
   All screen sizes: phones · iPhones · Android · tablets ·
   iPads · laptops · large desktops
═══════════════════════════════════════════════════════════ */

/* ── GLOBAL OVERFLOW & BASE FIXES ─────────────────────── */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

.container {
  width: 100%;
}

/* ── ≤ 1199px · Large Tablets / Small Laptops ─────────── */
@media (max-width: 1199px) {
  .hero-titles {
    font-size: clamp(50px, 5.5vw, 78px);
  }

  .oem-float-badge {
    left: 0;
  }
}

/* ── ≤ 991px · Tablets & iPad ─────────────────────────── */
@media (max-width: 991px) {

  /* HERO */
  .hero-section {
    min-height: auto;
  }

  .hero-content-wrap {
    min-height: auto;
    padding-top: 130px;
    padding-bottom: 64px;
  }

  .hero-content-wrap .row.min-vh-100 {
    min-height: auto !important;
  }

  .hero-titles {
    font-size: clamp(38px, 7vw, 56px);
    line-height: 1.08;
    letter-spacing: -1px;
    max-width: 100%;
  }

  .hero-subtitle {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 14px;
    letter-spacing: 1.2px;
    margin-bottom: 18px;
  }

  .pain-points {
    margin-top: 8px;
    margin-bottom: 24px;
  }

  .pain-point-item {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 40px;
  }

  .hero-stat-card {
    padding: 20px 18px;
  }

  .hero-stat-num {
    font-size: 40px;
  }

  .hero-stat-num sup {
    font-size: 18px;
  }

  /* NAVBAR */
  #mainNav {
    padding: 12px 0 !important;
  }

  .navbar-logo {
    height: 60px;
  }

  #mainNav.scrolled .navbar-logo {
    height: 46px;
  }

  .navbar-collapse {
    background: #fff;
    padding: 16px 20px 20px;
    border-radius: 18px;
    margin-top: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .navbar-nav {
    gap: 2px;
  }

  .navbar-nav .nav-link {
    color: var(--c-text) !important;
    font-size: 15px;
    padding: 10px 6px;
    border-bottom: 1px solid var(--c-border);
  }

  .navbar-nav .nav-item:last-of-type .nav-link {
    border-bottom: none;
  }

  .btn-quote {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }

  /* SECTION SPACING */
  .section-padding {
    padding: 80px 0;
  }

  .section-title {
    font-size: clamp(26px, 4.5vw, 42px);
    line-height: 1.2;
  }

  .section-desc {
    font-size: 16px;
  }

  /* WHY SECTION */
  .why-section {
    padding: 80px 0;
  }

  .why-card {
    padding: 28px 22px;
  }

  .why-card h4 {
    font-size: 22px;
  }

  .why-icon {
    width: 62px;
    height: 62px;
    font-size: 25px;
  }

  /* PRODUCT SLIDER */
  .product-card {
    height: auto;
  }

  .product-img-wrap {
    aspect-ratio: 4/3;
  }

  .product-navigation-wrapper {
    margin-top: 30px;
  }

  .product-nav-btn {
    width: 46px;
    height: 46px;
  }

  /* ABOUT */
  .about-image-wrap {
    padding-right: 20px;
    margin-bottom: 48px;
  }

  .about-badge-float {
    right: 0;
    bottom: -14px;
    min-width: auto;
    padding: 14px 16px;
  }

  .about-badge-float .num {
    font-size: 32px;
  }

  /* OEM */
  .oem-float-badge {
    left: 0;
    top: 20px;
  }

  .oem-image-wrap {
    margin-bottom: 24px;
  }

  /* INFRA */
  .infra-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── ≤ 767px · Mobile / iPhone / Android ─────────────── */
@media (max-width: 767px) {

  /* HERO */
  .hero-section {
    min-height: auto;
  }

  .hero-content-wrap {
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .hero-titles {
    font-size: clamp(30px, 9vw, 44px);
    letter-spacing: -0.5px;
    line-height: 1.12;
    max-width: 100%;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .hero-badge {
    white-space: normal;
    line-height: 1.6;
    font-size: 10.5px;
    padding: 6px 12px;
    letter-spacing: 1px;
  }

  .pain-point-item {
    font-size: 13px;
  }

  /* SECTION SPACING */
  .section-padding {
    padding: 70px 0;
  }

  .section-title {
    font-size: clamp(24px, 8vw, 36px);
    line-height: 1.2;
  }

  .section-desc {
    font-size: 15px;
  }

  /* PRODUCT CARDS */
  .product-card {
    height: auto;
  }

  .product-img-wrap {
    height: 240px;
    aspect-ratio: unset;
  }

  .product-info {
    padding: 22px 20px 24px;
  }

  .product-name {
    font-size: 20px;
  }

  /* BUTTONS – full width on narrow mobile */
  .btn-primary-custom,
  .btn-outline-white,
  .btn-outline-primary-custom,
  .btn-cta-white,
  .btn-cta-outline {
    width: 100%;
    justify-content: center;
  }

  /* Keep compact / inline buttons their natural width */
  .btn-quote,
  .product-enquire,
  .blog-read-more,
  .filter-btn,
  .cert-badge {
    width: auto !important;
  }

  /* OEM section button group */
  .oem-section .d-flex.gap-3 {
    flex-direction: column;
  }

  /* ABOUT */
  .about-features {
    margin: 20px 0 24px;
  }

  /* PROCESS */
  .process-num {
    width: 56px;
    height: 56px;
    font-size: 18px;
    margin-bottom: 14px;
  }

  .process-step h5 {
    font-size: 12px;
  }

  .process-icon {
    font-size: 20px;
    margin-bottom: 10px;
    height: 24px;
  }

  /* INFRA */
  .infra-stat-card {
    padding: 28px 18px;
  }

  .infra-stat-num {
    font-size: 36px;
  }

  .infra-stat-num .suffix {
    font-size: 22px;
  }

  /* CERTIFICATIONS */
  .cert-card {
    padding: 20px;
  }

  .cert-card .cert-image img {
    height: 220px;
    object-fit: contain;
  }

  .cert-badge-strip {
    margin-top: 32px;
    gap: 8px;
  }

  /* TESTIMONIALS */
  .testi-card {
    padding: 24px 18px;
  }

  /* FAQ */
  .faq-accordion .accordion-button {
    font-size: 14px;
    padding: 16px 18px;
  }

  .faq-accordion .accordion-body {
    padding: 0 18px 18px;
    font-size: 14px;
  }

  /* BLOG */
  .blog-body {
    padding: 18px;
  }

  .blog-title {
    font-size: 16px;
  }

  /* ENQUIRY */
  .enquiry-form-card {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .enquiry-contact-item {
    gap: 12px;
  }

  .enquiry-contact-item i {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .enquiry-info {
    margin-bottom: 36px;
  }

  /* CTA BANNER */
  .cta-banner .col-lg-5 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
  }

  .cta-banner .btn-cta-white,
  .cta-banner .btn-cta-outline {
    width: 100%;
    justify-content: center;
    margin-right: 0 !important;
  }

  /* FOOTER */
  .footer-top {
    padding: 52px 0 36px;
  }

  .footer-tagline {
    max-width: 100%;
  }

  .footer-legal {
    justify-content: center;
    margin-top: 10px;
  }

  .footer-bottom p {
    text-align: center;
  }

  .footer-bottom .col-md-6:last-child {
    text-align: center !important;
  }

  /* FLOAT BUTTONS */
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .back-to-top {
    bottom: 75px;
    right: 15px;
    width: 40px;
    height: 40px;
  }

  /* INNER PAGE HERO */
  .page-hero {
    padding: 110px 0 60px;
  }

  .page-hero h1 {
    font-size: clamp(28px, 7vw, 44px);
  }

  .page-hero p {
    font-size: 15px;
  }
}

/* ── ≤ 575px · Small Mobile / iPhone SE / Compact Android ─ */
@media (max-width: 575px) {

  /* HERO */
  .hero-content-wrap {
    padding-top: 90px;
    padding-bottom: 40px;
  }

  .hero-titles {
    font-size: clamp(26px, 9vw, 36px);
  }

  .hero-badge {
    font-size: 10px;
    padding: 5px 11px;
    letter-spacing: 0.8px;
  }

  /* HERO STATS */
  .hero-stats {
    gap: 10px;
  }

  .hero-stat-card {
    padding: 16px 12px;
  }

  .hero-stat-num {
    font-size: 30px;
  }

  .hero-stat-num sup {
    font-size: 15px;
  }

  .hero-stat-label {
    font-size: 9px;
    letter-spacing: 1.2px;
  }

  /* NAVBAR */
  .navbar-logo {
    height: 48px;
  }

  /* TRUSTED STRIP */
  .logos-track {
    gap: 20px;
  }

  /* SECTION HEADER */
  .section-badge {
    font-size: 11px;
    padding: 5px 13px;
    letter-spacing: 1.3px;
  }

  .section-title {
    font-size: clamp(20px, 7.5vw, 28px);
  }

  .section-desc {
    font-size: 14px;
  }

  /* INGREDIENT CARDS */
  .ingredient-card {
    padding: 22px 14px;
  }

  .ingredient-icon {
    font-size: 36px;
  }

  .ingredient-card h5 {
    font-size: 15px;
  }

  .ingredient-card p {
    font-size: 12px;
  }

  /* PRODUCTS */
  .product-img-wrap {
    height: 200px;
    aspect-ratio: unset;
  }

  .product-info {
    padding: 16px 16px 20px;
  }

  .product-name {
    font-size: 18px;
  }

  /* OEM STEPS */
  .oem-section .col-6>div {
    padding: 14px 12px;
  }

  /* INFRA GALLERY SINGLE COLUMN */
  .infra-gallery {
    grid-template-columns: 1fr;
  }

  /* CERT BADGES */
  .cert-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .cert-badge-strip {
    gap: 6px;
  }

  /* BLOG */
  .blog-body {
    padding: 16px;
  }

  /* ENQUIRY */
  .enquiry-form-card {
    padding: 20px 14px;
  }

  /* FOOTER */
  .footer-top {
    padding: 44px 0 28px;
  }

  .footer-certifications {
    gap: 6px;
  }

  /* PROCESS TRACK CONNECTOR LINE */
  .process-track::before {
    display: none;
  }

  /* PAGE HERO */
  .page-hero {
    padding: 96px 0 52px;
  }

  .page-hero h1 {
    font-size: clamp(24px, 8vw, 36px);
  }
}

/* ═══════════════════════════════════════════════════════════
   REAL DEVICE RESPONSIVENESS FIX  ·  v4.0
   Resolves horizontal scroll, text overflow, broken layouts
   on Android / iPhone Safari / Samsung / Redmi / tablets.
   Cascade order: these rules override all earlier declarations.
═══════════════════════════════════════════════════════════ */

/* ── NAVBAR REAL MOBILE (≤ 991px) ────────────────────────── */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    padding: 20px;
    border-radius: 18px;
    margin-top: 15px;
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 12px 36px rgba(0, 0, 0, .1);
  }

  .navbar-nav {
    gap: 8px;
  }

  .navbar-nav .nav-link {
    display: block;
    width: 100%;
  }
}

/* ── REAL DEVICE MOBILE FIX (≤ 768px) ────────────────────── */
@media (max-width: 768px) {
  body {
    overflow-x: hidden !important;
  }

  section {
    overflow-x: hidden !important;
  }

  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .row {
    --bs-gutter-x: 20px;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* TYPOGRAPHY */
  h1 {
    font-size: 38px !important;
    line-height: 1.2 !important;
  }

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

  p {
    font-size: 15px !important;
    line-height: 1.8 !important;
  }

  /* HERO */
  .hero-title,
  .hero-titles {
    font-size: 40px !important;
    max-width: 100% !important;
    word-break: break-word;
    letter-spacing: -0.5px !important;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns .btn {
    width: 100%;
  }

  /* CARDS — remove fixed heights that break layout */
  .product-card,
  .cert-card,
  .why-card {
    height: auto !important;
  }

  /* PRODUCT IMAGES — remove fixed heights */
  .product-img-wrap {
    height: auto !important;
    aspect-ratio: 4/3;
  }

  .product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* CERT IMAGES — remove fixed heights */
  .cert-image {
    height: auto !important;
    min-height: 180px;
  }

  .cert-card .cert-image img {
    height: auto !important;
    width: 100%;
    object-fit: contain;
  }

  /* FLOATING BADGES — keep inside screen bounds */
  .about-badge-float {
    right: 0 !important;
    bottom: -10px !important;
    min-width: auto !important;
    max-width: 150px;
  }

  .oem-float-badge {
    left: 0 !important;
    top: 12px !important;
  }

  /* BUTTON — allow wrap on narrow screens */
  .btn {
    white-space: normal;
  }

  /* MARQUEE — ensure container clips, not the page */
  .trusted-strip,
  .logos-marquee {
    overflow: hidden !important;
    max-width: 100%;
  }

  /* DECORATIVE ABSOLUTE CIRCLES — hide to prevent scroll trigger */
  .enquiry-section::before,
  .enquiry-section::after,
  .cta-banner::before {
    display: none;
  }

  /* HERO STAT GRID */
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .hero-stat-card {
    padding: 16px 14px;
  }

  /* INFRA GALLERY */
  .infra-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* FOOTER */
  .footer-bottom .row {
    text-align: center;
  }
}

/* ── SMALL PHONE FIX (≤ 480px) ───────────────────────────── */
@media (max-width: 480px) {
  h1 {
    font-size: 32px !important;
  }

  h2 {
    font-size: 26px !important;
  }

  .hero-titles {
    font-size: 30px !important;
    letter-spacing: 0 !important;
  }

  .section-title {
    font-size: 22px !important;
    line-height: 1.25 !important;
  }

  .hero-content-wrap {
    padding-top: 85px;
    padding-bottom: 36px;
  }

  .hero-stat-card {
    padding: 14px 10px;
  }

  .hero-stat-num {
    font-size: 26px;
  }

  .hero-stat-num sup {
    font-size: 13px;
  }

  .hero-stat-label {
    font-size: 9px;
    letter-spacing: 1px;
  }

  /* On very small phones flatten absolute floating badges
     so they never overlap or overflow their image parents */
  .about-badge-float {
    position: static !important;
    margin-top: 14px !important;
    display: inline-block !important;
    min-width: 0 !important;
  }

  .about-image-wrap {
    padding-right: 0 !important;
    margin-bottom: 20px !important;
  }

  .oem-float-badge {
    position: static !important;
    margin-bottom: 16px !important;
    display: inline-block !important;
  }

  .oem-image-wrap {
    margin-bottom: 8px;
  }

  /* Tighter container padding on very small phones */
  .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION MOBILE FIX  ·  v5.0
   Resolves overflow, hero width, and title wrapping on real
   Android / iPhone Safari devices.
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-section,
  .hero-content-wrap {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
  }

  .hero-title,
  .hero-titles {
    font-size: 38px !important;
    line-height: 1.15 !important;
    max-width: 100% !important;
    word-break: break-word;
    letter-spacing: -0.5px !important;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns .btn {
    width: 100%;
  }
}

/* ── FINAL OVERFLOW SEAL — prevents any element leaking outside viewport ── */
@media (max-width: 768px) {
  .products-section,
  .ingredients-section,
  .enquiry-section,
  .cta-banner,
  .why-section {
    overflow-x: hidden !important;
  }

  /* Marquee seal — both the strip and the inner track container */
  .trusted-strip,
  .logos-marquee {
    overflow: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  /* Prevent decorative pseudo-elements overflowing small screens */
  .enquiry-section::before,
  .enquiry-section::after,
  .cta-banner::before,
  .why-section::before {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   DEFINITIVE MOBILE OVERFLOW FIX  ·  v7.0 — ROOT CAUSE FIXES
   ───────────────────────────────────────────────────────────
   ROOT CAUSE 1 — AOS FADE-LEFT/FADE-RIGHT TRANSLATIONS
     AOS starts [data-aos="fade-left"] elements at translateX(+100px)
     and [data-aos="fade-right"] at translateX(-100px).
     On mobile, col-lg-7/col-lg-6/col-lg-5 become full-width (100vw).
     A 100vw column starting 100px to the right = its right edge is
     100px PAST the viewport edge → the primary overflow culprit.

   ROOT CAUSE 2 — MARQUEE TRANSFORM ANIMATION ESCAPING CLIP
     CSS keyframe animations using translateX on .logos-track bypass
     overflow:hidden clipping on mobile WebKit unless the parent
     container is on a dedicated GPU compositing layer.
     clip-path:inset(0) creates a paint boundary that properly clips
     transform-animated children across all mobile browsers.

   ROOT CAUSE 3 — DECORATIVE CIRCLES AT TABLET WIDTH (769–991px)
     .enquiry-section::before (right:-120px, width:400px) and
     .cta-banner::before (right:-60px, width:300px) were only hidden
     at ≤768px. On tablets (769–991px) they still extend outside
     their containers and can escape overflow:hidden on some browsers.
═══════════════════════════════════════════════════════════ */

/* ── FIX 1: AOS HORIZONTAL TRANSLATE OVERRIDE ────────────── */
/* !important overrides AOS's triple-attribute-selector specificity.
   Elements still fade in via opacity — only the horizontal slide
   is removed on mobile to prevent 100px right-side overflow. */
@media (max-width: 991px) {
  [data-aos="fade-left"],
  [data-aos="fade-right"],
  [data-aos="slide-left"],
  [data-aos="slide-right"] {
    transform: none !important;
  }
}

/* ── FIX 2: MARQUEE PAINT CONTAINMENT ────────────────────── */
/* clip-path:inset(0) creates a paint containment boundary that
   clips animated children (translateX keyframes on .logos-track)
   on ALL mobile browsers, including iOS Safari and Android WebView.
   Unlike overflow:hidden alone, clip-path is always composited. */
.trusted-strip {
  overflow: hidden !important;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

.logos-marquee {
  overflow: hidden !important;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

/* ── FIX 3: DECORATIVE CIRCLES — HIDE AT TABLET WIDTH ────── */
@media (max-width: 991px) {
  .enquiry-section::before,
  .enquiry-section::after,
  .cta-banner::before,
  .why-section::before {
    display: none !important;
  }
}

/* ── FIX 4: SECTION-LEVEL OVERFLOW SEAL AT ALL MOBILE ────── */
@media (max-width: 991px) {
  section,
  .cta-banner,
  .main-footer {
    overflow-x: hidden !important;
  }

  .swiper {
    overflow: hidden !important;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* ── FINAL HARD RESET: html + body must stay within viewport ─ */
html,
body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
}