:root {
  --jmg-red: #b11226;
  --jmg-red-dark: #7d0a18;
  --jmg-green: #1b5e20;
  --jmg-green-dark: #0d3d14;
  --jmg-saffron: #d97706;
  --jmg-gold: #b8860b;
  --jmg-cream: #fbf7ef;
  --jmg-paper: #f7f4ed;
  --jmg-ink: #1a1a1a;
  --jmg-charcoal: #2c2c2c;
  --jmg-muted: #6b6b6b;
  --jmg-border: #e5dfd0;
  --jmg-line: #ece6d6;

  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.12);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --font-display: "Montserrat", "Segoe UI", system-ui, sans-serif;
  --font-body: "Montserrat", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--font-body);
  color: var(--jmg-ink);
  background: var(--jmg-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
.display-1,
.display-2,
.display-3,
.display-4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.015em;
}
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
}
.text-jmg-red {
  color: var(--jmg-red) !important;
}
.text-jmg-green {
  color: var(--jmg-green) !important;
}
.text-jmg-saffron {
  color: var(--jmg-saffron) !important;
}
.bg-jmg-cream {
  background: white !important;
}
.bg-jmg-paper {
  background: white !important;
}
.bg-jmg-green {
  background: var(--jmg-green) !important;
  color: #fff;
}
.bg-jmg-red {
  background: var(--jmg-red) !important;
  color: #fff;
}

a {
  color: var(--jmg-green);
  text-decoration: none;
}
a:hover {
  color: var(--jmg-red);
}

/* ============= page loader (intro video) ============= */
#jmg-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}
#jmg-loader video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#jmg-loader .loader-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.55)
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 40px;
  pointer-events: none;
}
#jmg-loader .loader-bar {
  width: min(360px, 60vw);
  height: 3px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 99px;
  overflow: hidden;
}
#jmg-loader .loader-bar > span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--jmg-saffron), var(--jmg-red));
  transition: width 0.15s linear;
}
#jmg-loader .loader-skip {
  pointer-events: auto;
  position: absolute;
  top: 24px;
  right: 28px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 13px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: background 0.2s;
}
#jmg-loader .loader-skip:hover {
  background: rgba(255, 255, 255, 0.22);
}
#jmg-loader .loader-caption {
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0.9;
}
body.loaded #jmg-loader {
  opacity: 0;
  visibility: hidden;
}
body:not(.loaded) {
  overflow: hidden;
}

/* ============= top bar ============= */
.top-bar {
  background: var(--jmg-green-dark);
  color: #f5e8c8;
  font-size: 13px;
  padding: 8px 0;
}
.top-bar a {
  color: #f5e8c8;
}
.top-bar a:hover {
  color: #fff;
}
.top-bar .sep {
  opacity: 0.4;
  margin: 0 14px;
}

/* ============= navbar ============= */
.jmg-navbar {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1020;
}
.jmg-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--jmg-green-dark) !important;
  line-height: 1.1;
}
.jmg-navbar .navbar-brand img {
  height: 40px;
  width: auto;
}
.jmg-navbar .navbar-brand .brand-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jmg-saffron);
  display: block;
  margin-top: 2px;
}
.jmg-navbar .nav-link {
  font-weight: 600;
  color: var(--jmg-ink) !important;
  padding: 10px 14px !important;
  position: relative;
  font-size: 14.5px;
}
.jmg-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--jmg-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.jmg-navbar .nav-link:hover::after,
.jmg-navbar .nav-link.active::after {
  transform: scaleX(1);
}
.jmg-navbar .nav-link.active {
  color: var(--jmg-red) !important;
}
.jmg-navbar .dropdown-menu {
  border: 0;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: 10px;
  margin-top: 6px;
}
.jmg-navbar .dropdown-item {
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 500;
}
.jmg-navbar .dropdown-item:hover {
  background: var(--jmg-cream);
  color: var(--jmg-red);
}
.btn-jmg {
  background: var(--jmg-red);
  color: #fff;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 99px;
  border: 0;
  letter-spacing: 0.02em;
  transition: all 0.2s;
}
.btn-jmg:hover {
  background: var(--jmg-red-dark);
  color: #fff;
  transform: translateY(-1px);
}
.btn-jmg-outline {
  background: transparent;
  color: var(--jmg-red);
  border: 2px solid var(--jmg-red);
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 99px;
  transition: all 0.2s;
}
.btn-jmg-outline:hover {
  background: var(--jmg-red);
  color: #fff;
}
.btn-jmg-green {
  background: var(--jmg-green);
  color: #fff;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 99px;
  border: 0;
}
.btn-jmg-green:hover {
  background: var(--jmg-green-dark);
  color: #fff;
}

/* ============= hero (carousel) ============= */
.hero-carousel {
  position: relative;
}
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 90vh;
  max-height: 100%;
}
.hero-carousel .carousel-item {
  position: relative;
  display: none;
}
.hero-carousel .carousel-item.active,
.hero-carousel .carousel-item-next,
.hero-carousel .carousel-item-prev {
  display: block;
}
.hero-carousel .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  /* background: linear-gradient(
    90deg,
    rgba(13, 13, 13, 0.78) 0%,
    rgba(13, 13, 13, 0.45) 55%,
    rgba(13, 13, 13, 0.15) 100%
  ); */
}
.hero-carousel .slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* background: var(--bg, linear-gradient(135deg, #0d3d14, #7d0a18)) center/cover
    no-repeat; */
    background: var(--bg, linear-gradient(135deg)) center/cover
    no-repeat;
    background-size: cover;
}
.hero-carousel .carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  text-align: left;
  padding: 0;
  max-width: 100%;
}
.hero-carousel .caption-inner {
  max-width: 720px;
}
.hero-carousel .hc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.hero-carousel .hc-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--jmg-saffron);
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.3);
}
.hero-carousel h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.05;
  color: #fff;
  margin: 22px 0 18px;
}
.hero-carousel h1 .accent {
  color: var(--jmg-saffron);
}
.hero-carousel p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 580px;
  line-height: 1.7;
}
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 56px;
  opacity: 0.9;
}
.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
 
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  background-size: 50%;
  backdrop-filter: blur(6px);
}
.hero-carousel .carousel-indicators [data-bs-target] {
  width: 36px;
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.4);
}
.hero-carousel .carousel-indicators .active {
  background: var(--jmg-saffron);
}
.hero-carousel .hc-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 24px;
}
.hero-carousel .hc-stats .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.1rem;
  color: #fff;
  line-height: 1;
}
.hero-carousel .hc-stats .lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* legacy hero kept for fallback */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff7e7 0%, #ffe9c4 60%, #f8d790 100%);
  padding: 80px 0 100px;
}
.hero::before {
  content: "";
  position: absolute;
  right: -200px;
  top: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 146, 0, 0.25), transparent 70%);
}
.hero::after {
  content: "";
  position: absolute;
  left: -150px;
  bottom: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 122, 58, 0.18), transparent 70%);
}
.hero .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  color: var(--jmg-green-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.hero .hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--jmg-saffron);
  box-shadow: 0 0 0 4px rgba(243, 146, 0, 0.25);
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
  margin: 22px 0 18px;
}
.hero h1 .accent-red {
  color: var(--jmg-red);
}
.hero h1 .accent-green {
  color: var(--jmg-green-dark);
}
.hero p.lead {
  font-size: 1.1rem;
  color: var(--jmg-muted);
  max-width: 560px;
  line-height: 1.7;
}
.hero .hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero .hero-stats .stat .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--jmg-red);
  line-height: 1;
}
.hero .hero-stats .stat .lbl {
  font-size: 13px;
  color: var(--jmg-muted);
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.hero-art {
  position: relative;
  aspect-ratio: 1/1;
  background: radial-gradient(circle at 30% 30%, #fff, #fff0d4 60%, #f0c869);
  border-radius: 50%;
  box-shadow:
    var(--shadow-lg),
    inset 0 0 0 12px rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-art .spice-tile {
  position: absolute;
  border-radius: var(--radius-md);
  background: var(--c, #c8102e);
  color: #fff;
  padding: 14px 18px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-art .spice-tile small {
  font-weight: 500;
  opacity: 0.85;
  font-size: 10px;
  text-transform: none;
  letter-spacing: 0.04em;
}
.hero-art .spice-tile.t1 {
  top: 8%;
  left: -6%;
  --c: var(--jmg-red);
  transform: rotate(-6deg);
}
.hero-art .spice-tile.t2 {
  top: 18%;
  right: -8%;
  --c: var(--jmg-saffron);
  transform: rotate(8deg);
}
.hero-art .spice-tile.t3 {
  bottom: 18%;
  left: -4%;
  --c: var(--jmg-green);
  transform: rotate(6deg);
}
.hero-art .spice-tile.t4 {
  bottom: 6%;
  right: -2%;
  --c: #6b3410;
  transform: rotate(-4deg);
}
.hero-art .center-logo {
  width: 56%;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.18));
}

/* ============= section general ============= */
.section {
  padding: 60px 0;
  position: relative;
}
.section-tight {
  padding: 60px 0;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--jmg-red);
  padding-bottom: 8px;
  position: relative;
}
.eyebrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--jmg-saffron);
  transform: translateX(-50%);
}
.eyebrow.left::after {
  left: 0;
  transform: none;
}
.section-title {
 font-size: clamp(1rem, 2.3vw, 2.8rem);;
  margin: 14px 0 18px;
  line-height: 1.15;
}
.section-sub {
  color: var(--jmg-muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============= feature strip ============= */
.feature-strip {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: -50px;
  position: relative;
  z-index: 5;
}
.feature-strip .fs-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  transition: background 0.2s;
}
.feature-strip .fs-item:hover {
  background: var(--jmg-cream);
}
.feature-strip .fs-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--jmg-cream);
  color: var(--jmg-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.feature-strip h6 {
  margin: 0;
  font-weight: 700;
  font-size: 15px;
}
.feature-strip p {
  margin: 0;
  font-size: 12.5px;
  color: var(--jmg-muted);
}

/* ============= product cards ============= */
.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--jmg-border);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card .pc-media {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card .pc-media .pc-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(0, 0, 0, 0.4) 1px,
    transparent 0
  );
  background-size: 14px 14px;
}
.product-card .pc-media .pc-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  display: block;
  transition: transform 0.35s ease;
}
.product-card:hover .pc-media .pc-img {
  transform: scale(1.05);
}
.product-card .pc-media .pc-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c, var(--jmg-red));
  font-size: 3.4rem;
}
.product-card .pc-media .pc-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #fff;
  color: var(--jmg-red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 99px;
  border: 1px solid var(--jmg-border);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  z-index:10
}
.product-card .pc-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card .pc-body h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 0 6px;
}
.product-card .pc-body .pc-meta {
  font-size: 12px;
  color: var(--jmg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.product-card .pc-body p {
  font-size: 14px;
  color: var(--jmg-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}
.product-card .pc-body .pc-cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--jmg-red);
  font-weight: 600;
  font-size: 14px;
}
.product-card .pc-body .pc-cta .arrow {
  display: inline-flex;
  transition: transform 0.25s;
}
.product-card:hover .pc-body .pc-cta .arrow {
  transform: translateX(4px);
}
.product-card .pc-body .pc-packs {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--jmg-cream);
  border: 1px solid var(--jmg-border);
  color: var(--jmg-charcoal);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.product-card .pc-body .pc-packs::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--jmg-saffron);
  flex-shrink: 0;
}

/* ============= professional grid for product listings ============= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
.products-grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ============= category cards (big) ============= */
.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 340px;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s;
  background: linear-gradient(160deg, var(--c1, #c8102e), var(--c2, #6b0a1f));
}
.cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.18),
      transparent 50%
    ),
    radial-gradient(circle at 20% 90%, rgba(0, 0, 0, 0.25), transparent 50%);
}
.cat-card .cat-emoji {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 3.6rem;
  opacity: 0.85;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.4));
}
.cat-card:hover {
  transform: translateY(-6px);
}
.cat-card .cat-body {
  position: relative;
  z-index: 2;
}
.cat-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  margin: 0 0 8px;
}
.cat-card p {
  margin: 0 0 14px;
  opacity: 0.9;
  font-size: 14px;
  max-width: 380px;
}
.cat-card .cat-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  transition: background 0.2s;
}
.cat-card .cat-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}
.cat-card.c-red {
  --c1: #d4253c;
  --c2: #7a0a1d;
}
.cat-card.c-green {
  --c1: #2a8a44;
  --c2: #0e4d20;
}
.cat-card.c-saffron {
  --c1: #f39200;
  --c2: #b85f00;
}
.cat-card.c-brown {
  --c1: #8a4a1c;
  --c2: #4a2510;
}

/* ============= about ============= */
.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.about-img {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: var(--bg, var(--jmg-cream));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(0, 0, 0, 0.18) 1px,
    transparent 0
  );
  background-size: 18px 18px;
}
.about-img.b-red {
  --bg: #fde8eb;
  color: var(--jmg-red);
}
.about-img.b-green {
  --bg: #e6f3ea;
  color: var(--jmg-green);
}
.about-img.b-saffron {
  --bg: #fff1d6;
  color: var(--jmg-saffron);
}
.about-img.b-cream {
  --bg: var(--jmg-cream);
  color: #6b3410;
}
.about-img:nth-child(2) {
  margin-top: 36px;
}
.about-img:nth-child(3) {
  margin-top: -20px;
}

.value-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--jmg-border);
  height: 100%;
  transition: all 0.3s;
}
.value-card:hover {
  border-color: var(--jmg-red);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.value-card .v-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--jmg-red), var(--jmg-saffron));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.value-card h5 {
  font-weight: 700;
  margin-bottom: 8px;
}
.value-card p {
  color: var(--jmg-muted);
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
}

/* ============= certifications ============= */
.cert-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--jmg-border);
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  transition: all 0.3s;
}
.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--jmg-gold);
}
.cert-medal {
  width: 120px;
  height: 120px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffeaa1, #d4a017 60%, #8a6500);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3a2400;
  font-weight: 800;
  text-align: center;
  font-size: 14px;
  line-height: 1.05;
  position: relative;
  box-shadow:
    var(--shadow-md),
    inset 0 0 0 5px rgba(255, 255, 255, 0.3);
}
.cert-medal::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #f3c969,
    #b58300,
    #f3c969,
    #b58300,
    #f3c969,
    #b58300,
    #f3c969
  );
  z-index: -1;
  -webkit-mask: radial-gradient(circle, transparent 56%, #000 56%);
  mask: radial-gradient(circle, transparent 56%, #000 56%);
}
.cert-card h4 {
  font-weight: 700;
  margin-bottom: 8px;
}
.cert-card p {
  color: var(--jmg-muted);
  font-size: 14px;
  margin: 0;
}

/* ============= timeline ============= */
.timeline {
  position: relative;
  padding: 20px 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--jmg-border);
}
.tl-item {
  position: relative;
  padding-left: 70px;
  margin-bottom: 30px;
}
.tl-dot {
  position: absolute;
  left: 14px;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--jmg-red);
  box-shadow: 0 0 0 6px rgba(200, 16, 46, 0.18);
}
.tl-item h6 {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 15px;
  color: var(--jmg-green-dark);
  letter-spacing: 0.04em;
}
.tl-item p {
  margin: 0;
  color: var(--jmg-muted);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ============= page header (image breadcrumb) ============= */
.page-head {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 90px 0 110px;
  background:
    linear-gradient(120deg, rgba(13, 61, 20, 0.88), rgba(125, 10, 24, 0.78)),
    var(
        --ph-bg,
        url("https://images.unsplash.com/photo-1532336414038-cf19250c5757?auto=format&fit=crop&w=1800&q=70")
      )
      center/cover no-repeat;
}
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 0%, rgba(217, 119, 6, 0.25), transparent 45%),
    radial-gradient(circle at 0% 100%, rgba(0, 0, 0, 0.35), transparent 50%);
  pointer-events: none;
}
.page-head::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--jmg-red),
    var(--jmg-saffron),
    var(--jmg-green)
  );
}
.page-head .ph-inner {
  position: relative;
  z-index: 2;
}
.page-head h1 {
  font-size: clamp(2rem, 2.3vw, 2.5rem);;
  margin: 10px 0 12px;
}
.page-head .crumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  opacity: 0.9;
}
.page-head .crumbs a {
  color: #fff;
  opacity: 0.85;
}
.page-head .crumbs a:hover {
  opacity: 1;
  color: var(--jmg-saffron);
}
.page-head .crumbs .sep {
  opacity: 0.4;
}

/* ============= product detail / list ============= */
.cat-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}
.cat-pill {
  background: #fff;
  border: 1px solid var(--jmg-border);
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 600;
  color: var(--jmg-ink);
  cursor: pointer;
  transition: all 0.2s;
}
.cat-pill:hover,
.cat-pill.active {
  background: var(--jmg-red);
  border-color: var(--jmg-red);
  color: #fff;
}

/* ============= contact / forms ============= */
.contact-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--jmg-border);
  padding: 28px;
  height: 100%;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all 0.3s;
}
.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.contact-card .c-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  flex-shrink: 0;
  background: var(--jmg-cream);
  color: var(--jmg-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.contact-card h6 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jmg-muted);
}
.contact-card p {
  margin: 0;
  color: var(--jmg-ink);
  font-size: 15.5px;
  line-height: 1.55;
  font-weight: 500;
}
.contact-card a {
  color: var(--jmg-ink);
}
.contact-card a:hover {
  color: var(--jmg-red);
}

.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--jmg-border);
  box-shadow: var(--shadow-sm);
}
.form-card label {
  font-weight: 600;
  font-size: 13.5px;
  margin-bottom: 6px;
  color: var(--jmg-ink);
}
.form-card .form-control,
.form-card .form-select {
  border: 1px solid var(--jmg-border);
  border-radius: 10px;
  padding: 12px 14px;
  background: var(--jmg-paper);
  font-size: 14.5px;
}
.form-card .form-control:focus,
.form-card .form-select:focus {
  border-color: var(--jmg-red);
  box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.12);
  background: #fff;
}
.form-card textarea.form-control {
  min-height: 130px;
}

/* ============= footer ============= */
.jmg-footer {
  background: #1a1a18;
  color: #cfc8b8;
  padding: 70px 0 20px;
  position: relative;
}
.jmg-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--jmg-red),
    var(--jmg-saffron),
    var(--jmg-green)
  );
}
.jmg-footer h6 {
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.jmg-footer a {
  color: #cfc8b8;
  font-size: 14px;
}
.jmg-footer a:hover {
  color: var(--jmg-saffron);
}
.jmg-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.jmg-footer ul li {
  margin-bottom: 8px;
}
.jmg-footer .footer-brand {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}
.jmg-footer .footer-brand img {
  height: 64px;
  background: #fff;
  padding: 6px;
  border-radius: 12px;
}
.jmg-footer .footer-brand .b-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.05;
}
.jmg-footer .footer-brand .b-sub {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--jmg-saffron);
  text-transform: uppercase;
}
.jmg-footer .desc {
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
}
.jmg-footer .socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.jmg-footer .socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.jmg-footer .socials a:hover {
  background: var(--jmg-red);
  color: #fff;
}
.jmg-footer .footer-bot {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 50px;
  padding-top: 20px;
  font-size: 13px;
  opacity: 0.75;
}

/* ============= testimonials ============= */
.testi-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--jmg-border);
  padding: 30px;
  height: 100%;
  position: relative;
}
.testi-card::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: var(--jmg-red);
  opacity: 0.3;
}
.testi-card p {
  font-size: 15px;
  color: var(--jmg-ink);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 22px;
}
.testi-meta {
  display: flex;
  gap: 12px;
  align-items: center;
}
.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--jmg-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.testi-meta .nm {
  font-weight: 700;
  font-size: 14.5px;
}
.testi-meta .rl {
  font-size: 12.5px;
  color: var(--jmg-muted);
}

/* ============= CTA band ============= */
.cta-band {
  background: linear-gradient(
    120deg,
    var(--jmg-red) 0%,
    var(--jmg-red-dark) 60%,
    #5a0815 100%
  );
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 146, 0, 0.4), transparent 60%);
}
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 8px;
}
.cta-band p {
  margin: 0;
  opacity: 0.9;
  max-width: 540px;
}
.cta-band .btn-cta-white {
  background: #fff;
  color: var(--jmg-red);
  padding: 14px 28px;
  border-radius: 99px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
}
.cta-band .btn-cta-white:hover {
  background: var(--jmg-cream);
  transform: translateY(-2px);
}

/* ============= map ============= */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--jmg-border);
  box-shadow: var(--shadow-md);
  height: 480px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ============= utility ============= */
.divider-dot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}
.divider-dot::before,
.divider-dot::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--jmg-border);
}
.divider-dot .dd-icons {
  color: var(--jmg-saffron);
  letter-spacing: 6px;
  font-size: 14px;
}
.list-check {
  list-style: none;
  padding: 0;
}
.list-check li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.6;
}
.list-check li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--jmg-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/* scroll reveal helper */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* Float WhatsApp */
.float-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s;
}
.float-wa:hover {
  transform: scale(1.08);
  color: #fff;
}

/* ============= Our Range cards (index) ============= */
.range-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.range-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--jmg-border);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-md);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  position: relative;
}
.range-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--jmg-red);
  color: inherit;
}
.range-card .range-media {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--rg-bg, var(--jmg-cream));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.range-card .range-media > img:not(.r-stack) {
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.15));
  transition: transform 0.4s ease;
}
.range-card:hover .range-media > img:not(.r-stack) {
  transform: scale(1.05);
}
.range-card .r-stack {
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 42%;
  height: 42%;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  background: #fff;
  padding: 8px;
  transform: rotate(6deg);
  transition: transform 0.4s ease;
}
.range-card:hover .r-stack {
  transform: rotate(0deg) translate(-6px, -6px);
}
.range-card .range-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.range-card .range-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--rg-tag-bg, #fde8eb);
  color: var(--rg-tag-color, var(--jmg-red));
  align-self: flex-start;
}
.range-card .range-body h3 {
  font-size: 1.15rem;
  margin: 4px 0 0;
  color: var(--jmg-ink);
  font-weight: 700;
}
.range-card .range-body p {
  font-size: 14px;
  color: var(--jmg-muted);
  margin: 0;
  line-height: 1.55;
}
.range-card .range-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--jmg-red);
  padding-top: 12px;
}
.range-card .range-cta i {
  transition: transform 0.3s;
}
.range-card:hover .range-cta i {
  transform: translateX(4px);
}

/* per-category accent colors */
.range-card.r-red {
  --rg-bg: #fde8eb;
  --rg-tag-bg: #fde8eb;
  --rg-tag-color: var(--jmg-red);
}
.range-card.r-green {
  --rg-bg: #e6f3ea;
  --rg-tag-bg: #e6f3ea;
  --rg-tag-color: var(--jmg-green);
}
.range-card.r-saffron {
  --rg-bg: #fff1d6;
  --rg-tag-bg: #fff1d6;
  --rg-tag-color: var(--jmg-saffron);
}
.range-card.r-brown {
  --rg-bg: #f3e6d3;
  --rg-tag-bg: #f3e6d3;
  --rg-tag-color: #6b3410;
}
.range-card.r-red .range-cta {
  color: var(--jmg-red);
}
.range-card.r-green .range-cta {
  color: var(--jmg-green);
}
.range-card.r-saffron .range-cta {
  color: var(--jmg-saffron);
}
.range-card.r-brown .range-cta {
  color: #6b3410;
}

/* ============= About teaser stacked images (index) ============= */
.about-stack {
  position: relative;
  height: 480px;
}
.about-stack .as-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #fff;
  border: 6px solid #fff;
}
.about-stack .as-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-stack .as-1 {
  top: 0;
  left: 0;
  width: 62%;
  height: 80%;
  z-index: 1;
}
.about-stack .as-2 {
  top: 18%;
  right: 0;
  width: 48%;
  height: 57%;
  z-index: 2;
}
.about-stack .as-3 {
  bottom: 26px;
    left: 22%;
    width: 33%;
    height: 47%;
  z-index: 3;
}
.about-stack .as-badge {
  position: absolute;
  bottom: 6%;
  right: 4%;
  z-index: 4;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--jmg-red);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 4px solid #fff;
}
.about-stack .as-badge-num {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
}
.about-stack .as-badge-lbl {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============= About page image grid — image variant ============= */
.about-img.has-img {
  font-size: 0;
  padding: 0;
  background: #fff;
}
.about-img.has-img::before {
  display: none;
}
.about-img.has-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  padding: 17px;
}

/* ============= Standalone Counter Section ============= */
.counter-section {
  padding: 50px 0;
  
  color: #fff;
  position: relative;
  overflow: hidden;
}
.counter-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(255, 255, 255, 0.08) 1px,
    transparent 0
  );
  background-size: 22px 22px;
  pointer-events: none;
}
.counter-section .counter-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
  position: relative;
}
.counter-section .counter-head .eyebrow {
 color: var(--jmg-red);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}
.counter-section .counter-head .section-title {
  color: var(--jmg-charcoal);
}
.counter-section .counter-head .section-sub {
 color: var(--jmg-muted);
}
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  position: relative;
}
.counter-item {
  background: var(--jmg-red);
  border: 1px solid var(--jmg-red);
  border-radius: var(--radius-lg);
  padding: 32px 22px 28px;
  text-align: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease;
  position: relative;
}
.counter-item:hover {
  transform: translateY(-6px);
  background: var(--jmg-red-dark);
  border-color: var(--jmg-red-dark);
}
.counter-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ffd699;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.counter-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
}
.counter-suffix {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--jmg-saffron);
  margin-left: 2px;
  vertical-align: top;
  margin-top: 6px;
}
.counter-lbl {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 14px;
}


.zoom{
  cursor: pointer;
}
/* =================================================================
   MOBILE / TABLET RESPONSIVENESS — single breakpoint at 992px
   ================================================================= */
@media screen and (max-width: 992px) {

  .section {
    padding: 50px 0;
  }
  .section-tight {
   padding: 0px 0 40px;
  }
  .top-bar {
    display: none;
  }


  h1,
  .display-3,
  .display-4 {
    font-size: 1.9rem !important;
    line-height: 1.2;
  }
  h2,
  .section-title {
    font-size: 1.55rem !important;
  }
  .page-head h1 {
    font-size: 1.85rem;
  }
  .page-head .lead {
    font-size: 0.95rem;
  }
   .navbar-brand span{
    display:none;
   }
  /* ---- hero / page header ---- */
  .hero {
    padding: 50px 0 80px;
  }
  .hero-art {
    margin-top: 50px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-carousel .carousel-item {
    height: 70vh;
    min-height: 460px;
  }
  .hero-carousel .hc-stats {
    gap: 20px;
  }
  .page-head {
    padding: 60px 0 50px;
  }

  /* ---- product grid: 4-col -> 2-col ---- */
  .products-grid,
  .products-grid.cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  /* ---- range grid (Our Range): 4-col -> 2-col ---- */
  .range-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .range-card .range-body {
    padding: 16px 16px 18px;
  }
  .range-card .range-body h3 {
    font-size: 1rem;
  }
  .range-card .range-body p {
    font-size: 12.5px;
  }
  .range-card .range-tag {
    font-size: 10px;
    padding: 4px 8px;
  }
  .range-card .range-cta {
    font-size: 12.5px;
  }

  /* ---- about teaser stacked images ---- */
  .about-stack {
    height: 380px;
    max-width: 380px;
    margin: 0 auto;
  }
  .about-stack .as-badge {
    width: 96px;
    height: 96px;
  }
  .about-stack .as-badge-num {
    font-size: 1.4rem;
  }
  .about-stack .as-badge-lbl {
    font-size: 9.5px;
  }

  /* ---- about page image grid ---- */
  .about-img-grid {
    max-width: 360px;
    margin: 0 auto;
    gap: 10px;
  }

  /* ---- counter section ---- */
  .counter-section {
    padding: 50px 0;
  }
  .counter-section .counter-head {
    margin-bottom: 32px;
  }
  .counter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .counter-item {
    padding: 22px 14px 20px;
  }
  .counter-icon {
    width: 46px;
    height: 46px;
    font-size: 18px;
    margin-bottom: 12px;
  }
  .counter-num {
    font-size: 1.6rem;
  }
  .counter-suffix {
    font-size: 1.4rem;
    margin-top: 4px;
  }
  .counter-lbl {
    font-size: 11px;
    margin-top: 10px;
    letter-spacing: 0.08em;
  }

  /* ---- product card scaling ---- */
  .product-card {
    border-radius: 12px;
  }
  .product-card .pc-media {
    aspect-ratio: 1 / 1;
  }
  .product-card .pc-media .pc-img {
    padding: 8px;
  }
  .product-card .pc-media .pc-tag {
    top: 10px;
    left: 10px;
    font-size: 9px;
    padding: 4px 9px;
  }
  .product-card .pc-body {
    padding: 14px;
  }
  .product-card .pc-body h5 {
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 4px;
  }
  .product-card .pc-body .pc-meta {
    font-size: 10px;
    margin-bottom: 8px;
  }
  .product-card .pc-body p {
    font-size: 12.5px;
    line-height: 1.5;
    margin-bottom: 12px;
  }
  .product-card .pc-body .pc-packs {
    font-size: 10.5px;
    padding: 4px 9px;
    margin-bottom: 10px;
  }
  .product-card .pc-body .pc-cta {
    font-size: 12.5px;
  }

  /* ---- category pills ---- */
  .cat-pill-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-bottom: 24px;
    padding-bottom: 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .cat-pill-row::-webkit-scrollbar {
    display: none;
  }
  .cat-pill {
    flex-shrink: 0;
    font-size: 12.5px;
    padding: 7px 14px;
  }

  /* ---- forms / cta band ---- */
  .cta-band {
    padding: 32px 22px;
    text-align: center;
  }
  .cta-band h2 {
    font-size: 1.4rem !important;
  }
  .cta-band p {
    font-size: 0.92rem;
  }
  .cta-band .btn-cta-white {
    width: 100%;
    margin-top: 14px;
  }
  .form-card {
    padding: 22px;
  }

  /* ---- contact cards ---- */
  .contact-card {
    padding: 20px;
    gap: 14px;
  }
  .contact-card .c-icon {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  /* ---- footer ---- */
  .jmg-footer {
    padding: 50px 0 22px;
  }
  .footer-brand img {
    width: 50px;
    height: 50px;
  }
  .footer-bot {
    font-size: 12px;
  }

  /* ---- feature strip ---- */
  .feature-strip {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 30px;
  }

  .btn-jmg{
    font-size: 15px;
}
.btn.btn-light.btn-lg{
  font-size: 15px;
}
.hero-carousel p{
  font-size: 0.9rem;
}
.hero-carousel .carousel-control-prev, .hero-carousel .carousel-control-next{
    display: none;
 }
 .hero-carousel .carousel-inner, .hero-carousel .carousel-item
 {
   height: 90vh;
    min-height: 554px;
 }
 .hero-carousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 0px;
 }
 .section-sub{
    font-size: 0.9rem;
    text-align: justify;
    hyphens: auto;
 }
 .cta-band .btn-cta-white{
  font-size: 0.9rem;
 }
 .jmg-footer .footer-bot {
 
  margin-top: 10px;
  padding-top: 20px;

}
.text-muted,.value-card p{
  font-size: 0.9rem !important;
   text-align: justify;
    hyphens: auto;
}
.list-check li {
  
  font-size: 0.9rem;
}
.list-check li::before {
 
  top: 5px;
  width: 18px;
  height: 18px;
}
.cert-card p {
  
  font-size: 0.9rem;

  text-align: justify;
  hyphens: auto;
}
}

@media(max-width:686px){
   .hero-carousel .carousel-inner, .hero-carousel .carousel-item
 {
   height: 24vh;
    min-height: 194px;
 }
}