/* ==========================================================================
   School Educational Equipments — Modernized Theme (Bootstrap 5)
   ========================================================================== */

:root {
  --brand-primary: #0d6b3a;        /* deep lab-green */
  --brand-primary-dark: #074d28;
  --brand-secondary: #f59e0b;      /* amber accent */
  --brand-accent: #1a8754;         /* lighter green */
  --brand-ink: #0f1d2e;            /* navy ink */
  --brand-muted: #5b6b7c;
  --brand-bg: #f6faf6;
  --brand-bg-alt: #ffffff;
  --brand-line: #e2e8e4;
  --shadow-sm: 0 2px 8px rgba(15, 29, 46, .06);
  --shadow-md: 0 8px 24px rgba(15, 29, 46, .10);
  --shadow-lg: 0 20px 50px rgba(15, 29, 46, .14);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ---------- base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--brand-ink);
  background: #ffffff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand-ink);
  letter-spacing: -0.01em;
}
/* Hero, inner-banner, and dark sections need light headings */
.home-hero-slider h1, .home-hero-slider h2, .home-hero-slider h3,
.home-hero-slider .heading,
.inner-banner h1, .inner-banner h2, .inner-banner .heading, .inner-banner .inner-banner-title,
.tender-section h1, .tender-section h2, .tender-section h3,
.cta-banner h1, .cta-banner h2, .cta-banner h3,
.stats-section h1, .stats-section h2, .stats-section h3, .stats-section .num,
.tender-card h3,
.tender-cta-inner h4,
.sidebar-head h3, .sidebar-title { color: #fff !important; }
a { color: var(--brand-primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--brand-secondary); }
img { max-width: 100%; height: auto; }
.container { max-width: 1240px; }

/* ---------- topbar ---------- */
.topbar {
  background: linear-gradient(90deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
  letter-spacing: .2px;
}
.topbar a { color: rgba(255,255,255,.95); }
.topbar a:hover { color: #ffd97a; }
.topbar .badge-pill {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  padding: 3px 10px;
  border-radius: 50rem;
  font-size: 12px;
}
.topbar-left .list-inline-item:not(:last-child) { margin-right: 18px; }
.topbar-right .list-inline-item a {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  font-size: 12px;
}
.topbar-right .list-inline-item a:hover { background: var(--brand-secondary); color: #fff; }

/* ---------- navbar ---------- */
.main-navbar {
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--brand-line);
}
.main-navbar.sticky-top { z-index: 1030; }
.navbar-brand img { transition: transform .3s ease; }
.navbar-brand:hover img { transform: scale(1.03); }

.main-navbar .nav-link {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--brand-ink);
  padding: 10px 16px !important;
  font-size: 15px;
  position: relative;
}
.main-navbar .nav-link:hover { color: var(--brand-primary); }
.main-navbar .nav-link.active { color: var(--brand-primary); }
.main-navbar .nav-link.active::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px;
  height: 2px; background: var(--brand-secondary); border-radius: 2px;
}

.btn-search {
  width: 40px; height: 40px;
  border: 1px solid var(--brand-line);
  background: #fff;
  border-radius: 50%;
  color: var(--brand-primary);
}
.btn-search:hover { background: var(--brand-primary); color: #fff; }

.btn-quote {
  background: var(--brand-secondary);
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50rem;
  font-size: 14px;
  letter-spacing: .3px;
  box-shadow: 0 4px 12px rgba(245,158,11,.35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-quote:hover {
  background: #d97706;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(245,158,11,.45);
}

.search-collapse { background: #f6faf6; border-top: 1px solid var(--brand-line); }
.btn-primary-custom {
  background: var(--brand-primary); color: #fff; font-weight: 500;
  padding: 8px 20px; border-radius: var(--radius-sm); border: 0;
}
.btn-primary-custom:hover { background: var(--brand-primary-dark); color: #fff; }

/* ---------- hero ---------- */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #f0f9f3 0%, #ffffff 60%, #fff8e6 100%);
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(13,107,58,.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-section::after {
  content: "";
  position: absolute;
  bottom: -150px; left: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(245,158,11,.10) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(13,107,58,.10);
  color: var(--brand-primary);
  padding: 6px 16px;
  border-radius: 50rem;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title .accent { color: var(--brand-primary); }
.hero-title .accent-2 { color: var(--brand-secondary); }
.hero-lead {
  font-size: 1.1rem;
  color: var(--brand-muted);
  margin-bottom: 28px;
  max-width: 560px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-cta-primary {
  background: var(--brand-primary); color: #fff;
  padding: 14px 28px;
  border-radius: 50rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .3px;
  box-shadow: var(--shadow-md);
  border: 0;
  transition: all .25s ease;
}
.btn-cta-primary:hover {
  background: var(--brand-primary-dark); color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-cta-outline {
  background: #fff; color: var(--brand-ink);
  border: 2px solid var(--brand-ink);
  padding: 12px 26px;
  border-radius: 50rem;
  font-family: var(--font-display);
  font-weight: 600;
}
.btn-cta-outline:hover { background: var(--brand-ink); color: #fff; }

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image-wrap img { width: 100%; display: block; }
.hero-badge {
  position: absolute;
  background: #fff;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
}
.hero-badge .icon {
  width: 44px; height: 44px;
  background: rgba(13,107,58,.10);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-primary);
  font-size: 20px;
}
.hero-badge .num { font-size: 22px; font-weight: 700; color: var(--brand-ink); line-height: 1; }
.hero-badge .lbl { font-size: 12px; color: var(--brand-muted); }
.hero-badge.b1 { bottom: 24px; left: -20px; }
.hero-badge.b2 { top: 24px; right: -20px; }

/* hero trust strip */
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 24px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--brand-line);
}
.hero-trust .item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--brand-muted); }
.hero-trust .item i { color: var(--brand-primary); font-size: 18px; }

/* ---------- inner banner ---------- */
.inner-banner {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  color: #fff;
  padding: 80px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.inner-banner::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: .6;
}
.inner-banner .heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.inner-banner .subheading {
  position: relative; z-index: 1;
  max-width: 700px; margin: 12px auto 0;
  font-size: 1rem;
  color: rgba(255,255,255,.85);
}

/* ---------- section base ---------- */
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  display: inline-block;
  color: var(--brand-secondary);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-lead {
  max-width: 760px; margin: 0 auto;
  color: var(--brand-muted);
  font-size: 1.05rem;
}

/* ---------- products grid ---------- */
.product-grid .product-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
}
.product-grid .product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-grid .product-card .img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f0f3f0;
}
.product-grid .product-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.product-grid .product-card:hover .img-wrap img { transform: scale(1.08); }
.product-grid .product-card .img-wrap::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,29,46,.55) 100%);
}
.product-grid .product-card .body {
  padding: 22px 22px 26px;
}
.product-grid .product-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.product-grid .product-card h3 a { color: var(--brand-ink); }
.product-grid .product-card h3 a:hover { color: var(--brand-primary); }
.product-grid .product-card p {
  font-size: 14px;
  color: var(--brand-muted);
  margin-bottom: 16px;
  line-height: 1.55;
}
.product-grid .product-card .link-arrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--brand-primary);
}
.product-grid .product-card .link-arrow i { transition: transform .25s ease; }
.product-grid .product-card:hover .link-arrow i { transform: translateX(4px); }

.viewall-wrap { text-align: center; margin-top: 40px; }

/* ---------- features / services strip ---------- */
.services-strip {
  background: var(--brand-ink);
  color: #fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.services-strip::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(13,107,58,.25) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(245,158,11,.18) 0%, transparent 50%);
}
.services-strip .container { position: relative; z-index: 1; }
.service-item {
  text-align: center;
  padding: 24px 14px;
  border-right: 1px solid rgba(255,255,255,.10);
}
.service-item:last-child { border-right: 0; }
.service-item .icon-wrap {
  width: 72px; height: 72px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: #fff;
  box-shadow: 0 8px 22px rgba(13,107,58,.4);
}
.service-item h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.service-item p {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin: 0;
}
@media (max-width: 767px) {
  .service-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.10); }
}

/* ---------- why us ---------- */
.why-us { background: var(--brand-bg); }
.why-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 26px;
  height: 100%;
  border: 1px solid var(--brand-line);
  transition: all .3s ease;
  position: relative;
}
.why-card:hover {
  border-color: var(--brand-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-card .icon-circle {
  width: 60px; height: 60px;
  background: rgba(13,107,58,.10);
  color: var(--brand-primary);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  transition: all .3s ease;
}
.why-card:hover .icon-circle {
  background: var(--brand-primary);
  color: #fff;
  transform: rotate(-6deg);
}
.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.why-card p {
  color: var(--brand-muted);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

/* ---------- stats ---------- */
/* ---------- Stats section — REDESIGNED ---------- */
.stats-section {
  background: linear-gradient(135deg, #0a5530 0%, var(--brand-primary) 50%, #0a5530 100%);
  color: #fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  margin: 0;
}
/* Subtle dotted pattern overlay */
.stats-section::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
  pointer-events: none;
}
/* Decorative blob */
.stats-section::after {
  content: "";
  position: absolute;
  top: -45px; right: -45px;
  width: 210px; height: 210px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.stats-section .container { position: relative; z-index: 2; }

.stats-section .stat {
  text-align: center;
  padding: 18px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.stats-section .stat::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand-secondary), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.stats-section .stat:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(245, 158, 11, 0.4);
}
.stats-section .stat:hover::before { transform: translateX(0); }

.stats-section .stat .stat-icon {
  width: 48px; height: 48px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--brand-secondary) 0%, #d97706 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 6px 14px rgba(245, 158, 11, 0.35);
  transition: transform 0.4s ease;
}
.stats-section .stat:hover .stat-icon {
  transform: rotate(-6deg) scale(1.08);
}

.stats-section .stat .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: #fff !important;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.stats-section .stat .num .counter { color: #fde68a; }

.stats-section .stat .lbl {
  font-size: 0.82rem;
  color: rgba(255,255,255,.88);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: .3px;
  line-height: 1.4;
}

/* ---------- about / split content ---------- */
.split-section { background: #fff; }

/* Image stack with floating stat card — works in any section, not just .split-section */
.img-stack {
  position: relative;
  margin-bottom: 30px;
}
.img-stack img.main {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  width: 100%;
  display: block;
}
.img-stack .stat-card {
  position: absolute;
  bottom: -30px; right: -10px;
  background: linear-gradient(135deg, var(--brand-secondary) 0%, #d97706 100%);
  color: #fff;
  padding: 24px 28px;
  border-radius: var(--radius-md);
  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.35);
  font-family: var(--font-display);
  z-index: 2;
  text-align: center;
  min-width: 140px;
}
.img-stack .stat-card .big {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  display: block;
}
.img-stack .stat-card .lbl {
  font-size: 0.82rem;
  font-weight: 500;
  margin-top: 6px;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.04em;
  display: block;
}

@media (max-width: 575px) {
  .img-stack .stat-card {
    right: 10px;
    bottom: -20px;
    padding: 18px 22px;
    min-width: 120px;
  }
  .img-stack .stat-card .big { font-size: 1.8rem; }
}

.split-section .check-list {
  list-style: none; padding: 0; margin: 24px 0;
}
.split-section .check-list li {
  padding: 8px 0 8px 32px;
  position: relative;
  font-size: 15px;
  color: var(--brand-ink);
}
.split-section .check-list li::before {
  content: "\F26A"; /* bi-check2-circle */
  font-family: 'bootstrap-icons';
  position: absolute; left: 0; top: 7px;
  color: var(--brand-primary);
  font-size: 20px;
}

/* ---------- tender / cta ---------- */
.tender-section {
  background: var(--brand-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.tender-section::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(135deg, transparent 40%, rgba(245,158,11,.18) 100%);
}
.tender-section::after {
  content: ""; position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  border: 2px dashed rgba(255,255,255,.10);
  border-radius: 50%;
}
.tender-section .container { position: relative; z-index: 1; }
.tender-section h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.tender-section .lead-text {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  margin-bottom: 24px;
}
.tender-points li {
  padding: 8px 0 8px 32px;
  position: relative;
  color: rgba(255,255,255,.9);
}
.tender-points li::before {
  content: "\F270"; /* bi-check-lg */
  font-family: 'bootstrap-icons';
  position: absolute; left: 0; top: 7px;
  color: var(--brand-secondary);
  font-size: 18px;
  font-weight: 700;
}

/* ---------- recent / slider ---------- */
.recent-section { background: var(--brand-bg); }
.owl-recent .item {
  display: block;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin: 8px;
  color: inherit;
  text-decoration: none;
  transition: transform .35s ease, box-shadow .35s ease;
}
a.item:hover, .owl-recent a.item:hover {
  color: inherit;
  text-decoration: none;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.owl-recent .item .img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f0f3f0;
}
.owl-recent .item .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.owl-recent .item:hover .img-wrap img { transform: scale(1.08); }
.owl-recent .item .label {
  padding: 18px 20px;
  font-family: var(--font-display);
  font-weight: 600;
  text-align: center;
  color: var(--brand-ink);
  border-top: 3px solid var(--brand-primary);
}
.owl-recent .owl-nav button.owl-prev,
.owl-recent .owl-nav button.owl-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: #fff !important;
  color: var(--brand-primary) !important;
  border-radius: 50% !important;
  box-shadow: var(--shadow-md);
  font-size: 20px !important;
}
.owl-recent .owl-nav button.owl-prev { left: -10px; }
.owl-recent .owl-nav button.owl-next { right: -10px; }

/* ---------- categories pill list ---------- */
.categories-pills { background: var(--brand-bg); padding: 60px 0; }
.cat-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff;
  padding: 10px 22px;
  border-radius: 50rem;
  border: 1px solid var(--brand-line);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--brand-ink);
  margin: 6px;
  transition: all .25s ease;
}
.cat-pill:hover {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
  transform: translateY(-2px);
}
.cat-pill i { color: var(--brand-secondary); }
.cat-pill:hover i { color: #fff; }

/* ---------- testimonial / clients ---------- */
.testimonial-section { background: #fff; }
.testimonial-card {
  background: #fff;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-md);
  padding: 32px;
  height: 100%;
  position: relative;
}
.testimonial-card::before {
  content: "\201C";
  font-family: Georgia, serif;
  position: absolute;
  top: 8px; left: 22px;
  font-size: 80px;
  line-height: 1;
  color: rgba(13,107,58,.10);
  font-weight: 700;
}
.testimonial-card .stars { color: var(--brand-secondary); margin-bottom: 12px; font-size: 16px; position: relative; }
.testimonial-card .quote-text {
  font-size: 15px;
  color: var(--brand-ink);
  line-height: 1.7;
  margin-bottom: 18px;
  position: relative;
}
.testimonial-card .author {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--brand-ink);
}
.testimonial-card .role {
  font-size: 13px;
  color: var(--brand-muted);
}

/* ---------- FAQ ---------- */
.faq-section { background: var(--brand-bg); }
.faq-accordion .accordion-item {
  border: 1px solid var(--brand-line);
  margin-bottom: 14px;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--brand-ink);
  background: #fff;
  padding: 20px 24px;
  font-size: 1rem;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(13,107,58,.05);
  color: var(--brand-primary);
  box-shadow: none;
}
.faq-accordion .accordion-button:focus { box-shadow: 0 0 0 .15rem rgba(13,107,58,.20); }
.faq-accordion .accordion-body {
  padding: 0 24px 22px;
  color: var(--brand-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ---------- final CTA ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-secondary) 0%, #d97706 100%);
  color: #fff;
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .6;
}
.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  position: relative; z-index: 1;
  margin-bottom: 14px;
}
.cta-banner p {
  color: rgba(255,255,255,.95);
  font-size: 1.05rem;
  margin-bottom: 28px;
  position: relative; z-index: 1;
  max-width: 700px;
  margin-left: auto; margin-right: auto;
}
.cta-banner .btn-cta-white {
  background: #fff;
  color: var(--brand-ink);
  padding: 14px 30px;
  border-radius: 50rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .3px;
  position: relative; z-index: 1;
  box-shadow: var(--shadow-md);
  display: inline-flex; align-items: center; gap: 10px;
}
.cta-banner .btn-cta-white:hover {
  background: var(--brand-ink); color: #fff;
  transform: translateY(-2px);
}
.cta-banner .btn-cta-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 12px 28px;
  border-radius: 50rem;
  font-family: var(--font-display);
  font-weight: 600;
  position: relative; z-index: 1;
  margin-left: 10px;
}
.cta-banner .btn-cta-ghost:hover { background: #fff; color: var(--brand-ink); }

/* ---------- breadcrumb ---------- */
.bread-crumbs {
  padding: 14px 0;
  font-size: 14px;
  color: var(--brand-muted);
  background: var(--brand-bg);
  border-bottom: 1px solid var(--brand-line);
  margin-bottom: 40px;
}
.bread-crumbs a { color: var(--brand-primary); }
.bread-crumbs a:hover { color: var(--brand-secondary); }

/* ---------- content (about/products page typography) ---------- */
.content-block p { margin-bottom: 18px; font-size: 15.5px; line-height: 1.8; color: #2a3949; }
.content-block strong { color: var(--brand-primary); font-weight: 600; }
.content-block ul { padding-left: 0; list-style: none; }
.content-block ul li {
  padding: 8px 0 8px 30px;
  position: relative;
  font-size: 15px;
}
.content-block ul li::before {
  content: "\F26A"; font-family: 'bootstrap-icons';
  position: absolute; left: 0; top: 7px;
  color: var(--brand-primary); font-size: 18px;
}

/* ---------- contact ---------- */
.contact-section { background: var(--brand-bg); }
.contact-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px;
  height: 100%;
  border: 1px solid var(--brand-line);
  box-shadow: var(--shadow-sm);
}
.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--brand-primary);
  display: inline-block;
}
.contact-info-item {
  display: flex; gap: 14px;
  padding: 12px 0;
  align-items: flex-start;
  border-bottom: 1px solid var(--brand-line);
}
.contact-info-item:last-child { border-bottom: 0; }
.contact-info-item .icon {
  width: 42px; height: 42px;
  background: rgba(13,107,58,.10);
  color: var(--brand-primary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-item .info .label { font-size: 12px; color: var(--brand-muted); text-transform: uppercase; letter-spacing: .5px; }
.contact-info-item .info .value { font-family: var(--font-display); font-weight: 500; color: var(--brand-ink); font-size: 15px; }
.contact-info-item .info a { color: var(--brand-ink); }
.contact-info-item .info a:hover { color: var(--brand-primary); }

.contact-form .form-label { font-family: var(--font-display); font-weight: 500; font-size: 14px; }
.contact-form .form-control {
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 15px;
  background: #fff;
}
.contact-form .form-control:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 .15rem rgba(13,107,58,.15);
}
.contact-form .submit-btn {
  background: var(--brand-primary); color: #fff;
  padding: 12px 30px; border: 0;
  border-radius: 50rem;
  font-family: var(--font-display); font-weight: 600;
  letter-spacing: .3px;
  cursor: pointer;
  transition: all .25s ease;
}
.contact-form .submit-btn:hover { background: var(--brand-primary-dark); transform: translateY(-2px); }
.captcha-box {
  display: flex; align-items: center; gap: 12px;
  background: var(--brand-bg);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}
.captcha-box .ctext { font-family: var(--font-display); font-weight: 600; color: var(--brand-primary); }

/* ---------- product detail page ---------- */
.detail-page { padding: 60px 0; }
.detail-img-wrap {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--brand-line);
}
.detail-img-wrap img { border-radius: var(--radius-sm); width: 100%; }
.product-dt-box .dtsubhead {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--brand-ink);
}
.product-dt-box .procode-box {
  background: var(--brand-bg);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 14px;
  font-size: 14px;
}
.product-dt-box .procode-box strong { color: var(--brand-primary); }
.btn-details ul { list-style: none; padding: 0; margin: 20px 0; display: flex; flex-wrap: wrap; gap: 10px; }
.btn-details .btn {
  padding: 10px 20px;
  border-radius: 50rem;
  font-family: var(--font-display); font-weight: 500;
  font-size: 14px;
  border: 0;
}
.btn-details .addbtn { background: var(--brand-primary); color: #fff; }
.btn-details .addbtn:hover { background: var(--brand-primary-dark); }
.btn-details .quick_view { background: var(--brand-secondary); color: #fff; }
.btn-details .quick_view:hover { background: #d97706; }
.btn-details .prints { background: var(--brand-bg); color: var(--brand-ink); border: 1px solid var(--brand-line); }

/* ---------- footer ---------- */
.site-footer {
  background: var(--brand-ink);
  color: rgba(255,255,255,.78);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: ""; position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(13,107,58,.15) 0%, transparent 70%);
}
.site-footer .container { position: relative; z-index: 1; }
.site-footer .footer-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 22px;
  padding-bottom: 12px;
  position: relative;
}
.site-footer .footer-title::after {
  content: ""; position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 3px;
  background: var(--brand-secondary);
  border-radius: 2px;
}
.site-footer p { color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.7; }
.site-footer .footer-nav { list-style: none; padding: 0; margin: 0; }
.site-footer .footer-nav li { margin-bottom: 10px; }
.site-footer .footer-nav a {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  transition: all .25s ease;
}
.site-footer .footer-nav a:hover { color: var(--brand-secondary); padding-left: 6px; }
.site-footer .footer-nav a::before {
  content: "\F285"; /* bi-chevron-right */
  font-family: 'bootstrap-icons';
  margin-right: 6px;
  font-size: 12px;
  color: var(--brand-secondary);
}
.site-footer .contact-item {
  display: flex; gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
  font-size: 14px;
}
.site-footer .contact-item i {
  color: var(--brand-secondary);
  font-size: 18px;
  margin-top: 2px;
}
.site-footer .contact-item a { color: rgba(255,255,255,.78); }
.site-footer .contact-item a:hover { color: var(--brand-secondary); }
.site-footer .social-icons { display: flex; gap: 10px; margin-top: 16px; }
.site-footer .social-icons a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: all .25s ease;
}
.site-footer .social-icons a:hover {
  background: var(--brand-secondary); color: #fff;
  transform: translateY(-3px);
}

/* ============================================
   FOOTER MEGA SEO BLOCK — REDESIGNED
   ============================================ */
.footer-mega {
  margin-top: 60px;
  padding: 50px 0 30px;
  border-top: 1px solid rgba(255,255,255,.10);
  position: relative;
}
.footer-mega-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.fm-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-secondary);
  padding: 5px 14px;
  background: rgba(245, 158, 11, 0.10);
  border: 1px solid rgba(245, 158, 11, 0.30);
  border-radius: 50rem;
  margin-bottom: 14px;
}
.fm-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 12px;
  line-height: 1.25;
}
.fm-lead {
  color: rgba(255,255,255,0.75) !important;
  font-size: 0.95rem !important;
  line-height: 1.65 !important;
  margin: 0;
}

/* Three pillar capability cards */
.footer-pillars { margin-bottom: 48px; }
.fm-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 26px 22px;
  height: 100%;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  position: relative;
  overflow: hidden;
}
.fm-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-secondary), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.fm-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.30);
  background: linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.03) 100%);
}
.fm-card:hover::before { opacity: 1; }
.fm-card-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--brand-secondary) 0%, #d97706 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 16px;
  box-shadow: 0 8px 18px rgba(245, 158, 11, 0.25);
}
.fm-card h4 {
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.fm-card p {
  color: rgba(255,255,255,0.65) !important;
  font-size: 0.86rem !important;
  line-height: 1.65 !important;
  margin: 0;
}

/* Section heading between blocks */
.fm-section-head {
  text-align: center;
  margin: 16px 0 26px;
}
.fm-section-head h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff !important;
  margin: 12px 0 0;
}
.fm-section-head .text-amber {
  color: var(--brand-secondary);
  background: linear-gradient(120deg, var(--brand-secondary), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Regional country cards */
.footer-regions { margin-bottom: 48px; }
.fm-region {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--brand-secondary);
  border-radius: 12px;
  padding: 18px 20px;
  height: 100%;
  transition: background 0.3s ease, transform 0.3s ease;
}
.fm-region:hover {
  background: rgba(255,255,255,0.06);
  transform: translateX(3px);
}
.fm-region-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-family: var(--font-display);
}
.fm-region-head i {
  font-size: 1.25rem;
  color: var(--brand-secondary);
}
.fm-region-head strong {
  color: #fff !important;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.fm-region p {
  color: rgba(255,255,255,0.62) !important;
  font-size: 0.8rem !important;
  line-height: 1.6 !important;
  margin: 0;
}

/* Specialities tag pills */
.fm-specialities {
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.fm-specialities .fm-eyebrow { margin-bottom: 18px; }
.fm-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.fm-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 50rem;
  padding: 8px 16px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.85) !important;
  font-family: var(--font-display);
  font-weight: 500;
  transition: all 0.25s ease;
  cursor: default;
}
.fm-tag:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.45);
  color: #fff !important;
  transform: translateY(-2px);
}
.fm-tag i {
  color: var(--brand-secondary);
  font-size: 0.95rem;
}

/* Mobile tuning for footer mega */
@media (max-width: 767px) {
  .footer-mega { padding: 40px 0 20px; margin-top: 40px; }
  .footer-mega-intro { margin-bottom: 32px; }
  .footer-pillars, .footer-regions { margin-bottom: 32px; }
  .fm-card { padding: 22px 18px; }
  .fm-region { padding: 16px 16px; }
  .fm-tag { font-size: 0.76rem; padding: 7px 14px; }
}

.footer-bottom {
  background: #0a1421;
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}
.footer-bottom a { color: var(--brand-secondary); }

/* back to top */
#back-top {
  position: fixed; bottom: 30px; right: 30px;
  z-index: 999; display: none;
}
#back-top a {
  width: 46px; height: 46px;
  background: var(--brand-primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-md);
}
#back-top a:hover { background: var(--brand-secondary); }

/* ---------- Owl carousel home hero — REDESIGNED ---------- */
.home-hero-slider {
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
}
.home-hero-slider .owl-stage-outer,
.home-hero-slider .owl-stage,
.home-hero-slider .owl-item { margin: 0; padding: 0; }

.home-hero-slider .bannerimg {
  height: 512px;
  background-size: cover !important;
  background-position: left center !important;
  background-repeat: no-repeat !important;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}
/* Right panel: exact 50% width, muted olive-sage, hard left edge — no gradient fade */
.home-hero-slider .bannerimg::before {
  content: ""; position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 50%;
  background: linear-gradient(135deg, rgba(110, 118, 82, 0.82) 0%, rgba(95, 105, 72, 0.88) 100%);
  z-index: 1;
  pointer-events: none;
}
/* Very subtle inner light leak — keeps the panel from feeling dead flat */
.home-hero-slider .bannerimg::after {
  content: ""; position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 50%;
  background: radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.10) 0%, transparent 55%);
  z-index: 2;
  pointer-events: none;
}
.home-hero-slider .container {
  position: relative; z-index: 3;
  display: flex;
  justify-content: flex-end;
}

.home-hero-slider .bcontent {
  position: relative; z-index: 3;
  max-width: 540px;
  width: 50%;
  padding: 0 0 0 60px;
  color: #fff;
}
.home-hero-slider .bcontent .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.5);
  color: #fde68a !important;
  padding: 6px 16px;
  border-radius: 50rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.home-hero-slider .bcontent .heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.14;
  margin-bottom: 14px;
  color: #fff !important;
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
  letter-spacing: -0.015em;
}
.home-hero-slider .bcontent .heading .accent { color: var(--brand-secondary) !important; }
.home-hero-slider .bcontent p {
  font-size: 0.98rem;
  margin-bottom: 22px;
  color: rgba(255,255,255,.92);
  max-width: 600px;
  line-height: 1.55;
}
.home-hero-slider .bcontent .hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.home-hero-slider .bcontent .btn {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  border-radius: 50rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .3px;
  border: 0;
  text-decoration: none;
  transition: all .25s ease;
  white-space: nowrap;
}
/* Primary CTA — amber filled */
.home-hero-slider .bcontent .btn-hero-primary {
  background: var(--brand-secondary);
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.32);
}
.home-hero-slider .bcontent .btn-hero-primary:hover {
  background: #d97706;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(245, 158, 11, 0.45);
}
/* Ghost CTA — transparent with white border, sits on the olive panel */
.home-hero-slider .bcontent .btn-hero-ghost {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 9px 20px;
}
.home-hero-slider .bcontent .btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff !important;
  transform: translateY(-2px);
}

/* Dots */
.home-hero-slider .owl-dots {
  position: absolute; bottom: 30px; left: 0; right: 0;
  text-align: center; z-index: 5;
}
.home-hero-slider .owl-dots .owl-dot span {
  width: 32px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,.4) !important;
  margin: 0 4px;
  transition: all .3s ease;
}
.home-hero-slider .owl-dots .owl-dot.active span,
.home-hero-slider .owl-dots .owl-dot:hover span { background: var(--brand-secondary) !important; width: 48px; }

/* Prev / Next Arrows */
.home-hero-slider .owl-nav {
  position: absolute; top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  display: flex; justify-content: space-between;
  pointer-events: none;
  z-index: 5;
  padding: 0 24px;
}
.home-hero-slider .owl-nav button.owl-prev,
.home-hero-slider .owl-nav button.owl-next {
  pointer-events: auto;
  width: 46px; height: 46px;
  background: rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
  border-radius: 50% !important;
  font-size: 18px !important;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s ease;
}
.home-hero-slider .owl-nav button.owl-prev:hover,
.home-hero-slider .owl-nav button.owl-next:hover {
  background: var(--brand-secondary) !important;
  border-color: var(--brand-secondary) !important;
  transform: scale(1.08);
}
.home-hero-slider .owl-nav button i { line-height: 1; }

/* ---------- responsive ---------- */
@media (max-width: 1199px) {
  .home-hero-slider .owl-nav { padding: 0 12px; }
  .home-hero-slider .owl-nav button.owl-prev,
  .home-hero-slider .owl-nav button.owl-next { width: 48px; height: 48px; font-size: 18px !important; }
}
@media (max-width: 991px) {
  section { padding: 60px 0; }
  .hero-section { padding: 60px 0; }
  .hero-image-wrap { margin-top: 40px; }
  .hero-badge { display: none; }
  .img-stack .stat-card { right: 10px; }
  .home-hero-slider .bannerimg { height: 420px; }
  /* Below tablet, panel grows to full width — image too narrow for split layout */
  .home-hero-slider .bannerimg::before,
  .home-hero-slider .bannerimg::after {
    width: 100% !important;
    right: 0 !important; left: 0 !important;
  }
  .home-hero-slider .bannerimg::before {
    background: linear-gradient(135deg, rgba(110, 118, 82, 0.85) 0%, rgba(95, 105, 72, 0.90) 100%) !important;
  }
  .home-hero-slider .container {
    justify-content: flex-start !important;
  }
  .home-hero-slider .bcontent {
    width: 100%;
    max-width: 600px;
    padding: 0;
  }
  .stats-section { padding: 45px 0; }
  .stats-section .stat .num { font-size: 1.8rem; }
  .stats-section .stat .stat-icon { width: 44px; height: 44px; font-size: 20px; }
}
@media (max-width: 767px) {
  .stats-section .stat .num { font-size: 1.7rem; }
  .stats-section .stat { padding: 16px 10px; }
  .stats-section .stat .stat-icon { width: 42px; height: 42px; font-size: 18px; margin-bottom: 10px; }
  .hero-cta { justify-content: center; }
  .hero-section { text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .home-hero-slider .bannerimg { height: 380px; }
  .home-hero-slider .owl-nav { display: none; }
  .home-hero-slider .bcontent .hero-eyebrow { font-size: .64rem; padding: 5px 12px; margin-bottom: 12px; }
  .cta-banner .btn-cta-ghost { margin-left: 0; margin-top: 12px; }
}
@media (max-width: 575px) {
  .home-hero-slider .bannerimg { height: 340px; }
  .home-hero-slider .bcontent { padding: 0 6px; max-width: 100%; }
  .home-hero-slider .bcontent .heading { font-size: 1.45rem; line-height: 1.2; margin-bottom: 12px; }
  .home-hero-slider .bcontent p { font-size: .9rem; margin-bottom: 16px; }
  .home-hero-slider .bcontent .btn { padding: 9px 18px; font-size: .85rem; }
  .stats-section { padding: 40px 0; }
  .stats-section .stat .num { font-size: 1.5rem; }
  .stats-section .stat .lbl { font-size: .76rem; }
}

/* ---------- visually hidden ---------- */
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important;
  overflow: hidden !important; clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important; border: 0 !important;
}

/* ===========================
   MoE Tenders Page Styles
   =========================== */
.breadcrumb-light .breadcrumb-item,
.breadcrumb-light .breadcrumb-item a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}
.breadcrumb-light .breadcrumb-item a:hover { color:#fff; text-decoration: underline; }
.breadcrumb-light .breadcrumb-item.active { color:#fff; }
.breadcrumb-light .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.6); }

.eyebrow-light {
  color: var(--brand-secondary);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .8rem;
}

.text-white-75 { color: rgba(255,255,255,0.82); }

/* Docs list */
.docs-list { display: flex; flex-direction: column; gap: 1.1rem; }
.docs-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.1rem 1.2rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(13, 107, 58, 0.08);
  box-shadow: 0 4px 14px rgba(15,29,46,0.04);
  transition: transform .25s ease, box-shadow .25s ease;
}
.docs-item:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(15,29,46,0.08); }
.docs-item i {
  color: var(--brand-primary);
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.docs-item h5 {
  margin: 0 0 .25rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--brand-ink);
}
.docs-item p { margin: 0; color:#475569; font-size: .95rem; line-height: 1.55; }

/* Tender stats inline */
.tender-stats {
  display: flex; gap: 2.2rem; flex-wrap: wrap;
  margin-top: 1.5rem;
}
.tender-stats > div { color:#fff; }
.tender-stats strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-secondary);
  line-height: 1.1;
}
.tender-stats span {
  display: block;
  font-size: .85rem;
  color: rgba(255,255,255,0.78);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: .15rem;
}

/* Tender CTA card (right column inside .tender-section) */
.tender-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 2rem;
  color: #fff;
}
.tender-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.35rem;
  margin-bottom: .6rem;
  color:#fff;
}
.tender-card p { color: rgba(255,255,255,0.8); margin-bottom: 1.25rem; font-size: .95rem; }

/* Region cards */
.region-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.5rem 1.4rem;
  height: 100%;
  border-top: 4px solid var(--brand-primary);
  box-shadow: 0 5px 18px rgba(15,29,46,0.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.region-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(15,29,46,0.09); }
.region-card h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--brand-ink);
  margin-bottom: .6rem;
  display: flex; align-items: center; gap: .4rem;
}
.region-card h4 i { color: var(--brand-secondary); }
.region-card p { font-size: .9rem; color:#566174; margin: 0; line-height: 1.55; }

/* SEO content block */
.seo-content h2 {
  font-family: 'Poppins', sans-serif;
  color: var(--brand-ink);
  font-weight: 600;
}
.seo-content p {
  color:#475569;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.seo-content strong { color: var(--brand-ink); }

@media (max-width: 575.98px) {
  .tender-stats { gap: 1.4rem; }
  .tender-stats strong { font-size: 1.6rem; }
}

/* ===========================
   Left Sidebar - Categories (left_pannel.php)
   =========================== */
.sidebar-categories { position: sticky; top: 110px; }

.sidebar-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 5px 22px rgba(15,29,46,0.06);
  border: 1px solid rgba(13, 107, 58, 0.08);
}

.sidebar-head {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #0a5530 100%);
  padding: 1rem 1.25rem;
}
.sidebar-title {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
}

.cat-nav .cat-list { padding: .5rem 0; }

.cat-item {
  position: relative;
  border-bottom: 1px solid rgba(15,29,46,0.05);
}
.cat-item:last-child { border-bottom: 0; }

.cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1rem .75rem 2.5rem;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  color: var(--brand-ink);
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}
.cat-link:hover { color: var(--brand-primary); background: rgba(13, 107, 58, 0.03); }

.cat-item.active > .cat-link { color: var(--brand-primary); font-weight: 600; }
.cat-item.active > .cat-link .cat-name::before {
  content: '';
  display: inline-block;
  width: 4px; height: 16px;
  background: var(--brand-primary);
  border-radius: 2px;
  margin-right: .55rem;
  vertical-align: -3px;
}

/* Toggle button (plus/minus) */
.cat-toggle {
  position: absolute;
  left: .55rem; top: .55rem;
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(13, 107, 58, 0.2);
  background: rgba(13, 107, 58, 0.05);
  color: var(--brand-primary);
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
  font-size: .8rem;
  transition: all .2s ease;
  z-index: 2;
}
.cat-toggle:hover { background: var(--brand-primary); color: #fff; border-color: var(--brand-primary); }
.cat-toggle i { line-height: 1; }

/* When category has no children, no toggle exists — adjust padding */
.cat-item:not(.expandable) .cat-link { padding-left: 1rem; }

/* Sub categories */
.subcat-list {
  background: #f7faf8;
  padding: .35rem 0 .55rem;
  display: none;
  border-top: 1px solid rgba(13, 107, 58, 0.06);
}
.cat-item.active > .subcat-list { display: block; }

.subcat-item { border-bottom: 1px dashed rgba(15,29,46,0.04); }
.subcat-item:last-child { border-bottom: 0; }

.subcat-link {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1rem .55rem 2.75rem;
  font-size: .88rem;
  color: #566174;
  text-decoration: none;
  transition: all .2s ease;
}
.subcat-link i {
  font-size: .7rem;
  color: var(--brand-secondary);
  transition: transform .2s ease;
}
.subcat-link:hover {
  color: var(--brand-primary);
  background: rgba(13, 107, 58, 0.04);
  padding-left: 3rem;
}
.subcat-link:hover i { transform: translateX(2px); }
.subcat-link.active-child {
  color: var(--brand-primary);
  font-weight: 600;
  background: rgba(13, 107, 58, 0.06);
}

/* Sidebar Tender CTA card */
.sidebar-tender-cta { }
.tender-cta-inner {
  background: linear-gradient(135deg, var(--brand-ink) 0%, #1a2d44 100%);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  color: #fff;
  text-align: center;
  box-shadow: 0 5px 22px rgba(15,29,46,0.10);
}
.tender-cta-icon {
  font-size: 2.2rem;
  color: var(--brand-secondary);
  display: block;
  margin-bottom: .5rem;
}
.tender-cta-inner h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: .5rem;
  color: #fff;
}
.tender-cta-inner p {
  font-size: .85rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 1rem;
  line-height: 1.5;
}

@media (max-width: 991.98px) {
  .sidebar-categories { position: static; margin-bottom: 2rem; }
}

/* ===========================
   Layout flush — remove gaps after navbar / between sections
   =========================== */
.main-navbar { margin-bottom: 0 !important; }
.home-hero-slider.owl-carousel,
.home-hero-slider.owl-theme { margin: 0 !important; padding: 0 !important; }
.home-hero-slider + section,
.home-hero-slider + .stats-section { margin-top: 0 !important; }

/* Fix: hide pre-init carousel stack to prevent flash & spacing */
.home-hero-slider:not(.owl-loaded) > .bannerimg:nth-child(n+2) { display: none; }
.home-hero-slider:not(.owl-loaded) > .bannerimg:first-child { height: 512px; }

/* Owl carousel base resets (since we load owl from CDN) */
.owl-carousel { margin-bottom: 0 !important; }
.owl-carousel .owl-stage { margin: 0; }

/* Ensure body has no margin */
html, body { margin: 0; padding: 0; }

/* ============================================
   ABOUT PAGE — Why We Are a Preferred Manufacturer
   ============================================ */
.why-preferred {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
  position: relative;
}
.why-preferred .section-header { margin-bottom: 48px; }
.why-preferred .section-lead {
  max-width: 720px;
  margin: 12px auto 0;
  color: #566174;
  font-size: 1rem;
  line-height: 1.6;
}

/* Capability cards grid */
.capability-grid { margin-bottom: 64px; }
.cap-card {
  background: #fff;
  border: 1px solid rgba(13, 107, 58, 0.08);
  border-radius: 18px;
  padding: 30px 24px 26px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(15, 29, 46, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.cap-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.cap-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(15, 29, 46, 0.10);
  border-color: rgba(245, 158, 11, 0.30);
}
.cap-card:hover::before { transform: scaleX(1); }

.cap-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #0a5530 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(13, 107, 58, 0.22);
  transition: transform 0.35s ease;
}
.cap-card:hover .cap-icon {
  transform: rotate(-6deg) scale(1.06);
  background: linear-gradient(135deg, var(--brand-secondary) 0%, #d97706 100%);
  box-shadow: 0 8px 18px rgba(245, 158, 11, 0.32);
}

.cap-card h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--brand-ink);
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}
.cap-card p {
  color: #566174;
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 18px;
}
.cap-tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(13, 107, 58, 0.08);
  color: var(--brand-primary);
  border-radius: 50rem;
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

/* Capability pill list */
.capability-list-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 8px 30px rgba(15, 29, 46, 0.06);
  border: 1px solid rgba(13, 107, 58, 0.08);
  position: relative;
  overflow: hidden;
}
.capability-list-wrap::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.capability-list-head {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.capability-list-head h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--brand-ink);
  margin: 10px 0 10px;
  letter-spacing: -0.01em;
}
.capability-list-head p {
  color: #566174;
  font-size: 0.95rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

.capability-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  position: relative;
  z-index: 1;
}
.cap-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #f7faf8;
  border: 1px solid rgba(13, 107, 58, 0.10);
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--brand-ink);
  text-decoration: none;
  font-family: var(--font-body);
  transition: all 0.25s ease;
  line-height: 1.35;
}
.cap-pill i {
  color: var(--brand-primary);
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: color 0.25s ease;
}
.cap-pill:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(13, 107, 58, 0.25);
}
.cap-pill:hover i {
  color: var(--brand-secondary);
}

@media (max-width: 991px) {
  .capability-tags { grid-template-columns: repeat(2, 1fr); }
  .capability-list-wrap { padding: 36px 24px; }
}
@media (max-width: 575px) {
  .capability-tags { grid-template-columns: 1fr; gap: 10px; }
  .capability-list-wrap { padding: 28px 18px; border-radius: 18px; }
  .why-preferred { padding: 60px 0; }
  .capability-list-head h3 { font-size: 1.25rem; }
  .cap-card { padding: 24px 20px; }
}

/* ============================================
   PRODUCTS PAGE — REDESIGNED
   ============================================ */

/* Banner trust badges */
.products-banner { padding: 60px 0 50px; }
.products-banner .banner-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 22px;
}
.products-banner .banner-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.92);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}
.products-banner .banner-trust i {
  color: var(--brand-secondary);
  font-size: 1.05rem;
}

/* Product List Item — vastly improved */
.product-list-item {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  background: #fff;
  border: 1px solid rgba(13, 107, 58, 0.08);
  border-radius: 18px;
  margin-bottom: 18px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 29, 46, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
}
.product-list-item::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.product-list-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(15, 29, 46, 0.10);
  border-color: rgba(245, 158, 11, 0.30);
}
.product-list-item:hover::before { opacity: 1; }

/* Image side */
.pli-img-wrap {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f7faf8;
  overflow: hidden;
  border-right: 1px solid rgba(13, 107, 58, 0.06);
}
.pli-img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 18px;
  transition: transform 0.4s ease;
}
.pli-img-wrap:hover img { transform: scale(1.06); }
.pli-zoom {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(13, 107, 58, 0.92);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.3s ease;
}
.pli-img-wrap:hover .pli-zoom {
  opacity: 1;
  transform: translateY(0);
}

/* Body side */
.pli-body {
  padding: 22px 24px 22px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pli-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}
.pli-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--brand-ink);
  flex: 1;
}
.pli-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.pli-title a:hover { color: var(--brand-primary); }

.pli-price {
  background: linear-gradient(135deg, var(--brand-secondary), #d97706);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 6px 14px;
  border-radius: 50rem;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.25);
}

.pli-desc {
  color: #566174;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 14px;
  /* Line clamp to 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pli-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}
.pli-meta > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #566174;
  background: #f4f7f5;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(13, 107, 58, 0.06);
}
.pli-meta i {
  color: var(--brand-primary);
  font-size: 0.95rem;
}
.pli-code strong {
  color: var(--brand-ink);
  font-weight: 600;
}

.pli-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pli-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 50rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}
.pli-btn-primary {
  background: var(--brand-primary);
  color: #fff !important;
}
.pli-btn-primary:hover {
  background: #0a5530;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(13, 107, 58, 0.30);
}
.pli-btn-amber {
  background: var(--brand-secondary);
  color: #fff !important;
}
.pli-btn-amber:hover {
  background: #d97706;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(245, 158, 11, 0.35);
}

/* Responsive: stack on mobile */
@media (max-width: 767px) {
  .product-list-item {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .pli-img-wrap {
    aspect-ratio: 16 / 10;
    border-right: 0;
    border-bottom: 1px solid rgba(13, 107, 58, 0.06);
  }
  .pli-img-wrap img { padding: 24px; }
  .pli-body { padding: 20px; }
  .pli-head { flex-direction: column; gap: 10px; }
  .pli-title { font-size: 1.1rem; }
  .pli-actions .pli-btn { flex: 1; justify-content: center; min-width: 140px; }
  .products-banner .banner-trust { gap: 14px; }
  .products-banner .banner-trust span { font-size: 0.78rem; }
}
@media (min-width: 1200px) {
  .product-list-item { grid-template-columns: 280px 1fr; }
}

/* ============================================
   PRODUCT DETAIL PAGE — REDESIGNED + SEO SECTIONS
   ============================================ */

.detail-page { padding: 50px 0 70px; background: #ffffff; }

/* Product image frame */
.detail-img-frame {
  position: relative;
  background: #fff;
  border: 1px solid rgba(13, 107, 58, 0.10);
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(15, 29, 46, 0.07);
  overflow: hidden;
  transition: box-shadow 0.35s ease;
}
.detail-img-frame:hover {
  box-shadow: 0 14px 40px rgba(15, 29, 46, 0.12);
}
.detail-img-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.detail-img-frame:hover img { transform: scale(1.04); }
.detail-img-frame .img-badge {
  position: absolute;
  top: 16px; left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--brand-secondary), #d97706);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50rem;
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.30);
}

/* Trust row under image */
.detail-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}
.dt-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #f7faf8;
  border: 1px solid rgba(13, 107, 58, 0.08);
  border-radius: 12px;
  transition: all 0.25s ease;
}
.dt-trust:hover {
  background: #fff;
  border-color: rgba(245, 158, 11, 0.30);
  transform: translateY(-2px);
}
.dt-trust i {
  font-size: 1.4rem;
  color: var(--brand-primary);
  flex-shrink: 0;
}
.dt-trust div { display: flex; flex-direction: column; line-height: 1.2; }
.dt-trust strong {
  font-size: 0.78rem;
  font-family: var(--font-display);
  color: var(--brand-ink);
  font-weight: 700;
}
.dt-trust span {
  font-size: 0.68rem;
  color: #6b7280;
  margin-top: 2px;
}

/* Product info box */
.product-dt-box {
  background: linear-gradient(135deg, #f7faf8 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 26px 28px;
  border: 1px solid rgba(13, 107, 58, 0.08);
  margin-bottom: 24px;
}
.product-dt-box .dtsubhead {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--brand-ink);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.product-dt-box .procode-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--brand-ink);
  border: 1px solid rgba(13, 107, 58, 0.10);
  font-family: var(--font-body);
}
.product-dt-box .procode-box i {
  color: var(--brand-primary);
  font-size: 1rem;
}
.product-dt-box .procode-box strong { color: var(--brand-primary); font-weight: 600; }

.dt-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed rgba(13, 107, 58, 0.15);
}
.dt-price-label {
  font-size: 0.78rem;
  color: #6b7280;
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.dt-price-value {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand-secondary), #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Description & spec blocks */
.dt-content { padding: 20px 0; }
.dt-h {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand-ink);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(13, 107, 58, 0.12);
  letter-spacing: -0.005em;
}
.dt-h i {
  color: var(--brand-primary);
  font-size: 1.2rem;
}
.dt-content p,
.dt-spec {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
}
.dt-spec ul, .dt-spec ol { padding-left: 20px; }
.dt-spec li { margin-bottom: 6px; }
.dt-spec strong { color: var(--brand-ink); }

/* Action buttons row */
.btn-details {
  margin: 24px 0;
}
.btn-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.btn-details .btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  border-radius: 50rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-details .addbtn {
  background: linear-gradient(135deg, var(--brand-secondary), #d97706);
  color: #fff;
  box-shadow: 0 8px 18px rgba(245, 158, 11, 0.32);
}
.btn-details .addbtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.45);
  color: #fff;
}
.btn-details .quick_view {
  background: var(--brand-primary);
  color: #fff;
}
.btn-details .quick_view:hover {
  background: #0a5530;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(13, 107, 58, 0.30);
}
.btn-details .prints {
  background: #fff;
  color: var(--brand-ink);
  border: 2px solid rgba(13, 107, 58, 0.15);
}
.btn-details .prints:hover {
  background: var(--brand-ink);
  color: #fff;
  border-color: var(--brand-ink);
  transform: translateY(-2px);
}

/* Meta rows (categories, tags, supplier) */
.dt-meta {
  padding-top: 20px;
  border-top: 1px solid rgba(13, 107, 58, 0.08);
}
.dt-meta-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.6;
}
.dt-meta-row i {
  color: var(--brand-primary);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.dt-meta-row strong { color: var(--brand-ink); font-weight: 600; margin-right: 4px; }
.dt-meta-row a { color: var(--brand-primary); text-decoration: none; }
.dt-meta-row a:hover { color: var(--brand-secondary); }
.dt-tags-row { flex-wrap: wrap; }
.dt-tags-row .badge {
  background: rgba(13, 107, 58, 0.08) !important;
  color: var(--brand-primary) !important;
  font-weight: 500;
  font-family: var(--font-body);
  padding: 6px 12px;
  border-radius: 50rem;
  text-decoration: none;
  margin: 0 4px 4px 0;
  transition: all 0.2s ease;
}
.dt-tags-row .badge:hover {
  background: var(--brand-primary) !important;
  color: #fff !important;
}

/* ============================================
   SEO SECTION 1: Why Buy from India's Leading Manufacturer
   ============================================ */
.dt-why-buy {
  padding: 70px 0;
  background: linear-gradient(180deg, #f7faf8 0%, #ffffff 100%);
}
.dt-why-buy .section-header { margin-bottom: 40px; }
.dt-why-buy .section-lead {
  max-width: 760px;
  margin: 14px auto 0;
  font-size: 1rem;
  color: #566174;
  line-height: 1.65;
}

.dt-why-card {
  background: #fff;
  border: 1px solid rgba(13, 107, 58, 0.08);
  border-radius: 16px;
  padding: 26px 22px;
  height: 100%;
  text-align: left;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 29, 46, 0.04);
}
.dt-why-card::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.dt-why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.30);
  box-shadow: 0 14px 36px rgba(15, 29, 46, 0.10);
}
.dt-why-card:hover::before { transform: scaleX(1); }

.dt-why-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #0a5530 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 16px;
  box-shadow: 0 6px 14px rgba(13, 107, 58, 0.22);
  transition: transform 0.35s ease;
}
.dt-why-card:hover .dt-why-icon {
  transform: rotate(-6deg) scale(1.06);
  background: linear-gradient(135deg, var(--brand-secondary) 0%, #d97706 100%);
}
.dt-why-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-ink);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.dt-why-card p {
  color: #566174;
  font-size: 0.86rem;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   SEO SECTION 2: Bulk Supply & Export Info
   ============================================ */
.dt-bulk-supply {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--brand-ink) 0%, #1a2d44 100%);
  position: relative;
  overflow: hidden;
}
.dt-bulk-supply::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.16) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.dt-bulk-supply::after {
  content: "";
  position: absolute;
  bottom: -100px; left: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(13, 107, 58, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.dt-bulk-supply .container { position: relative; z-index: 1; }
.dt-bulk-supply .section-eyebrow.eyebrow-light {
  color: var(--brand-secondary);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
}
.dt-bulk-supply .text-white-75 {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  line-height: 1.7;
  margin: 16px 0 24px;
}
.dt-bulk-supply .text-white-75 strong { color: var(--brand-secondary); }

.dt-bulk-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.dt-bulk-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  color: rgba(255,255,255,0.88);
  font-size: 0.93rem;
  line-height: 1.55;
}
.dt-bulk-list li i {
  color: var(--brand-secondary);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.dt-bulk-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.dt-bulk-cta .btn-cta-primary,
.dt-bulk-cta .btn-cta-ghost {
  padding: 12px 22px;
  border-radius: 50rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.25s ease;
}
.dt-bulk-cta .btn-cta-primary {
  background: var(--brand-secondary);
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(245, 158, 11, 0.30);
}
.dt-bulk-cta .btn-cta-primary:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.45);
}
.dt-bulk-cta .btn-cta-ghost {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.40);
}
.dt-bulk-cta .btn-cta-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Stats grid right side */
.dt-bulk-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.dt-stat-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
}
.dt-stat-card:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(245, 158, 11, 0.45);
  transform: translateY(-3px);
}
.dt-stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand-secondary), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.dt-stat-lbl {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.80);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ============================================
   Related Products — SEO-enhanced
   ============================================ */
.dt-related {
  padding: 70px 0;
  background: #f7faf8;
}
.dt-related .section-header {
  text-align: center;
  margin-bottom: 40px;
}
.dt-related .section-lead {
  max-width: 800px;
  margin: 14px auto 0;
  color: #566174;
  font-size: 0.98rem;
  line-height: 1.65;
}
.dt-related .section-lead strong { color: var(--brand-ink); }

.dt-rel-card .body { padding: 18px 18px 20px; }
.dt-rel-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
}
.dt-rel-title a {
  color: var(--brand-ink);
  text-decoration: none;
}
.dt-rel-title a:hover { color: var(--brand-primary); }

.dt-rel-code {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: #566174;
  background: rgba(13, 107, 58, 0.06);
  padding: 4px 10px;
  border-radius: 50rem;
  margin-bottom: 10px;
  font-family: var(--font-body);
}
.dt-rel-code i { color: var(--brand-primary); font-size: 0.85rem; }

.dt-rel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.dt-rel-tags span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--brand-primary);
  font-family: var(--font-display);
  font-weight: 500;
}
.dt-rel-tags i { font-size: 0.8rem; color: var(--brand-secondary); }

/* Related footer cross-link */
.dt-related-footer {
  margin-top: 40px;
  padding: 30px 36px;
  background: #fff;
  border: 1px solid rgba(13, 107, 58, 0.08);
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(15, 29, 46, 0.04);
}
.dt-related-footer p {
  color: #566174;
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 auto 20px;
  max-width: 760px;
}
.dt-related-footer strong { color: var(--brand-ink); }
.dt-related-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.dt-rel-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #f7faf8;
  border: 1px solid rgba(13, 107, 58, 0.10);
  border-radius: 50rem;
  color: var(--brand-ink);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.86rem;
  text-decoration: none;
  transition: all 0.25s ease;
}
.dt-rel-pill i {
  color: var(--brand-primary);
  font-size: 1rem;
}
.dt-rel-pill:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(13, 107, 58, 0.25);
}
.dt-rel-pill:hover i { color: var(--brand-secondary); }

/* Responsive */
@media (max-width: 991px) {
  .detail-img-frame { padding: 28px; }
  .product-dt-box .dtsubhead { font-size: 1.5rem; }
  .dt-bulk-stats { grid-template-columns: repeat(2, 1fr); margin-top: 30px; }
  .dt-stat-num { font-size: 2rem; }
}
@media (max-width: 575px) {
  .detail-page { padding: 30px 0 50px; }
  .detail-img-frame { padding: 20px; border-radius: 14px; }
  .product-dt-box { padding: 20px; }
  .product-dt-box .dtsubhead { font-size: 1.3rem; }
  .detail-trust-row { grid-template-columns: 1fr; }
  .btn-details ul { flex-direction: column; }
  .btn-details .btn { width: 100%; justify-content: center; }
  .dt-why-buy { padding: 50px 0; }
  .dt-bulk-supply { padding: 50px 0; }
  .dt-related { padding: 50px 0; }
  .dt-bulk-stats { gap: 10px; }
  .dt-stat-card { padding: 20px 14px; }
  .dt-stat-num { font-size: 1.7rem; }
  .dt-related-footer { padding: 24px 18px; }
}

/* ============================================
   SHOPPING CART PAGE — REDESIGNED
   ============================================ */
.cart-section {
  padding: 50px 0 70px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
}

/* Progress stepper */
.cart-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
  padding: 22px 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(13, 107, 58, 0.08);
  box-shadow: 0 4px 18px rgba(15, 29, 46, 0.04);
}
.cart-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 110px;
}
.cart-step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f3f0;
  color: #94a3b8;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.cart-step-lbl {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  color: #94a3b8;
  text-align: center;
  letter-spacing: 0.03em;
}
.cart-step.active .cart-step-num {
  background: linear-gradient(135deg, var(--brand-primary), #0a5530);
  color: #fff;
  box-shadow: 0 6px 14px rgba(13, 107, 58, 0.30);
}
.cart-step.active .cart-step-lbl {
  color: var(--brand-ink);
  font-weight: 600;
}
.cart-step-bar {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-primary) 0%, #e2e8f0 50%);
  margin: 0 4px;
  max-width: 80px;
  margin-top: -18px;
}

/* Cart card */
.cart-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(15, 29, 46, 0.06);
  border: 1px solid rgba(13, 107, 58, 0.08);
  overflow: hidden;
  margin-bottom: 28px;
}
.cart-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 28px;
  background: linear-gradient(135deg, #f7faf8 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(13, 107, 58, 0.08);
}
.cart-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brand-ink);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
}
.cart-title i { color: var(--brand-primary); }
.cart-subtitle {
  margin: 0;
  font-size: 0.86rem;
  color: #566174;
}
.cart-head-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Cart form & table */
.cart-form { padding: 0; }
.cart-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.cart-table thead th {
  background: #f4f7f5;
  padding: 14px 18px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-ink);
  border-bottom: 2px solid rgba(13, 107, 58, 0.10);
}
.cart-table thead .th-remove { width: 70px; text-align: center; }
.cart-table thead .th-remove i { color: #dc3545; font-size: 1.05rem; }
.cart-table thead .th-code { width: 200px; }
.cart-table thead .th-qty { width: 130px; text-align: center; }

.cart-row td {
  padding: 18px 18px;
  border-bottom: 1px solid rgba(13, 107, 58, 0.06);
  vertical-align: middle;
  background: #fff;
  transition: background 0.2s ease;
}
.cart-row:hover td { background: #fafcfb; }
.cart-row:last-child td { border-bottom: 0; }

.td-remove { text-align: center; }

/* Custom checkbox for remove */
.cart-checkbox {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 32px; height: 32px;
}
.cart-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 100%; height: 100%;
}
.cart-check-mark {
  width: 28px; height: 28px;
  border: 2px solid rgba(13, 107, 58, 0.20);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: all 0.25s ease;
}
.cart-check-mark i {
  color: transparent;
  font-size: 0.85rem;
  font-weight: 700;
  transition: color 0.2s ease;
}
.cart-checkbox:hover .cart-check-mark {
  border-color: #dc3545;
}
.cart-checkbox:hover .cart-check-mark i {
  color: rgba(220, 53, 69, 0.5);
}
.cart-checkbox input:checked + .cart-check-mark {
  background: #dc3545;
  border-color: #dc3545;
}
.cart-checkbox input:checked + .cart-check-mark i {
  color: #fff;
}

/* Code pill */
.cart-code-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  background: rgba(13, 107, 58, 0.08);
  color: var(--brand-primary);
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
}
.cart-code-pill i { font-size: 0.95rem; }

.cart-prod-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--brand-ink);
  line-height: 1.4;
}

/* Qty input */
.cart-qty-wrap {
  display: flex;
  justify-content: center;
}
.cart-qty-input {
  width: 90px;
  padding: 8px 10px;
  border: 1.5px solid rgba(13, 107, 58, 0.18);
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  text-align: center;
  color: var(--brand-ink);
  background: #fff;
  transition: all 0.2s ease;
}
.cart-qty-input:focus {
  outline: 0;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(13, 107, 58, 0.10);
}

/* Action bar */
.cart-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 22px 28px;
  background: #f7faf8;
  border-top: 1px solid rgba(13, 107, 58, 0.08);
}

.btn-cart {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  border-radius: 50rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-cart-primary {
  background: linear-gradient(135deg, var(--brand-secondary), #d97706);
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(245, 158, 11, 0.32);
}
.btn-cart-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.45);
  color: #fff !important;
}
.btn-cart-secondary {
  background: var(--brand-primary);
  color: #fff !important;
}
.btn-cart-secondary:hover {
  background: #0a5530;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(13, 107, 58, 0.30);
}
.btn-cart-ghost {
  background: #fff;
  color: var(--brand-ink) !important;
  border: 2px solid rgba(13, 107, 58, 0.15);
}
.btn-cart-ghost:hover {
  background: var(--brand-ink);
  color: #fff !important;
  border-color: var(--brand-ink);
  transform: translateY(-2px);
}

/* Trust info row */
.cart-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.cart-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid rgba(13, 107, 58, 0.08);
  border-radius: 14px;
  transition: all 0.25s ease;
}
.cart-trust-item:hover {
  border-color: rgba(245, 158, 11, 0.30);
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(15, 29, 46, 0.06);
}
.cart-trust-item > i {
  font-size: 1.6rem;
  color: var(--brand-primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.cart-trust-item > div { display: flex; flex-direction: column; }
.cart-trust-item strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--brand-ink);
  margin-bottom: 2px;
}
.cart-trust-item span {
  font-size: 0.78rem;
  color: #566174;
  line-height: 1.45;
}

/* Empty cart */
.cart-empty {
  background: #fff;
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  border: 1px solid rgba(13, 107, 58, 0.08);
  box-shadow: 0 8px 30px rgba(15, 29, 46, 0.05);
  margin-bottom: 28px;
}
.cart-empty-icon {
  width: 100px; height: 100px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(13, 107, 58, 0.10) 0%, rgba(245, 158, 11, 0.10) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-empty-icon i {
  font-size: 3rem;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cart-empty h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.cart-empty p {
  color: #566174;
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0 auto 26px;
  max-width: 560px;
}
.cart-empty p strong { color: var(--brand-ink); }
.cart-empty p em { color: var(--brand-secondary); font-style: normal; font-weight: 600; }
.cart-empty-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* Suggest strip */
.cart-suggest {
  background: #fff;
  border-radius: 18px;
  padding: 30px 32px;
  border: 1px solid rgba(13, 107, 58, 0.08);
  box-shadow: 0 4px 18px rgba(15, 29, 46, 0.04);
}
.cart-suggest h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-ink);
  margin-bottom: 18px;
  letter-spacing: -0.005em;
}
.cart-suggest-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cart-suggest-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #f7faf8;
  border: 1px solid rgba(13, 107, 58, 0.10);
  border-radius: 50rem;
  color: var(--brand-ink);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.86rem;
  text-decoration: none;
  transition: all 0.25s ease;
}
.cart-suggest-pill i {
  color: var(--brand-primary);
  font-size: 0.98rem;
}
.cart-suggest-pill:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(13, 107, 58, 0.25);
}
.cart-suggest-pill:hover i { color: var(--brand-secondary); }

/* Responsive */
@media (max-width: 991px) {
  .cart-trust-row { grid-template-columns: 1fr; }
  .cart-progress { padding: 18px 16px; }
  .cart-step { min-width: 80px; }
  .cart-step-lbl { font-size: 0.7rem; }
}
@media (max-width: 767px) {
  .cart-section { padding: 30px 0 50px; }
  .cart-card-head { padding: 20px; flex-direction: column; align-items: flex-start; }
  .cart-actions { padding: 18px 20px; flex-direction: column; align-items: stretch; }
  .cart-actions .btn-cart { justify-content: center; width: 100%; margin: 0; }
  .cart-actions .ms-lg-auto { margin: 0 !important; }

  /* Table → card layout on mobile */
  .cart-table thead { display: none; }
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td {
    display: block;
    width: 100%;
  }
  .cart-row {
    border: 1px solid rgba(13, 107, 58, 0.10);
    border-radius: 12px;
    margin: 16px 18px;
    padding: 14px;
    background: #fff;
  }
  .cart-row td {
    border-bottom: 0 !important;
    padding: 6px 0;
    background: transparent !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .cart-row td::before {
    content: attr(data-label);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .td-name { flex-direction: column; align-items: flex-start; }
  .td-name::before { margin-bottom: 4px; }
  .cart-empty { padding: 40px 20px; }
  .cart-empty-icon { width: 80px; height: 80px; }
  .cart-empty-icon i { font-size: 2.4rem; }
  .cart-empty h2 { font-size: 1.25rem; }
  .cart-suggest { padding: 24px 18px; }
}

/* ============================================
   CMS Content Block (used by moetenders.php)
   ============================================ */
.cms-block .cms-block-inner {
  background: #fff;
  border-radius: 18px;
  padding: 40px 44px;
  border: 1px solid rgba(13, 107, 58, 0.08);
  box-shadow: 0 4px 18px rgba(15, 29, 46, 0.05);
  font-size: 1rem;
  line-height: 1.75;
  color: #475569;
}
.cms-block-inner h1,
.cms-block-inner h2,
.cms-block-inner h3,
.cms-block-inner h4 {
  font-family: var(--font-display);
  color: var(--brand-ink);
  margin-top: 1.5em;
  margin-bottom: 0.6em;
  letter-spacing: -0.01em;
}
.cms-block-inner h1:first-child,
.cms-block-inner h2:first-child,
.cms-block-inner h3:first-child { margin-top: 0; }
.cms-block-inner h2 { font-size: 1.5rem; }
.cms-block-inner h3 { font-size: 1.2rem; color: var(--brand-primary); }
.cms-block-inner p { margin-bottom: 1em; }
.cms-block-inner ul, .cms-block-inner ol { padding-left: 22px; margin-bottom: 1em; }
.cms-block-inner li { margin-bottom: 6px; }
.cms-block-inner strong { color: var(--brand-ink); }
.cms-block-inner a { color: var(--brand-primary); text-decoration: underline; }
.cms-block-inner a:hover { color: var(--brand-secondary); }
.cms-block-inner img { max-width: 100%; height: auto; border-radius: 12px; margin: 1em 0; }

@media (max-width: 575px) {
  .cms-block .cms-block-inner { padding: 28px 22px; border-radius: 14px; }
}

/* ============================================
   ARTICLES LISTING PAGE
   ============================================ */
.articles-listing {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
}
.articles-listing .section-header { margin-bottom: 48px; }
.articles-listing .section-lead {
  max-width: 780px;
  margin: 14px auto 0;
  color: #566174;
  font-size: 1rem;
  line-height: 1.65;
}

.articles-grid { margin-bottom: 48px; }

.article-card {
  background: #fff;
  border: 1px solid rgba(13, 107, 58, 0.08);
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 4px 16px rgba(15, 29, 46, 0.04);
}
.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 38px rgba(15, 29, 46, 0.10);
  border-color: rgba(245, 158, 11, 0.30);
}

/* Image */
.ac-img-wrap {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f0f3f0;
}
.ac-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.article-card:hover .ac-img-wrap img { transform: scale(1.08); }

/* Date badge */
.ac-date-badge {
  position: absolute;
  top: 14px; left: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, var(--brand-secondary), #d97706);
  color: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(245, 158, 11, 0.32);
  font-family: var(--font-display);
  line-height: 1;
  min-width: 56px;
}
.ac-date-badge strong {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.ac-date-badge span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
  opacity: 0.95;
}

/* Body */
.ac-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ac-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.78rem;
  color: #566174;
}
.ac-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-weight: 500;
}
.ac-meta i {
  color: var(--brand-primary);
  font-size: 0.88rem;
}

.ac-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--brand-ink);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ac-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.ac-title a:hover { color: var(--brand-primary); }

.ac-brief {
  color: #566174;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0 0 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.ac-read-more {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--brand-primary);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
  margin-top: auto;
  align-self: flex-start;
}
.ac-read-more i { transition: transform 0.25s ease; }
.ac-read-more:hover {
  color: var(--brand-secondary);
}
.ac-read-more:hover i { transform: translateX(4px); }

/* Empty state */
.articles-empty {
  background: #fff;
  border-radius: 20px;
  padding: 60px 40px;
  border: 1px solid rgba(13, 107, 58, 0.08);
  box-shadow: 0 4px 18px rgba(15, 29, 46, 0.04);
}
.articles-empty .ae-icon {
  width: 90px; height: 90px;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, rgba(13, 107, 58, 0.10), rgba(245, 158, 11, 0.10));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.articles-empty .ae-icon i {
  font-size: 2.6rem;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.articles-empty h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--brand-ink);
  margin-bottom: 12px;
}
.articles-empty p {
  color: #566174;
  max-width: 540px;
  margin: 0 auto 22px;
  line-height: 1.6;
}

/* SEO footer */
.articles-seo-footer {
  background: #fff;
  border: 1px solid rgba(13, 107, 58, 0.08);
  border-radius: 18px;
  padding: 32px 36px;
  text-align: center;
  margin-top: 20px;
  box-shadow: 0 4px 16px rgba(15, 29, 46, 0.04);
}
.articles-seo-footer p {
  color: #566174;
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 760px;
  margin: 0 auto 20px;
}
.articles-seo-footer strong { color: var(--brand-ink); }

@media (max-width: 575px) {
  .articles-listing { padding: 40px 0 60px; }
  .articles-empty { padding: 40px 22px; }
  .articles-seo-footer { padding: 24px 18px; border-radius: 14px; }
}

/* ============================================
   ARTICLE DETAIL PAGE
   ============================================ */
.article-detail-section {
  padding: 50px 0 70px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
}

/* Banner-specific tweaks */
.article-banner-eyebrow {
  display: inline-flex;
  align-items: center;
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.45);
  color: #fde68a;
  padding: 6px 14px;
  border-radius: 50rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.article-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 800;
  color: #fff !important;
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto 16px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.article-banner-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-family: var(--font-display);
  font-weight: 500;
}
.article-banner-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.article-banner-meta i { color: var(--brand-secondary); font-size: 1rem; }

/* Article card */
.article-detail-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(15, 29, 46, 0.07);
  border: 1px solid rgba(13, 107, 58, 0.08);
  margin-bottom: 24px;
}

.ad-feature-img {
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: #f0f3f0;
}
.ad-feature-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.ad-body { padding: 40px 48px 32px; }

.ad-header { margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px solid rgba(13, 107, 58, 0.08); }
.ad-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand-ink);
  line-height: 1.25;
  margin: 0 0 16px;
  letter-spacing: -0.015em;
}
.ad-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.84rem;
  color: #566174;
}
.ad-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 500;
}
.ad-meta-item i {
  color: var(--brand-primary);
  font-size: 0.95rem;
}

/* Article body content — applies to whatever HTML the CMS produces */
.ad-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #475569;
}
.ad-content > *:first-child { margin-top: 0; }
.ad-content > *:last-child { margin-bottom: 0; }
.ad-content h1,
.ad-content h2,
.ad-content h3,
.ad-content h4,
.ad-content h5,
.ad-content h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand-ink);
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.ad-content h2 { font-size: 1.4rem; color: var(--brand-primary); }
.ad-content h3 { font-size: 1.2rem; }
.ad-content h4 { font-size: 1.05rem; }
.ad-content p { margin-bottom: 1.1em; }
.ad-content ul, .ad-content ol { padding-left: 22px; margin-bottom: 1.1em; }
.ad-content li { margin-bottom: 6px; }
.ad-content strong { color: var(--brand-ink); }
.ad-content a { color: var(--brand-primary); text-decoration: underline; }
.ad-content a:hover { color: var(--brand-secondary); }
.ad-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1.4em 0;
  display: block;
}
.ad-content blockquote {
  border-left: 4px solid var(--brand-secondary);
  background: rgba(245, 158, 11, 0.05);
  padding: 18px 24px;
  margin: 1.6em 0;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--brand-ink);
}
.ad-content table {
  width: 100%;
  margin: 1.4em 0;
  border-collapse: collapse;
  border: 1px solid rgba(13, 107, 58, 0.10);
  border-radius: 10px;
  overflow: hidden;
}
.ad-content table th, .ad-content table td {
  padding: 10px 14px;
  border: 1px solid rgba(13, 107, 58, 0.10);
  text-align: left;
}
.ad-content table th {
  background: rgba(13, 107, 58, 0.08);
  font-family: var(--font-display);
  color: var(--brand-ink);
}

/* Share row */
.ad-share {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(13, 107, 58, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.ad-share-label {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--brand-ink);
  font-size: 0.9rem;
}
.ad-share-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.ad-share-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.ad-share-btn:hover {
  transform: translateY(-3px) scale(1.06);
  color: #fff !important;
}
.ad-fb { background: #1877f2; }
.ad-tw { background: #0f1419; }
.ad-li { background: #0a66c2; }
.ad-wa { background: #25d366; }
.ad-em { background: var(--brand-primary); }

/* Inline CTA after article */
.ad-cta {
  background: linear-gradient(135deg, var(--brand-ink) 0%, #1a2d44 100%);
  border-radius: 20px;
  padding: 36px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ad-cta::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.20) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.ad-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.ad-cta h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: #fff !important;
}
.ad-cta p {
  color: rgba(255,255,255,0.78);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 500px;
}
.ad-cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.ad-cta-actions .btn-cart-ghost {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.40);
}
.ad-cta-actions .btn-cart-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff !important;
}

/* ============================================
   ARTICLE SIDEBAR (article-left.php)
   ============================================ */
.article-sidebar {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.as-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(15, 29, 46, 0.05);
  border: 1px solid rgba(13, 107, 58, 0.08);
}
.as-card-head {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #0a5530 100%);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.as-card-head i {
  color: var(--brand-secondary);
  font-size: 1.2rem;
}
.as-card-head h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #fff !important;
  margin: 0;
  letter-spacing: 0.02em;
}

.as-articles-list { padding: 8px 0; }
.as-articles-list ul { margin: 0; padding: 0; }
.as-articles-list li {
  border-bottom: 1px solid rgba(13, 107, 58, 0.06);
}
.as-articles-list li:last-child { border-bottom: 0; }
.as-articles-list li a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--brand-ink);
  text-decoration: none;
  line-height: 1.45;
  transition: all 0.2s ease;
}
.as-articles-list li a i {
  color: var(--brand-secondary);
  font-size: 0.78rem;
  margin-top: 4px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.as-articles-list li a:hover {
  color: var(--brand-primary);
  background: rgba(13, 107, 58, 0.04);
  padding-left: 24px;
}
.as-articles-list li a:hover i { transform: translateX(3px); }
.as-articles-list li.active > a {
  color: var(--brand-primary);
  font-weight: 600;
  background: rgba(13, 107, 58, 0.06);
}

/* CTA card */
.as-cta-card {
  background: linear-gradient(135deg, var(--brand-ink) 0%, #1a2d44 100%);
  border-radius: 16px;
  padding: 26px 22px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.as-cta-card::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.as-cta-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--brand-secondary), #d97706);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin: 0 auto 14px;
  box-shadow: 0 6px 14px rgba(245, 158, 11, 0.30);
  position: relative;
  z-index: 1;
}
.as-cta-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff !important;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.as-cta-card p {
  color: rgba(255,255,255,0.78);
  font-size: 0.84rem;
  line-height: 1.55;
  margin: 0 0 16px;
  position: relative;
  z-index: 1;
}
.as-cta-link {
  display: inline-flex;
  align-items: center;
  color: var(--brand-secondary) !important;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.86rem;
  text-decoration: none;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.as-cta-link:hover { color: #fbbf24 !important; }
.as-cta-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 4px 0 14px;
  position: relative;
  z-index: 1;
}
.as-cta-pill {
  display: block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff !important;
  padding: 9px 14px;
  border-radius: 50rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.82rem;
  text-decoration: none;
  margin-bottom: 8px;
  transition: all 0.25s ease;
  position: relative;
  z-index: 1;
}
.as-cta-pill:last-child { margin-bottom: 0; }
.as-cta-pill:hover {
  background: var(--brand-secondary);
  border-color: var(--brand-secondary);
  color: #fff !important;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
  .article-sidebar { position: static; }
  .ad-body { padding: 30px 28px; }
  .ad-title { font-size: 1.5rem; }
  .ad-cta { padding: 28px 26px; }
  .ad-cta-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 575px) {
  .article-detail-section { padding: 30px 0 50px; }
  .ad-body { padding: 24px 20px; }
  .ad-title { font-size: 1.3rem; }
  .ad-feature-img { aspect-ratio: 16 / 10; }
  .ad-share { gap: 12px; }
  .ad-cta { padding: 24px 20px; border-radius: 14px; }
  .ad-cta h3 { font-size: 1.15rem; }
  .as-card-head { padding: 14px 16px; }
  .as-articles-list li a { padding: 10px 16px; font-size: 0.84rem; }
}

/* ============================================
   MOE TENDERS PAGE — ADDITIONAL STYLES
   ============================================ */

/* Intro inline CTA buttons */
.cta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* Documentation column titles */
.docs-col-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-ink);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(13, 107, 58, 0.12);
  display: flex;
  align-items: center;
}
.docs-col-title i {
  color: var(--brand-primary);
  font-size: 1.3rem;
}

/* Region card — tag chip addition */
.region-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 12px;
  font-size: 0.7rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: rgba(13, 107, 58, 0.08);
  border-radius: 50rem;
}

/* Popular pills (tender BoQ categories) */
.popular-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
}
.popular-pills a {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid rgba(13, 107, 58, 0.10);
  border-radius: 50rem;
  color: var(--brand-ink);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.25s ease;
}
.popular-pills a::before {
  content: "\F26A";
  font-family: "bootstrap-icons";
  color: var(--brand-secondary);
  margin-right: 6px;
  font-size: 0.9rem;
}
.popular-pills a:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(13, 107, 58, 0.25);
}
.popular-pills a:hover::before { color: #fbbf24; }

/* Tender process timeline (numbered steps) */
.tender-process {
  background: linear-gradient(135deg, #f7faf8 0%, #ffffff 100%);
}
.tender-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
}
.tender-steps::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
  opacity: 0.25;
  z-index: 0;
}
.tstep {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 22px 16px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(13, 107, 58, 0.08);
  box-shadow: 0 6px 18px rgba(15, 29, 46, 0.05);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.tstep:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.30);
  box-shadow: 0 14px 30px rgba(15, 29, 46, 0.10);
}
.tstep-num {
  width: 62px; height: 62px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #0a5530 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0 auto 14px;
  box-shadow: 0 8px 18px rgba(13, 107, 58, 0.28);
  border: 4px solid #fff;
  transition: all 0.35s ease;
}
.tstep:hover .tstep-num {
  background: linear-gradient(135deg, var(--brand-secondary) 0%, #d97706 100%);
  transform: scale(1.06);
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.35);
}
.tstep-body h4 {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--brand-ink);
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.tstep-body p {
  font-size: 0.82rem;
  color: #566174;
  line-height: 1.55;
  margin: 0;
}

/* SEO long-form content article */
.seo-content {
  background: #fff;
  border-radius: 18px;
  padding: 40px 44px;
  border: 1px solid rgba(13, 107, 58, 0.08);
  box-shadow: 0 4px 18px rgba(15, 29, 46, 0.05);
}
.seo-content h2,
.seo-content h3 {
  font-family: var(--font-display);
  color: var(--brand-ink);
  letter-spacing: -0.01em;
}
.seo-content p {
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 1.1em;
}
.seo-content p:last-child { margin-bottom: 0; }
.seo-content strong { color: var(--brand-ink); }

/* Responsive */
@media (max-width: 991px) {
  .tender-steps { grid-template-columns: repeat(2, 1fr); }
  .tender-steps::before { display: none; }
  .seo-content { padding: 32px 28px; }
}
@media (max-width: 575px) {
  .tender-steps { grid-template-columns: 1fr; gap: 14px; }
  .tstep { padding: 18px 14px; }
  .tstep-num { width: 52px; height: 52px; font-size: 1.1rem; }
  .seo-content { padding: 24px 20px; border-radius: 14px; }
  .seo-content p { font-size: 0.92rem; }
  .popular-pills a { font-size: 0.78rem; padding: 8px 14px; }
  .docs-col-title { font-size: 1.05rem; }
}

/* ============================================
   GENERIC UTILITIES — used by moetenders.php
   (and any future static SEO pages)
   ============================================ */

/* Section padding utility */
.section-pad {
  padding: 70px 0;
}
@media (max-width: 767px) {
  .section-pad { padding: 50px 0; }
}

/* Soft background utility */
.bg-soft {
  background: linear-gradient(180deg, #f7faf8 0%, #ffffff 100%);
}

/* Eyebrow (alternate, used by moetenders without 'section-' prefix) */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-secondary);
}

/* Section sub-text (under section titles) */
.section-sub {
  max-width: 720px;
  margin: 14px auto 0;
  color: #566174;
  font-size: 0.98rem;
  line-height: 1.65;
  text-align: center;
}

/* Lead text — slightly bigger paragraph copy at intro of sections */
p.lead-text,
.lead-text {
  font-size: 1.08rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 1em;
}
.lead-text strong { color: var(--brand-ink); }

/* Why-card icon variant (.why-icon) — extends existing .why-card */
.why-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #0a5530 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(13, 107, 58, 0.22);
  transition: transform 0.35s ease, background 0.35s ease;
}
.why-card:hover .why-icon {
  transform: rotate(-6deg) scale(1.06);
  background: linear-gradient(135deg, var(--brand-secondary) 0%, #d97706 100%);
}

/* Why-title variant */
.why-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-ink);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}

/* ============================================
   NAVBAR MEGA-MENU DROPDOWN
   (used for "School Lab Equipments" in header.php)
   ============================================ */

/* Dropdown toggle styling — keep visual parity with other nav links */
.main-navbar .nav-mega .nav-link.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.main-navbar .nav-mega .nav-link.dropdown-toggle::after {
  border: 0;
  content: "\F282"; /* Bootstrap Icon: chevron-down */
  font-family: "bootstrap-icons";
  vertical-align: 0;
  margin-left: 4px;
  font-size: 0.72rem;
  transition: transform 0.25s ease;
  opacity: 0.7;
}
.main-navbar .nav-mega.show .nav-link.dropdown-toggle::after,
.main-navbar .nav-mega:hover .nav-link.dropdown-toggle::after {
  transform: rotate(180deg);
  opacity: 1;
}

/* Mega menu panel */
.main-navbar .mega-menu {
  background: #fff;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(15, 29, 46, 0.18), 0 0 0 1px rgba(13, 107, 58, 0.06);
  padding: 0;
  margin-top: 8px;
  min-width: 720px;
  max-width: 880px;
  overflow: hidden;
  animation: megaFade 0.2s ease-out;
}
@keyframes megaFade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Header strip */
.main-navbar .mega-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 26px;
  background: linear-gradient(135deg, #f7faf8 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(13, 107, 58, 0.08);
}
.mega-title {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--brand-ink);
  margin: 0 0 4px;
  letter-spacing: -0.005em;
}
.mega-sub {
  font-size: 0.78rem;
  color: #566174;
  margin: 0;
  line-height: 1.45;
}
.mega-viewall {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--brand-secondary), #d97706);
  color: #fff !important;
  border-radius: 50rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(245, 158, 11, 0.30);
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.mega-viewall:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.40);
  color: #fff !important;
}

/* Grid of category links */
.main-navbar .mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 14px 14px;
  background: #fff;
}
.main-navbar .mega-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--brand-ink);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  line-height: 1.35;
}
.main-navbar .mega-link i {
  color: var(--brand-secondary);
  font-size: 0.72rem;
  flex-shrink: 0;
  opacity: 0.7;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.main-navbar .mega-link span {
  flex: 1;
}
.main-navbar .mega-link:hover {
  background: rgba(13, 107, 58, 0.06);
  color: var(--brand-primary);
}
.main-navbar .mega-link:hover i {
  transform: translateX(3px);
  opacity: 1;
  color: var(--brand-primary);
}

/* Footer strip */
.main-navbar .mega-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 26px;
  background: var(--brand-ink);
  color: rgba(255,255,255,0.85);
  flex-wrap: wrap;
}
.mega-foot-text {
  font-size: 0.78rem;
  font-family: var(--font-display);
  font-weight: 500;
}
.mega-foot-text i {
  color: var(--brand-secondary);
}
.mega-foot-link {
  display: inline-flex;
  align-items: center;
  color: var(--brand-secondary) !important;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.mega-foot-link:hover {
  color: #fbbf24 !important;
}

/* Mobile / collapsed navbar — flatten the mega menu */
@media (max-width: 991px) {
  .main-navbar .mega-menu {
    min-width: 100%;
    max-width: 100%;
    box-shadow: none;
    border-radius: 12px;
    background: rgba(13, 107, 58, 0.03);
    margin-top: 0;
    animation: none;
  }
  .main-navbar .mega-header {
    padding: 14px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .main-navbar .mega-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px;
  }
  .main-navbar .mega-link {
    padding: 12px 14px;
    border-radius: 6px;
  }
  .main-navbar .mega-footer {
    padding: 12px 18px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 0 0 12px 12px;
  }
  .mega-viewall { align-self: flex-start; }
}

/* Desktop: open dropdown on hover for a smoother UX */
@media (min-width: 992px) {
  .main-navbar .nav-mega:hover > .dropdown-menu {
    display: block;
  }
  .main-navbar .nav-mega:hover > .nav-link.dropdown-toggle {
    color: var(--brand-primary);
  }
}

/* ============================================
   HOMEPAGE — SCHOOL LAB EQUIPMENT MANUFACTURERS SECTION
   ============================================ */
.lab-mfg-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
}
.lab-mfg-section .section-header { margin-bottom: 50px; }
.lab-mfg-section .section-lead {
  max-width: 820px;
  margin: 14px auto 0;
  color: #566174;
  font-size: 1rem;
  line-height: 1.7;
}
.lab-mfg-section .section-lead strong { color: var(--brand-ink); }

/* Sub-blocks */
.lab-mfg-block { margin-bottom: 56px; }
.lab-mfg-block:last-of-type { margin-bottom: 0; }
.lab-mfg-h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.lab-mfg-intro {
  max-width: 720px;
  margin: 0 auto;
  color: #566174;
  font-size: 0.96rem;
  line-height: 1.6;
}

/* Feature cards (Why choose us) */
.lab-feature-card {
  background: #fff;
  border: 1px solid rgba(13, 107, 58, 0.08);
  border-radius: 16px;
  padding: 26px 22px;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 4px 16px rgba(15, 29, 46, 0.04);
}
.lab-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.30);
  box-shadow: 0 16px 36px rgba(15, 29, 46, 0.10);
}
.lab-feature-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #0a5530 100%);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #fff;
  box-shadow: 0 8px 18px rgba(13, 107, 58, 0.22);
  transition: transform 0.35s ease, background 0.35s ease;
}
.lab-feature-card:hover .lab-feature-icon {
  transform: rotate(-6deg) scale(1.06);
  background: linear-gradient(135deg, var(--brand-secondary) 0%, #d97706 100%);
}
.lab-feature-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-ink);
  margin-bottom: 10px;
}
.lab-feature-card p {
  font-size: 0.85rem;
  color: #566174;
  line-height: 1.55;
  margin: 0;
}

/* Range cards (icon + text horizontal) */
.lab-range-card {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(13, 107, 58, 0.08);
  border-radius: 16px;
  padding: 24px 22px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 4px 16px rgba(15, 29, 46, 0.04);
}
.lab-range-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.30);
  box-shadow: 0 14px 32px rgba(15, 29, 46, 0.10);
}
.lab-range-icon {
  width: 50px; height: 50px;
  flex-shrink: 0;
  background: rgba(13, 107, 58, 0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--brand-primary);
  transition: all 0.35s ease;
}
.lab-range-card:hover .lab-range-icon {
  background: var(--brand-primary);
  color: #fff;
}
.lab-range-card h4 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--brand-ink);
  margin-bottom: 8px;
}
.lab-range-card p {
  font-size: 0.85rem;
  color: #566174;
  line-height: 1.55;
  margin: 0;
}

/* Range CTA card variant */
.lab-range-cta {
  background: linear-gradient(135deg, #f7faf8 0%, #fff 100%);
  border-style: dashed;
  border-color: rgba(13, 107, 58, 0.22);
}
.lab-range-link {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--brand-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.lab-range-link i { transition: transform 0.25s ease; }
.lab-range-link:hover { color: var(--brand-secondary); }
.lab-range-link:hover i { transform: translateX(4px); }

/* Worldwide + partner band */
.lab-mfg-band {
  margin-top: 56px;
  background: linear-gradient(135deg, var(--brand-ink) 0%, #1a2d44 100%);
  border-radius: 22px;
  padding: 44px 48px;
  position: relative;
  overflow: hidden;
}
.lab-mfg-band::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.16) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.lab-mfg-band > .row { position: relative; z-index: 1; }
.lab-band-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.lab-mfg-band p {
  color: rgba(255,255,255,0.80);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1em;
}
.lab-mfg-band p:last-child { margin-bottom: 0; }

.lab-band-cta {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px 26px;
}
.lab-band-cta h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.lab-band-cta p {
  color: rgba(255,255,255,0.78);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 20px;
}
.lab-band-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lab-band-actions .btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--brand-secondary);
  color: #fff !important;
  border-radius: 50rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(245, 158, 11, 0.30);
  transition: all 0.25s ease;
}
.lab-band-actions .btn-cta-primary:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.45);
  color: #fff !important;
}
.btn-cta-ghost-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.40);
  border-radius: 50rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-cta-ghost-dark:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  transform: translateY(-2px);
  color: #fff !important;
}

/* Responsive */
@media (max-width: 991px) {
  .lab-mfg-section { padding: 60px 0; }
  .lab-mfg-band { padding: 36px 30px; }
  .lab-band-cta { margin-top: 24px; }
}
@media (max-width: 575px) {
  .lab-mfg-section { padding: 48px 0; }
  .lab-mfg-block { margin-bottom: 44px; }
  .lab-mfg-h3 { font-size: 1.3rem; }
  .lab-range-card { flex-direction: column; gap: 12px; }
  .lab-mfg-band { padding: 28px 20px; border-radius: 16px; }
  .lab-band-title { font-size: 1.3rem; }
  .lab-band-cta { padding: 22px 18px; }
}

/* ============================================================================
   COUNTRY SEO MODULE  (school-lab-suppliers.php / lab-stem-kits country pages)
   All rules scoped under .country-seo-page so they cannot affect other pages.
   Class names verified unique against the rest of this stylesheet.
   ============================================================================ */

/* Bulk-tender SEO pills */
.country-seo-page .country-tags{
  display:flex;flex-wrap:wrap;gap:10px;justify-content:center;
  margin:22px auto 4px;max-width:980px;
}
.country-seo-page .country-tag{
  display:inline-flex;align-items:center;gap:8px;
  padding:9px 16px 9px 14px;border-radius:50rem;
  background:linear-gradient(135deg,#ffffff 0%,#eef6ef 100%);
  border:1px solid #cfe4d6;
  color:#0d4d28;font-size:13.5px;font-weight:600;line-height:1.2;
  box-shadow:0 2px 6px rgba(13,107,58,.08);
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
  cursor:default;
}
.country-seo-page .country-tag i{color:#f59e0b;font-size:15px;}
.country-seo-page .country-tag:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 16px rgba(13,107,58,.18);
  border-color:#f59e0b;
}

/* A–Z jump */
.country-seo-page .az-jump{display:flex;flex-wrap:wrap;gap:6px;justify-content:center;margin:18px 0 30px;}
.country-seo-page .az-jump a.az-on{
  display:inline-block;padding:5px 12px;border-radius:6px;
  background:#0d6b3a;color:#fff;font-weight:700;text-decoration:none;font-size:14px;
  transition:background .2s ease,transform .2s ease;
}
.country-seo-page .az-jump a.az-on:hover{background:#f59e0b;transform:translateY(-1px);}
.country-seo-page .az-jump .az-off{
  display:inline-block;padding:5px 12px;border-radius:6px;
  background:#eef2ee;color:#aebbb0;font-size:14px;
}

/* Country groups + links */
.country-seo-page .country-group{margin-bottom:30px;}
.country-seo-page .country-letter{
  font-size:1.5rem;font-weight:800;color:#0d6b3a;
  border-bottom:2px solid #0d6b3a;padding-bottom:6px;margin-bottom:16px;text-align:left;
}
.country-seo-page .country-link{
  display:flex;align-items:center;gap:9px;padding:11px 13px;height:100%;
  border:1px solid #e2e8e4;border-radius:9px;text-decoration:none;
  color:#1a2b1f;background:#fff;font-weight:500;transition:all .2s ease;
}
.country-seo-page .country-link i{color:#0d6b3a;flex-shrink:0;transition:color .2s ease;}
.country-seo-page .country-link:hover{
  border-color:#0d6b3a;background:#f3f9f4;
  box-shadow:0 4px 12px rgba(13,107,58,.12);transform:translateY(-2px);color:#0d6b3a;
}
.country-seo-page .country-link:hover i{color:#f59e0b;}

/* Category chips + service pillars on the country detail page */
.country-seo-page .cseo-chip{
  display:flex;align-items:center;gap:8px;padding:11px 13px;height:100%;
  border:1px solid #e2e8e4;border-radius:9px;text-decoration:none;
  color:#1a2b1f;background:#fff;font-size:.92rem;line-height:1.25;transition:all .2s ease;
}
.country-seo-page .cseo-chip i{color:#0d6b3a;flex-shrink:0;}
.country-seo-page .cseo-chip:hover{
  border-color:#0d6b3a;background:#f3f9f4;transform:translateY(-2px);
  box-shadow:0 4px 12px rgba(13,107,58,.12);color:#0d6b3a;
}
.country-seo-page .cseo-chip:hover i{color:#f59e0b;}

@media (max-width:575px){
  .country-seo-page .country-tag{font-size:12px;padding:7px 13px;}
}

/* ============================================================================
   PRODUCT CATALOGUE INDEX  (product-catalog-list.php)
   Scoped under .country-seo-page. Class names verified unique.
   ============================================================================ */
.country-seo-page .catalog-card{
  border:1px solid #e2e8e4;border-radius:14px;background:#fff;
  padding:22px 24px;margin-bottom:20px;
  box-shadow:0 2px 10px rgba(13,107,58,.05);transition:box-shadow .25s ease;
}
.country-seo-page .catalog-card:hover{box-shadow:0 8px 24px rgba(13,107,58,.10);}
.country-seo-page .catalog-card-head{
  display:flex;justify-content:space-between;align-items:flex-start;gap:16px;
  flex-wrap:wrap;border-bottom:1px solid #eef2ee;padding-bottom:14px;margin-bottom:14px;
}
.country-seo-page .catalog-card-title{
  font-size:1.3rem;font-weight:800;color:#0d6b3a;margin:0 0 4px;
}
.country-seo-page .catalog-card-title i{color:#f59e0b;margin-right:6px;}
.country-seo-page .catalog-card-sub{margin:0;color:#5b6b7c;font-size:.92rem;max-width:680px;}
.country-seo-page .catalog-viewall{
  flex-shrink:0;display:inline-flex;align-items:center;gap:6px;
  padding:8px 16px;border-radius:50rem;background:#0d6b3a;color:#fff !important;
  font-weight:600;font-size:.85rem;text-decoration:none;white-space:nowrap;
  transition:background .2s ease,transform .2s ease;
}
.country-seo-page .catalog-viewall:hover{background:#f59e0b;transform:translateY(-1px);}
.country-seo-page .catalog-countries{display:flex;flex-wrap:wrap;gap:8px;}
.country-seo-page .catalog-country{
  display:inline-flex;align-items:center;gap:6px;
  padding:7px 13px;border-radius:8px;background:#f3f9f4;border:1px solid #d9e8df;
  color:#1a2b1f;font-size:.85rem;text-decoration:none;transition:all .2s ease;
}
.country-seo-page .catalog-country i{color:#0d6b3a;font-size:.85rem;}
.country-seo-page .catalog-country:hover{
  background:#0d6b3a;border-color:#0d6b3a;color:#fff;transform:translateY(-2px);
}
.country-seo-page .catalog-country:hover i{color:#fff;}
@media (max-width:575px){
  .country-seo-page .catalog-card{padding:18px 16px;}
  .country-seo-page .catalog-card-head{flex-direction:column;}
}

/* ============================================================================
   FEATURED TOPIC PILLS  (_country_featured_topics.php)
   Scoped under .country-seo-page. Class names verified unique.
   ============================================================================ */
.country-seo-page .featured-pills{display:flex;flex-wrap:wrap;gap:12px;justify-content:center;}
.country-seo-page .featured-pill{
  display:inline-flex;align-items:center;gap:9px;
  padding:11px 18px;border-radius:50rem;
  background:#fff;border:1.5px solid #0d6b3a;
  color:#0d6b3a;font-size:14px;font-weight:700;text-decoration:none;
  box-shadow:0 2px 8px rgba(13,107,58,.08);
  transition:all .22s ease;
}
.country-seo-page .featured-pill > i:first-child{color:#f59e0b;font-size:16px;}
.country-seo-page .featured-pill .featured-pill-arrow{
  font-size:14px;opacity:.5;transition:transform .22s ease,opacity .22s ease;
}
.country-seo-page .featured-pill:hover{
  background:#0d6b3a;color:#fff;border-color:#0d6b3a;
  box-shadow:0 8px 20px rgba(13,107,58,.22);transform:translateY(-2px);
}
.country-seo-page .featured-pill:hover > i:first-child{color:#ffd27a;}
.country-seo-page .featured-pill:hover .featured-pill-arrow{opacity:1;transform:translateX(3px);}
@media (max-width:575px){
  .country-seo-page .featured-pill{font-size:13px;padding:9px 15px;}
}

/* ============================================================================
   TOPIC FAQ ACCORDION  (_topic_faq_related.php)
   Scoped under .country-seo-page. Class names verified unique.
   ============================================================================ */
.country-seo-page .faq-wrap{max-width:860px;margin:0 auto;}
.country-seo-page .faq-item{
  background:#fff;border:1px solid #e2e8e4;border-radius:10px;
  margin-bottom:12px;padding:0;overflow:hidden;transition:box-shadow .2s ease;
}
.country-seo-page .faq-item[open]{box-shadow:0 4px 14px rgba(13,107,58,.10);}
.country-seo-page .faq-q{
  cursor:pointer;list-style:none;padding:16px 20px;
  font-weight:700;color:#0d6b3a;font-size:1rem;position:relative;
  display:flex;align-items:center;justify-content:space-between;gap:12px;
}
.country-seo-page .faq-q::-webkit-details-marker{display:none;}
.country-seo-page .faq-q::after{
  content:"\002B";font-size:1.4rem;color:#f59e0b;flex-shrink:0;
  transition:transform .2s ease;line-height:1;
}
.country-seo-page .faq-item[open] .faq-q::after{content:"\2212";}
.country-seo-page .faq-a{
  padding:0 20px 18px;color:#41525f;font-size:.95rem;line-height:1.6;
}

/* ============================================================================
   CONTACT PAGE — SHIPPING WORLDWIDE COUNTRY GRID  (contacts.php)
   ============================================================================ */
.ship-country-grid{display:flex;flex-wrap:wrap;gap:8px;}
.ship-country{
  display:inline-flex;align-items:center;gap:6px;
  padding:7px 13px;border-radius:8px;
  background:#f3f9f4;border:1px solid #d9e8df;
  color:#1a2b1f;font-size:.85rem;text-decoration:none;transition:all .2s ease;
}
.ship-country i{color:#0d6b3a;font-size:.85rem;}
.ship-country:hover{background:#0d6b3a;border-color:#0d6b3a;color:#fff;transform:translateY(-2px);}
.ship-country:hover i{color:#fff;}

/* ============================================================================
   SEO CONTENT BLOCK — H3 subheadings + blockquote (school-science page etc.)
   Scoped under .country-seo-page .content-block.
   ============================================================================ */
.country-seo-page .content-block h3{
  font-size:1.35rem;font-weight:800;color:#0d6b3a;
  margin:30px 0 12px;padding-top:6px;
}
.country-seo-page .content-block p{margin-bottom:14px;line-height:1.75;}
.country-seo-page .content-block .seo-quote{
  border-left:4px solid #f59e0b;background:#f7f9fc;border-radius:0 10px 10px 0;
  padding:22px 26px;margin:28px 0;position:relative;
}
.country-seo-page .content-block .seo-quote .icon{font-size:1.6rem;color:#f59e0b;margin-bottom:6px;}
.country-seo-page .content-block .seo-quote h4{font-size:1.15rem;font-weight:700;color:#0f1d2e;margin:0 0 8px;line-height:1.5;}
.country-seo-page .content-block .seo-quote span{color:#5b6b7c;font-style:italic;}
.country-seo-page .content-block .image-block{margin:24px 0;}

/* ============================================================================
   PRODUCT RANGE GRID  (range.php)
   Scoped under .country-seo-page. Class names verified unique.
   ============================================================================ */
.country-seo-page .range-card{
  height:100%;background:#fff;border:1px solid #e2e8e4;border-radius:12px;
  padding:14px;text-align:center;display:flex;flex-direction:column;
  transition:box-shadow .2s ease,transform .2s ease,border-color .2s ease;
}
.country-seo-page .range-card:hover{
  box-shadow:0 8px 22px rgba(13,107,58,.12);transform:translateY(-3px);border-color:#0d6b3a;
}
.country-seo-page .range-card-img{display:block;border-radius:8px;overflow:hidden;background:#f7f9fc;}
.country-seo-page .range-card-img img{width:100%;height:auto;display:block;transition:transform .3s ease;}
.country-seo-page .range-card:hover .range-card-img img{transform:scale(1.04);}
.country-seo-page .range-card-code{
  font-size:.72rem;font-weight:700;color:#f59e0b;letter-spacing:.4px;
  text-transform:uppercase;margin:10px 0 2px;
}
.country-seo-page .range-card-name{
  display:block;margin-top:6px;font-size:.9rem;font-weight:600;line-height:1.35;
  color:#1a2b1f;text-decoration:none;
}
.country-seo-page .range-card-name:hover{color:#0d6b3a;}
.country-seo-page .range-pagination{
  margin-top:30px;text-align:center;display:flex;justify-content:center;
  flex-wrap:wrap;gap:6px;
}
.country-seo-page .range-pagination a,
.country-seo-page .range-pagination span{
  display:inline-block;padding:6px 12px;border-radius:6px;border:1px solid #d9e8df;
  color:#0d6b3a;text-decoration:none;font-weight:600;font-size:.9rem;
}
.country-seo-page .range-pagination a:hover{background:#0d6b3a;color:#fff;border-color:#0d6b3a;}
