/* ==========================================================================
   Mangla Trading Co. — Stylesheet
   Palette + type pulled from the brand mark: a sunrise fanning over
   ploughed furrows. The furrow/sun-ray motif recurs through the site as
   the signature graphic device (dividers, card accents, loaders).
   ========================================================================== */

:root{
  /* ---- Brand palette (from logo) ---- */
  --forest:      #143d24;   /* deep pine — ring / wordmark ink */
  --forest-700:  #1c4d2e;
  --leaf:        #4f8a3d;   /* mid field green */
  --field:       #8bc34a;   /* light furrow green */
  --field-100:   #eaf3df;   /* pale green tint for section bands */
  --sun-orange:  #f0891c;   /* sunrise orange */
  --sun-yellow:  #ffc94a;   /* sunrise yellow */
  --cream:       #fbf8f0;   /* page background */
  --paper:       #ffffff;
  --ink:         #1c2418;   /* body text */
  --ink-soft:    #4b5644;
  --line:        #e4ddc9;

  /* ---- Type ---- */
  --font-display: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Work Sans", -apple-system, "Segoe UI", sans-serif;

  /* ---- Misc ---- */
  --radius: 14px;
  --radius-lg: 26px;
  --shadow-soft: 0 20px 45px -20px rgba(20, 61, 36, 0.28);
  --shadow-card: 0 10px 30px -14px rgba(20, 61, 36, 0.22);
  --container-max: 1220px;
}

/* ---------------------------------- base --------------------------------- */
*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body{
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
}
h1,h2,h3,h4,.display-font{
  font-family: var(--font-display);
  color: var(--forest);
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1{ font-weight: 700; }
p{ color: var(--ink-soft); }
a{ color: var(--leaf); text-decoration: none; transition: color .2s ease; }
a:hover{ color: var(--sun-orange); }
::selection{ background: var(--sun-yellow); color: var(--forest); }

:focus-visible{
  outline: 3px solid var(--sun-orange);
  outline-offset: 3px;
}

.container-xl{
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: .75rem;
}
.eyebrow::before{
  content:"";
  width: 22px; height: 2px;
  background: var(--sun-orange);
  display:inline-block;
}

.section{ padding: 5.5rem 0; }
.section-sm{ padding: 3.5rem 0; }
.bg-cream{ background: var(--cream); }
.bg-white{ background: var(--paper); }
.bg-forest{ background: var(--forest); color: #f4f1e6; }
.bg-forest h2, .bg-forest h3, .bg-forest .display-font{ color: #fff; }
.bg-forest p{ color: #cfe0cd; }
.bg-field-tint{ background: var(--field-100); }

.btn{
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 999px;
  padding: .8rem 1.7rem;
  font-size: .95rem;
  border: 2px solid transparent;
  transition: all .22s ease;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-brand{
  background: var(--sun-orange);
  color: #fff;
}
.btn-brand:hover{
  background: #d97511;
  color:#fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -8px rgba(240,137,28,.6);
}
.btn-outline-brand{
  background: transparent;
  border-color: var(--forest);
  color: var(--forest);
}
.btn-outline-brand:hover{
  background: var(--forest);
  color:#fff;
  border-color: var(--forest);
  transform: translateY(-2px);
}
.btn-outline-light-brand{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.55);
  color:#fff;
  backdrop-filter: blur(6px);
}
.btn-outline-light-brand:hover{
  background:#fff;
  color: var(--forest);
  border-color:#fff;
}
.btn-sm{ padding: .55rem 1.2rem; font-size: .85rem; }

/* ------------------------------- navbar ---------------------------------- */
.site-header{
      width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  background:#fff;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.navbar-brand-custom{
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
}
.navbar-brand-custom img{
      border-radius: 5px;
    top: 15px;
    margin: -30px 0;
    position: relative;
    width: 128px;
    object-fit: contain;
}
.navbar-brand-custom .brand-text{ line-height: 1.1; }
.navbar-brand-custom .brand-text .name{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--forest);
  display:block;
}
.navbar-brand-custom .brand-text .sub{
  font-size: .66rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--leaf);
  font-weight: 600;
}
.main-nav .nav-link{
  font-weight: 600;
  color: var(--ink);
  font-size: .95rem;
  padding: .5rem 1rem !important;
  position: relative;
}
.main-nav .nav-link.active,
.main-nav .nav-link:hover{ color: var(--sun-orange); }
.main-nav .nav-link.active::after{
  content:"";
  position:absolute;
  left: 1rem; right: 1rem; bottom: .1rem;
  height: 2px;
  background: var(--sun-orange);
  border-radius: 2px;
}
.nav-cta{ margin-left: .5rem; }
.top-strip{
  background: var(--forest);
  color: #d9e7d3;
  font-size: .82rem;
}
.top-strip a{ color:#fff; }
.top-strip .divider{ opacity:.4; margin: 0 .6rem; }

/* -------------------------------- hero ------------------------------------ */
.hero{
  position: relative;
  color: #fff;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    linear-gradient(115deg, rgba(20,61,36,.93) 15%, rgba(20,61,36,.62) 48%, rgba(20,61,36,.35) 100%),
    var(--hero-img, none);
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero .container-xl{ position: relative; z-index: 2; }
.hero .badge-row{ flex-wrap:wrap; gap:.6rem; margin-bottom: 1.4rem; }
.hero .badge-pill{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  padding: .38rem .85rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  display:inline-flex; align-items:center; gap:.4rem;
}
.hero h1{
  margin: 0 auto;
  color:#fff;
  font-size: clamp(2.3rem, 4.6vw, 3.85rem);
  line-height: 1.08;
  max-width: 980px;
}
.hero .lead{
  color: #e7ecdf;
  font-size: 1.15rem;
  max-width: 800px;
   margin: 0 auto;
}
.hero .hero-stats{
  display:flex; flex-wrap:wrap; gap: 2.2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.22);
}
.hero .hero-stats .num{
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--sun-yellow);
  line-height:1;
  display:block;
}
.hero .hero-stats .lbl{
  font-size: .78rem;
  color: #cfe0cd;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* signature sunburst motif ------------------------------------------------ */
.sunburst{
  position: absolute;
  width: 640px; height: 640px;
  right: -180px; bottom: -220px;
  z-index: 1;
  opacity: .5;
  pointer-events: none;
}
.divider-rays{
  width: 100%;
  height: 60px;
  display:block;
  color: var(--cream);
}
.divider-rays path{ fill: currentColor; }

/* ------------------------------ trust strip ------------------------------- */
.trust-strip{
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 1.6rem 0;
}
.trust-strip .item{
  display:flex; align-items:center; gap:.65rem;
  font-size: .88rem; font-weight: 600; color: var(--forest);
}
.trust-strip .item i{ font-size: 1.35rem; color: var(--sun-orange); }

/* -------------------------------- cards ----------------------------------- */
.card-soft{
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  padding: 2.1rem 1.8rem;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card-soft:hover{ transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.icon-tile{
  width: 58px; height: 58px;
  border-radius: 16px;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(145deg, var(--sun-yellow), var(--sun-orange));
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 10px 20px -8px rgba(240,137,28,.55);
}
.icon-tile.green{ background: linear-gradient(145deg, var(--field), var(--leaf)); box-shadow: 0 10px 20px -8px rgba(79,138,61,.5); }

.product-card{
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: var(--shadow-card);
}
.product-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.product-card .thumb{
  height: 140px;
  display:flex; align-items:center; justify-content:center;
  font-size: 2.6rem;
  color: var(--forest);
  background: var(--field-100);
  position: relative;
  overflow: hidden;
}
.product-card .thumb::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(circle at 30% 20%, rgba(255,201,74,.35), transparent 60%);
}
.product-card .thumb i{ position:relative; z-index:1; }
.product-card .body{ padding: 1.4rem 1.3rem 1.6rem; }
.product-card h3{ font-size: 1.05rem; margin-bottom: .4rem; }
.product-card p{ font-size: .88rem; margin-bottom: .7rem; }

/* ===== Product filter tabs (Sunanda-style) ===== */
.filter-tabs{
  display:flex; flex-wrap:wrap; gap:.6rem;
  padding: 1.4rem 0;
}
.filter-tab{
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--forest);
  font-weight: 600;
  font-size: .88rem;
  padding: .55rem 1.3rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}
.filter-tab i{ margin-right: .35rem; }
.filter-tab:hover{ border-color: var(--sun-orange); color: var(--sun-orange); }
.filter-tab.active{
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
  box-shadow: 0 8px 18px -8px rgba(20,61,36,.5);
}
.product-grid-item{ transition: opacity .2s ease; }
.product-grid-item.is-hidden{ display:none; }
.product-card .tags{ display:flex; flex-wrap:wrap; gap:.35rem; }
.product-card .tags span{
  font-size: .72rem;
  background: var(--field-100);
  color: var(--forest-700);
  border-radius: 999px;
  padding: .2rem .6rem;
  font-weight: 600;
}

.step-card{ position: relative; padding-left: 3.6rem; }
.step-card .step-num{
  position:absolute; left:0; top:0;
  width: 2.6rem; height: 2.6rem;
  border-radius: 50%;
  background: var(--sun-orange);
  color: #fff;
  font-family: var(--font-display);
  display:flex; align-items:center; justify-content:center;
  font-size: 1.05rem;
}

/* ---------------------------- about / stats -------------------------------- */
.stat-block{
  text-align:center;
  padding: 1.6rem 1rem;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
}
.stat-block .num{
  font-family: var(--font-display);
  font-size: 2.3rem;
  color: var(--sun-orange);
  display:block;
  line-height:1;
}
.stat-block .lbl{ font-size: .82rem; color: var(--ink-soft); font-weight:600; margin-top:.3rem; }

.about-media{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-media img{ width:100%; height:100%; object-fit:cover; display:block; }
.about-media .badge-float{
  position:absolute; left: 1.4rem; bottom: 1.4rem;
  color:#fff;
  border-radius: var(--radius);
  display:flex; gap:.7rem; align-items:center;
  backdrop-filter: blur(6px);
}
.about-media .badge-float i{ color: var(--sun-yellow); font-size: 1.6rem; }
.about-media .badge-float .t{ font-size:.75rem; color:#cfe0cd; }
.about-media .badge-float .n{ font-weight:700; font-size:1rem; }

/* ---------------------------------- FAQ ------------------------------------ */
.accordion-item{
  border: none !important;
  background: transparent !important;
  border-bottom: 1px solid var(--line) !important;
}
.accordion-button{
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--forest) !important;
  background: transparent !important;
  padding: 1.3rem .2rem !important;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed){ color: var(--sun-orange) !important; }
.accordion-button::after{ filter: hue-rotate(60deg); }
.accordion-body{ padding: 0 .2rem 1.3rem !important; color: var(--ink-soft); }

/* -------------------------------- CTA band --------------------------------- */
.cta-band{
  background: linear-gradient(120deg, var(--forest) 0%, var(--forest-700) 60%, #245a34 100%);
  color:#fff;
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.cta-band::after{
  content:"";
  position:absolute; right:-60px; top:-60px;
  width: 240px; height:240px;
  background: radial-gradient(circle, rgba(255,201,74,.35), transparent 70%);
}

/* -------------------------------- forms ------------------------------------ */
.form-control, .form-select{
  border-radius: 10px;
  border: 1.5px solid var(--line);
  padding: .78rem 1rem;
  font-size: .95rem;
  background: var(--paper);
}
.form-control:focus, .form-select:focus{
  border-color: var(--sun-orange);
  box-shadow: 0 0 0 4px rgba(240,137,28,.15);
}
.form-label{ font-weight: 600; font-size: .85rem; color: var(--forest); margin-bottom: .4rem; }
.form-panel{
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  padding: 2.4rem;
}
.form-note{ font-size: .82rem; color: var(--ink-soft); }
.honeypot{ position:absolute; left:-9999px; top:-9999px; opacity:0; height:0; width:0; }

.contact-info-card{
  background: var(--forest);
  color:#fff;
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  height:100%;
}
.contact-info-card .row-item{
  display:flex; gap:1rem; margin-bottom: 1.5rem;
}
.contact-info-card .row-item i{
  width: 42px; height:42px; border-radius: 12px;
  background: rgba(255,255,255,.12);
  display:flex; align-items:center; justify-content:center;
  color: var(--sun-yellow); font-size:1.15rem; flex-shrink:0;
}
.contact-info-card .row-item h4{ color:#fff; font-size: .95rem; margin-bottom:.15rem;}
.contact-info-card .row-item p, .contact-info-card .row-item a{ color:#cfe0cd; font-size:.88rem; margin:0; }
.contact-info-card .row-item a:hover{ color: var(--sun-yellow); }
.social-row{ display:flex; gap:.6rem; margin-top: 1.6rem; }
.social-row a{
  width:38px; height:38px; border-radius:50%;
  background: rgba(255,255,255,.12);
  display:flex; align-items:center; justify-content:center;
  color:#fff;
}
.social-row a:hover{ background: var(--sun-orange); color:#fff; }

.map-wrap{ border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-card); border:1px solid var(--line); }
.map-wrap iframe{ width:100%; height: 340px; border:0; display:block; }

.alert-success-custom{
  background: var(--field-100);
  border: 1px solid var(--field);
  color: var(--forest-700);
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  font-weight:600;
  display:flex; align-items:center; gap:.6rem;
}
.alert-error-custom{
  background: #fdeeee;
  border: 1px solid #e8b4b4;
  color: #8a2c2c;
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  font-weight:600;
  display:flex; align-items:center; gap:.6rem;
}

/* -------------------------------- footer ------------------------------------ */
.site-footer{ background: var(--forest); color: #cfe0cd; padding-top: 4.5rem; }
.site-footer h5{ color:#fff; font-family: var(--font-display); font-weight:600; margin-bottom:1.1rem; }
.site-footer a{ color:#cfe0cd; }
.site-footer a:hover{ color: var(--sun-yellow); }
.site-footer .foot-brand{ display:flex; align-items:center; gap:.65rem; margin-bottom: 1rem; }
.site-footer .foot-brand img{ height:110px;border-radius: 50%; }
.site-footer .foot-brand span{ font-family: var(--font-display); font-size:1.15rem; color:#fff; }
.site-footer .foot-bottom{
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 3rem;
  padding: 1.4rem 0;
  font-size: .82rem;
}
.site-footer ul{ list-style:none; padding:0; margin:0; }
.site-footer ul li{ margin-bottom:.65rem; font-size:.9rem; }
.badge-row-footer{ display:flex; gap:.6rem; flex-wrap:wrap; margin-top:1rem; }
.badge-row-footer span{
  font-size:.72rem; font-weight:700;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.2);
  padding:.35rem .7rem; border-radius:999px;
}

/* --------------------------- whatsapp float button --------------------------- */
.whatsapp-float{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  background: #25D366;
  color:#fff;
  width: 60px; height:60px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size: 1.9rem;
  box-shadow: 0 12px 28px -8px rgba(37,211,102,.65);
  animation: wa-pulse 2.4s infinite;
  text-decoration:none;
}
.whatsapp-float:hover{ color:#fff; transform: scale(1.06); }
@keyframes wa-pulse{
  0%{ box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70%{ box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.whatsapp-tooltip{
  position: fixed;
  right: 92px;
  bottom: 34px;
  background:#fff;
  color: var(--forest);
  font-weight:600;
  font-size:.85rem;
  padding:.55rem 1rem;
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  z-index: 1199;
  white-space: nowrap;
  display:none;
}
@media (min-width: 576px){
  .whatsapp-tooltip.show-tip{ display:block; }
}

/* back to top */
.back-to-top{
  position: fixed;
  right: 20px;
  bottom: 92px;
  z-index: 1150;
  width: 42px; height:42px;
  border-radius:50%;
  background: var(--forest);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden;
  transition: all .3s ease;
  border:none;
}
.back-to-top.show{ opacity:1; visibility:visible; }

/* ------------------------------- page header --------------------------------- */
.page-header{
  position:relative;
  color:#fff;
  padding: 9.5rem 0 4rem;
  overflow:hidden;
}
.page-header::before{
  content:"";
  position:absolute; inset:0;
  background-image: linear-gradient(115deg, rgba(20,61,36,.93), rgba(20,61,36,.72)), var(--ph-img, none);
  background-size: cover; background-position: center;
}
.page-header .container-xl{ position:relative; z-index:2; }
.page-header h1{ color:#fff; font-size: clamp(2rem, 3.6vw, 2.9rem); }
.breadcrumb-custom{ font-size:.85rem; color:#cfe0cd; }
.breadcrumb-custom a{ color:#cfe0cd; }
.breadcrumb-custom a:hover{ color: var(--sun-yellow); }

/* ------------------------------ responsive ------------------------------------ */
@media (max-width: 991.98px){
  .section{ padding: 3.6rem 0; }
  .hero{ min-height: auto; padding: 7.5rem 0 3.5rem; text-align:left; }
  .hero .hero-stats{ gap: 1.4rem; }
  .sunburst{ width: 420px; height:420px; right:-160px; bottom:-160px; }
  .cta-band{ padding: 2.2rem 1.6rem; text-align:center; }
  .form-panel{ padding: 1.6rem; }
  .contact-info-card{ padding: 1.8rem; }
}
@media (max-width: 575.98px){
  .whatsapp-float{ width:54px; height:54px; font-size:1.6rem; right:14px; bottom:14px; }
  .back-to-top{ right:14px; bottom:80px; width:38px; height:38px; }
  .hero .lead{ font-size:1.02rem; }
  .navbar-brand-custom img{ width:90px }
  .navbar-brand-custom .brand-text .name{ font-size:1rem; }
}

/* ------------------------------ scroll reveal ------------------------------- */
.reveal{ opacity:0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal-in{ opacity:1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
}

/* nav offcanvas polish */
.offcanvas{ background: var(--cream); }
.offcanvas .main-nav .nav-link{ font-size: 1.05rem; padding: .8rem 0 !important; border-bottom:1px solid var(--line); }

/* ------------------------- mobile nav (self-contained) ------------------------- */
.mobile-nav-backdrop{
  position: fixed; inset: 0;
  background: rgba(20,61,36,.45);
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 1990;
}
.mobile-nav-backdrop.show{ opacity: 1; visibility: visible; }

.mobile-nav{
  position: fixed;
  top: 0; right: 0;
  width: 88%; max-width: 360px;
  height: 100vh; height: 100dvh;
  background:#fff;
  box-shadow: -20px 0 40px -20px rgba(20,61,36,.35);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform .32s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.open{ transform: translateX(0); }
.mobile-nav-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.3rem;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.mobile-nav-close{
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--forest);
  cursor: pointer;
  padding: 0 .4rem;
}
.mobile-nav-body{ padding: 1.3rem; }
.mobile-nav .main-nav .nav-link{ font-size: 1.05rem; padding: .8rem 0 !important; border-bottom: 1px solid var(--line); }
body.mobile-nav-active{ overflow: hidden; }
@media (min-width: 992px){
  .mobile-nav, .mobile-nav-backdrop{ display: none !important; }
}

/* ------------------------------ extra responsive polish ------------------------------ */
@media (max-width: 991.98px){
  .navbar-toggler{ display: inline-flex; align-items: center; justify-content: center; }
}
@media (max-width: 767.98px){
  h1{ font-size: clamp(1.8rem, 6vw, 2.4rem); }
  h2{ font-size: clamp(1.5rem, 5vw, 1.9rem); }
  .hero{ padding: 6.5rem 0 3rem; }
  .hero .hero-stats{ gap: 1.1rem; }
  .hero .hero-stats > div{ flex: 1 1 40%; }
  .top-strip .container-xl{ flex-direction: column; gap: .3rem; align-items: flex-start !important; font-size: .76rem; }
  .filter-tabs{ gap: .45rem; }
  .filter-tab{ font-size: .8rem; padding: .5rem 1rem; }
  .table-responsive{ -webkit-overflow-scrolling: touch; }
  .cta-band{ padding: 1.8rem 1.3rem; }
  .container-xl{ padding-left: 1rem; padding-right: 1rem; }
}
@media (max-width: 400px){
  .hero .hero-stats > div{ flex: 1 1 100%; }
}
.about-media .badge-float img{
      border-radius: 50%;
  width: 80px!important;
}
.product-card img{
  height: 250px;
  width: 100%;
  object-fit: cover;
}
.whychoose{
     position: relative;
    background-image: url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.whychoose::before {
    content: "";
    position: absolute;
    inset: 0;
   /*background: rgba(0, 0, 0, 0.55);*/
}
.whychoose01 img{
  margin-bottom: 10px;
  width: 80px;
}
.cta{
    position: relative;
    background-image: url('../images/bg.png');
    background-size: cover;
    background-repeat: no-repeat;
}
.cta::before {
    content: "";
    position: absolute;
    inset: 0;
   background: rgba(0, 0, 0, 0.55);
}
.aboutus{
  position: relative;
    background-image: url('../images/aboutbg.png');
    background-repeat: no-repeat;
}
@media(max-width: 786px){
  .navbar-toggler i{ border-radius: 50px;
        padding: 8px;
        color: #fff !important;
        background: var(--forest); }

  .hero{
   padding: 100px 0 50px;
  }
  .trust-strip .item{
    display: block;
  }
  .trust-strip .item i{
    display: block;
  }
  .about-media .badge-float{
    left: 0.4rem;
    bottom: 0.4rem;
  }
  .hero .lead{
    display: none;
  }
  .page-header{
    padding: 140px 0 30px;
    text-align: center;
  }
  .page-header .lead{
    display: none;
  }
 }