/* =========================================================
   Creative Enterprises Theme Override (for your Tailwind site)
   Load this file LAST
========================================================= */

:root {
  --theme-color: #3c3e82;
  --theme-blue: #2563eb;
  --muted: #757f95;
  --border: #e9ecef;
}

/* HERO wrapper with light texture like reference */
.hero-texture {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(60, 62, 130, 0.08) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 82% 30%,
      rgba(37, 99, 235, 0.08) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
}

/* subtle grain */
.hero-texture::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.22;
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* hero spacing */
.hero-wrap {
  position: relative;
  z-index: 2;
  padding: 56px 0;
}
@media (min-width: 768px) {
  .hero-wrap {
    padding: 78px 0;
  }
}

/* Swiper dots */
.heroSwiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 0.35;
  background: #0f172a;
}
.heroSwiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--theme-color);
}

/* Arrow buttons */
.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(233, 236, 239, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  user-select: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}
.hero-arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.25);
}

/* text styles */
.hero-kicker {
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--theme-color);
  margin-bottom: 14px;
}
.hero-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  margin-bottom: 16px;
  color: #0f172a;
}
.hero-title span {
  color: var(--theme-color);
}
.hero-desc {
  color: var(--muted);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 22px;
}

/* buttons */
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 0.9rem;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, var(--theme-color), var(--theme-blue));
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.18);
}
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 0.9rem;
  color: #0f172a;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(233, 236, 239, 0.95);
}

/* image side */
.hero-img {
  width: min(560px, 100%);
  margin-left: auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(233, 236, 239, 0.9);
  background: #fff;
}
.hero-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
  .hero-img img {
    height: 300px;
  }
}

:root {
  /* Reference palette */
  --theme-color: #3c3e82;
  --ref-blue: #2563eb;
  --ref-bg: #f6f6f6;
  --ref-text: #757f95;
  --ref-footer: #111111;

  /* Map into your variables */
  --navy: var(--theme-color) !important;
  --navy-dark: #2f3070 !important;
  --blue: var(--ref-blue) !important;

  --pale: #e7f1ff !important;
  --pale-2: #f3f8ff !important;
  --muted: var(--ref-text) !important;
  --border: #e9ecef !important;
  --footer-bg: var(--ref-footer) !important;
}

/* Base page background like reference */
html,
body {
  background: var(--ref-bg) !important;
  color: #1e293b !important;
}

/* Paragraph default tone */
p {
  color: var(--muted) !important;
}

/* Navbar accents */
.nav-link:hover,
.nav-link.active {
  color: var(--blue) !important;
}
.nav-link::after {
  background: var(--blue) !important;
}

/* Primary buttons */
.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--navy)) !important;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.22) !important;
}

/* Pills / product badges */
.pill-label,
.product-badge {
  background: var(--pale) !important;
  color: var(--blue) !important;
  border-color: rgba(37, 99, 235, 0.18) !important;
}

/* Borders */
.feature-card,
.step-card,
.testimonial-card,
.quick-link-card,
.product-card,
.sidebar {
  border-color: var(--border) !important;
}

/* Footer */
footer {
  background: var(--footer-bg) !important;
}
.footer-link:hover {
  color: var(--blue) !important;
}

/* ===== Important: your hero backgrounds are hard-coded in your CSS.
   Override them so the theme change is clearly visible. ===== */
.hero,
.hero-section {
  background: linear-gradient(
    135deg,
    #2f3070 0%,
    #3c3e82 55%,
    #2563eb 100%
  ) !important;
}

/* Sidebar header gradient */
.sidebar-header {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy)) !important;
}

/* =========================================================
   HERO OVERRIDE (Reference-style texture + arrows + dots)
   Put at END of theme-creative-override.css
========================================================= */

/* Make sure the override file is actually loading (TEMP)
   Remove after confirmed */
body {
  outline: 3px solid rgba(34, 197, 94, 0.25) !important;
}

/* HERO background texture */
body section.hero-texture {
  position: relative !important;
  overflow: hidden !important;
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(60, 62, 130, 0.08) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 82% 30%,
      rgba(37, 99, 235, 0.08) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9)) !important;
}

body section.hero-texture::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background-image: radial-gradient(
    rgba(0, 0, 0, 0.05) 1px,
    transparent 1px
  ) !important;
  background-size: 14px 14px !important;
  opacity: 0.22 !important;
  pointer-events: none !important;
  mix-blend-mode: multiply !important;
}

/* Hero inner spacing */
body section.hero-texture .hero-wrap {
  position: relative !important;
  z-index: 2 !important;
  padding: 56px 0 !important;
}
@media (min-width: 768px) {
  body section.hero-texture .hero-wrap {
    padding: 78px 0 !important;
  }
}

/* Swiper dots */
body .heroSwiper .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  opacity: 0.35 !important;
  background: #0f172a !important;
}
body .heroSwiper .swiper-pagination-bullet-active {
  opacity: 1 !important;
  background: #3c3e82 !important;
}

/* Arrows */
body .hero-arrow {
  width: 44px !important;
  height: 44px !important;
  border-radius: 999px !important;
  background: #fff !important;
  border: 1px solid rgba(233, 236, 239, 0.95) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08) !important;
  cursor: pointer !important;
  user-select: none !important;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease !important;
}
body .hero-arrow:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(37, 99, 235, 0.25) !important;
}

/* Text styles */
body .hero-kicker {
  font-size: 0.8rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: #3c3e82 !important;
  margin-bottom: 14px !important;
}

body .hero-title {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.1 !important;
  font-size: clamp(2.1rem, 4vw, 3.4rem) !important;
  margin-bottom: 16px !important;
  color: #0f172a !important;
}
body .hero-title span {
  color: #3c3e82 !important;
}

body .hero-desc {
  color: #757f95 !important;
  line-height: 1.8 !important;
  max-width: 560px !important;
  margin-bottom: 22px !important;
}

/* Buttons */
body .hero-btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 12px 18px !important;
  border-radius: 12px !important;
  font-weight: 900 !important;
  font-size: 0.9rem !important;
  color: #fff !important;
  text-decoration: none !important;
  background: linear-gradient(135deg, #3c3e82, #2563eb) !important;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.18) !important;
}
body .hero-btn-secondary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 12px 18px !important;
  border-radius: 12px !important;
  font-weight: 900 !important;
  font-size: 0.9rem !important;
  color: #0f172a !important;
  text-decoration: none !important;
  background: #fff !important;
  border: 1px solid rgba(233, 236, 239, 0.95) !important;
}

/* Image card */
body .hero-img {
  width: min(560px, 100%) !important;
  margin-left: auto !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid rgba(233, 236, 239, 0.9) !important;
  background: #fff !important;
}
body .hero-img img {
  width: 100% !important;
  height: 360px !important;
  object-fit: cover !important;
  display: block !important;
}
@media (max-width: 1024px) {
  body .hero-img img {
    height: 300px !important;
  }
}
/* Add space between sticky navbar and hero */
.navbar {
  --nav-h: 72px; /* adjust if your navbar height is different */
}

section.hero-texture {
  padding-top: 16px !important; /* space below navbar */
}

/* If your hero inner wrapper controls spacing */
section.hero-texture .hero-wrap {
  padding-top: 28px !important; /* increase if you want more gap */
}

/* Mobile smaller gap */
@media (max-width: 768px) {
  section.hero-texture {
    padding-top: 10px !important;
  }
  section.hero-texture .hero-wrap {
    padding-top: 18px !important;
  }
}
/* =========================================================
   FORCE HERO SIZE + FORCE ARROWS/DOTS POSITION
   (Put at VERY END of theme-creative-override.css)
========================================================= */

/* 1) Make hero section tall like reference */
section.hero-texture,
section.hero-texture .hero-wrap {
  position: relative !important;
}

/* Make the visible hero area bigger */
section.hero-texture .hero-wrap {
  min-height: 88vh !important;
  padding-top: 90px !important;
  padding-bottom: 90px !important;
  display: flex !important;
  align-items: center !important;
}

/* 2) Make the swiper itself a positioning context */
section.hero-texture .heroSwiper {
  position: relative !important;
  width: 100% !important;
  padding-bottom: 64px !important; /* reserve space for dots */
}

/* Ensure slides have height */
section.hero-texture .heroSwiper .swiper-wrapper,
section.hero-texture .heroSwiper .swiper-slide {
  height: auto !important;
}

/* 3) Put DOTS at absolute bottom center */
section.hero-texture .heroSwiper .swiper-pagination {
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  bottom: 18px !important; /* force bottom */
  top: auto !important;
  z-index: 999 !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

section.hero-texture .heroSwiper .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  margin: 0 6px !important;
  opacity: 0.35 !important;
  background: #0f172a !important;
}
section.hero-texture .heroSwiper .swiper-pagination-bullet-active {
  opacity: 1 !important;
  background: #3c3e82 !important;
  transform: scale(1.2) !important;
}

/* 4) FORCE arrows to extreme LEFT/RIGHT of the hero section */
section.hero-texture .heroPrev.hero-arrow,
section.hero-texture .heroNext.hero-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 1000 !important;

  width: 52px !important;
  height: 52px !important;
  border-radius: 999px !important;

  background: #fff !important;
  border: 1px solid rgba(233, 236, 239, 0.95) !important;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1) !important;
}

/* Extreme edges */
section.hero-texture .heroPrev.hero-arrow {
  left: 10px !important;
}
section.hero-texture .heroNext.hero-arrow {
  right: 10px !important;
}

/* If your hero content has padding, push arrows outside slightly */
@media (min-width: 1024px) {
  section.hero-texture .heroPrev.hero-arrow {
    left: -6px !important;
  }
  section.hero-texture .heroNext.hero-arrow {
    right: -6px !important;
  }
}

/* 5) Make right image bigger (reference-like) */
section.hero-texture .hero-img {
  max-width: 760px !important;
  width: 100% !important;
}
section.hero-texture .hero-img img {
  height: 520px !important;
  object-fit: cover !important;
}

/* 6) Mobile adjustments */
@media (max-width: 768px) {
  section.hero-texture .hero-wrap {
    min-height: auto !important;
    padding-top: 46px !important;
    padding-bottom: 56px !important;
    align-items: flex-start !important;
  }

  section.hero-texture .heroSwiper {
    padding-bottom: 52px !important;
  }

  section.hero-texture .heroPrev.hero-arrow,
  section.hero-texture .heroNext.hero-arrow {
    width: 42px !important;
    height: 42px !important;
  }

  section.hero-texture .heroPrev.hero-arrow {
    left: 8px !important;
  }
  section.hero-texture .heroNext.hero-arrow {
    right: 8px !important;
  }

  section.hero-texture .hero-img img {
    height: 320px !important;
  }

  section.hero-texture .heroSwiper .swiper-pagination {
    bottom: 12px !important;
  }
}

/* =========================================================
   HERO OVERRIDE — FINAL CLEAN VERSION
   Delete ALL previous hero CSS, use ONLY this
========================================================= */

/* ── DEBUG (remove after confirmed) ── */
body {
  outline: 3px solid rgba(34, 197, 94, 0.25) !important;
}

/* ── HERO BACKGROUND TEXTURE ── */
section.hero-texture {
  position: relative !important;
  overflow: visible !important; /* ← was hidden, changed so arrows can go outside */
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(60, 62, 130, 0.08) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 82% 30%,
      rgba(37, 99, 235, 0.08) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9)) !important;
}

/* Dot texture overlay — FIX: remove hard edge / line */
section.hero-texture::after {
  content: "" !important;
  position: absolute !important;
  inset: -20px !important; /* ← was 0, now bleeds out so no hard line at edges */
  background-image: radial-gradient(
    rgba(0, 0, 0, 0.04) 1px,
    transparent 1px
  ) !important;
  background-size: 14px 14px !important;
  opacity: 0.18 !important; /* ← reduced slightly */
  pointer-events: none !important;
  mix-blend-mode: multiply !important;
  z-index: 0 !important;
  mask-image: radial-gradient(
    ellipse 90% 90% at center,
    black 60%,
    transparent 100%
  ) !important;
  -webkit-mask-image: radial-gradient(
    ellipse 90% 90% at center,
    black 60%,
    transparent 100%
  ) !important;
  /* ↑ soft fade at edges — kills the visible line */
}

/* ── HERO WRAP ── */
section.hero-texture .hero-wrap {
  position: relative !important;
  z-index: 2 !important;
  min-height: 88vh !important;
  display: flex !important;
  align-items: center !important;
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

/* ── SWIPER CONTAINER ── */
section.hero-texture .heroSwiper {
  position: relative !important;
  width: 100% !important;
  padding-bottom: 80px !important;
}

section.hero-texture .heroSwiper .swiper-wrapper,
section.hero-texture .heroSwiper .swiper-slide {
  height: auto !important;
}

/* ══════════════════════════════════════════════
   FIX #1: TEXT COLUMN — ADD INNER PADDING
   No more touching the left edge
   ══════════════════════════════════════════════ */
.hero-text-col {
  padding-left: 20px !important; /* ← space from left edge */
  padding-right: 24px !important; /* ← space between text and image */
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

@media (min-width: 1024px) {
  .hero-text-col {
    padding-left: 36px !important; /* ← more space on desktop */
    padding-right: 40px !important;
  }
}

@media (min-width: 1280px) {
  .hero-text-col {
    padding-left: 48px !important; /* ← even more on XL */
    padding-right: 48px !important;
  }
}

/* ── TEXT STYLES WITH BETTER SPACING ── */
.hero-kicker {
  font-size: 0.8rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: #3c3e82 !important;
  margin-bottom: 22px !important;
}

.hero-title {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.15 !important;
  font-size: clamp(2.1rem, 4vw, 3.4rem) !important;
  margin-bottom: 26px !important;
  color: #0f172a !important;
}
.hero-title span {
  color: #3c3e82 !important;
}

.hero-desc {
  color: #757f95 !important;
  font-size: 1.05rem !important;
  line-height: 1.85 !important;
  max-width: 540px !important;
  margin-bottom: 34px !important;
}

/* ── BUTTONS ── */
.hero-btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 14px 26px !important;
  border-radius: 12px !important;
  font-weight: 900 !important;
  font-size: 0.9rem !important;
  color: #fff !important;
  text-decoration: none !important;
  background: linear-gradient(135deg, #3c3e82, #2563eb) !important;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.18) !important;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease !important;
}
.hero-btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.25) !important;
}

.hero-btn-secondary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 14px 26px !important;
  border-radius: 12px !important;
  font-weight: 900 !important;
  font-size: 0.9rem !important;
  color: #0f172a !important;
  text-decoration: none !important;
  background: #fff !important;
  border: 1px solid rgba(233, 236, 239, 0.95) !important;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease !important;
}
.hero-btn-secondary:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(37, 99, 235, 0.25) !important;
}

/* ── IMAGE CARD ── */
.hero-img {
  max-width: 760px !important;
  width: 100% !important;
  margin-left: auto !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid rgba(233, 236, 239, 0.9) !important;
  background: #fff !important;
}
.hero-img img {
  width: 100% !important;
  height: 520px !important;
  object-fit: cover !important;
  display: block !important;
}

/* ══════════════════════════════════════════════
   FIX #3: DOTS — BOTTOM POSITION
   ══════════════════════════════════════════════ */
section.hero-texture .heroSwiper .swiper-pagination {
  position: absolute !important;
  bottom: 0 !important;
  top: auto !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 999 !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  gap: 10px !important;
}

section.hero-texture .heroSwiper .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  margin: 0 !important;
  opacity: 0.3 !important;
  background: #0f172a !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
}

section.hero-texture .heroSwiper .swiper-pagination-bullet-active {
  opacity: 1 !important;
  background: #3c3e82 !important;
  transform: scale(1.3) !important;
  box-shadow: 0 0 0 3px rgba(60, 62, 130, 0.2) !important;
}

/* ══════════════════════════════════════════════
   FIX #2: ARROWS — EXTREME LEFT & RIGHT
   ══════════════════════════════════════════════ */
.hero-arrow.heroPrev,
.hero-arrow.heroNext {
  position: absolute !important;
  top: 45% !important;
  transform: translateY(-50%) !important;
  z-index: 1000 !important;

  width: 52px !important;
  height: 52px !important;
  border-radius: 999px !important;

  background: #fff !important;
  border: 1px solid rgba(233, 236, 239, 0.95) !important;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1) !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  user-select: none !important;
  pointer-events: auto !important;
  font-size: 1.5rem !important;
  color: #0f172a !important;
  line-height: 1 !important;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease !important;
}

.hero-arrow.heroPrev:hover,
.hero-arrow.heroNext:hover {
  transform: translateY(-50%) scale(1.08) !important;
  border-color: rgba(37, 99, 235, 0.3) !important;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.15) !important;
}

/* Default position */
.hero-arrow.heroPrev {
  left: -10px !important;
}
.hero-arrow.heroNext {
  right: -10px !important;
}

/* Large screens — push far outside */
@media (min-width: 1024px) {
  .hero-arrow.heroPrev {
    left: -46px !important;
  }
  .hero-arrow.heroNext {
    right: -46px !important;
  }
}

@media (min-width: 1280px) {
  .hero-arrow.heroPrev {
    left: -70px !important;
  } /* ← very far left */
  .hero-arrow.heroNext {
    right: -70px !important;
  } /* ← very far right */
}

@media (min-width: 1536px) {
  .hero-arrow.heroPrev {
    left: -90px !important;
  } /* ← extreme on 2xl */
  .hero-arrow.heroNext {
    right: -90px !important;
  }
}

/* ══════════════════════════════════════════════
   MOBILE RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {
  section.hero-texture .hero-wrap {
    min-height: auto !important;
    padding-top: 50px !important;
    padding-bottom: 60px !important;
    align-items: flex-start !important;
  }

  section.hero-texture .heroSwiper {
    padding-bottom: 60px !important;
  }

  .hero-text-col {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .hero-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem) !important;
    margin-bottom: 18px !important;
  }

  .hero-kicker {
    margin-bottom: 14px !important;
    font-size: 0.72rem !important;
  }

  .hero-desc {
    font-size: 0.95rem !important;
    margin-bottom: 24px !important;
  }

  .hero-img img {
    height: 280px !important;
  }

  .hero-arrow.heroPrev,
  .hero-arrow.heroNext {
    width: 38px !important;
    height: 38px !important;
    font-size: 1.1rem !important;
  }

  .hero-arrow.heroPrev {
    left: 4px !important;
  }
  .hero-arrow.heroNext {
    right: 4px !important;
  }

  section.hero-texture .heroSwiper .swiper-pagination {
    bottom: 6px !important;
  }

  section.hero-texture .heroSwiper .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .hero-img img {
    height: 400px !important;
  }
}
/* ══════════════════════════════════════════════
   ARROWS — MAXIMUM LEFT & RIGHT POSITIONING
   ══════════════════════════════════════════════ */

/* Parent must allow overflow */
section.hero-texture {
  overflow: visible !important;
}

/* The relative container for arrows */
section.hero-texture .hero-wrap .max-w-7xl {
  position: relative !important;
}

.hero-arrow.heroPrev,
.hero-arrow.heroNext {
  position: absolute !important;
  top: 42% !important;
  transform: translateY(-50%) !important;
  z-index: 1000 !important;

  /* ── Bigger size ── */
  width: 60px !important; /* ← was 52px */
  height: 60px !important; /* ← was 52px */
  border-radius: 999px !important;

  background: #fff !important;
  border: 1px solid rgba(233, 236, 239, 0.95) !important;
  box-shadow:
    0 12px 35px rgba(15, 23, 42, 0.12),
    0 2px 8px rgba(15, 23, 42, 0.06) !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  user-select: none !important;
  pointer-events: auto !important;

  /* ── Bigger arrow character ── */
  font-size: 1.8rem !important; /* ← was 1.5rem */
  font-weight: 300 !important;
  color: #0f172a !important;
  line-height: 1 !important;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease !important;
}

.hero-arrow.heroPrev:hover,
.hero-arrow.heroNext:hover {
  transform: translateY(-50%) scale(1.1) !important;
  border-color: rgba(60, 62, 130, 0.35) !important;
  background: #fafbff !important;
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.18),
    0 4px 12px rgba(60, 62, 130, 0.1) !important;
}

/* ── Default (small screens 768-1023) ── */
.hero-arrow.heroPrev {
  left: -16px !important;
}
.hero-arrow.heroNext {
  right: -16px !important;
}

/* ── 1024px+ : push outside content ── */
@media (min-width: 1024px) {
  .hero-arrow.heroPrev {
    left: -80px !important;
  }
  .hero-arrow.heroNext {
    right: -80px !important;
  }
}

/* ── 1280px+ : push further ── */
@media (min-width: 1280px) {
  .hero-arrow.heroPrev {
    left: -110px !important;
  }
  .hero-arrow.heroNext {
    right: -110px !important;
  }
}

/* ── 1536px+ : extreme edges ── */
@media (min-width: 1536px) {
  .hero-arrow.heroPrev {
    left: -140px !important;
  }
  .hero-arrow.heroNext {
    right: -140px !important;
  }
}

/* ── 1800px+ : ultra wide monitors ── */
@media (min-width: 1800px) {
  .hero-arrow.heroPrev {
    left: -170px !important;
  }
  .hero-arrow.heroNext {
    right: -170px !important;
  }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .hero-arrow.heroPrev,
  .hero-arrow.heroNext {
    width: 42px !important;
    height: 42px !important;
    font-size: 1.2rem !important;
  }

  .hero-arrow.heroPrev {
    left: 4px !important;
  }
  .hero-arrow.heroNext {
    right: 4px !important;
  }
}

/* =========================================================
   HERO — FULL WIDTH EDGE-TO-EDGE
   Replace ALL previous hero CSS with this
========================================================= */

/* ── DEBUG (remove after confirmed) ── */
body {
  outline: 3px solid rgba(34, 197, 94, 0.25) !important;
}

/* ── HERO SECTION — FULL BLEED ── */
section.hero-texture {
  position: relative !important;
  overflow: visible !important;
  width: 100vw !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 0 !important;
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(60, 62, 130, 0.08) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 82% 30%,
      rgba(37, 99, 235, 0.08) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9)) !important;
}

/* Dot texture — soft fade at edges */
section.hero-texture::after {
  content: "" !important;
  position: absolute !important;
  inset: -20px !important;
  background-image: radial-gradient(
    rgba(0, 0, 0, 0.04) 1px,
    transparent 1px
  ) !important;
  background-size: 14px 14px !important;
  opacity: 0.18 !important;
  pointer-events: none !important;
  mix-blend-mode: multiply !important;
  z-index: 0 !important;
  mask-image: radial-gradient(
    ellipse 95% 90% at center,
    black 65%,
    transparent 100%
  ) !important;
  -webkit-mask-image: radial-gradient(
    ellipse 95% 90% at center,
    black 65%,
    transparent 100%
  ) !important;
}

/* ── HERO WRAP — FULL WIDTH ── */
section.hero-texture .hero-wrap {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 90vh !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* ── SWIPER — FULL WIDTH ── */
section.hero-texture .heroSwiper {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  padding-bottom: 80px !important;
}

section.hero-texture .heroSwiper .swiper-wrapper,
section.hero-texture .heroSwiper .swiper-slide {
  height: auto !important;
  width: 100% !important;
}

/* ══════════════════════════════════════════════
   SLIDE CONTENT — FULL WIDTH GRID
   ══════════════════════════════════════════════ */
.hero-slide-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0 !important;
  align-items: center !important;
  width: 100% !important;
  min-height: 80vh !important;
}

/* ── LEFT: TEXT COLUMN ── */
.hero-text-col {
  padding-left: 6vw !important; /* ← scales with viewport */
  padding-right: 4vw !important;
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

@media (min-width: 1280px) {
  .hero-text-col {
    padding-left: 8vw !important;
    padding-right: 5vw !important;
  }
}

@media (min-width: 1536px) {
  .hero-text-col {
    padding-left: 10vw !important;
    padding-right: 6vw !important;
  }
}

/* ── RIGHT: IMAGE COLUMN — FULL BLEED RIGHT ── */
.hero-img-col {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 80vh !important;
  overflow: hidden !important;
}

.hero-img-col img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* Subtle overlay on image for polish */
.hero-img-col::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 30%
  ) !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

/* ── TEXT STYLES ── */
.hero-kicker {
  font-size: 0.82rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: #3c3e82 !important;
  margin-bottom: 24px !important;
}

.hero-title {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.12 !important;
  font-size: clamp(
    2.2rem,
    3.8vw,
    3.8rem
  ) !important; /* ← bigger on large screens */
  margin-bottom: 28px !important;
  color: #0f172a !important;
}
.hero-title span {
  color: #3c3e82 !important;
}

.hero-desc {
  color: #64748b !important;
  font-size: 1.08rem !important;
  line-height: 1.85 !important;
  max-width: 520px !important;
  margin-bottom: 38px !important;
}

/* ── BUTTONS ── */
.hero-btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 15px 30px !important;
  border-radius: 12px !important;
  font-weight: 900 !important;
  font-size: 0.92rem !important;
  color: #fff !important;
  text-decoration: none !important;
  background: linear-gradient(135deg, #3c3e82, #2563eb) !important;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.18) !important;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease !important;
}
.hero-btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28) !important;
}

.hero-btn-secondary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 15px 30px !important;
  border-radius: 12px !important;
  font-weight: 900 !important;
  font-size: 0.92rem !important;
  color: #0f172a !important;
  text-decoration: none !important;
  background: #fff !important;
  border: 1px solid rgba(233, 236, 239, 0.95) !important;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease !important;
}
.hero-btn-secondary:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(37, 99, 235, 0.25) !important;
}

/* ══════════════════════════════════════════════
   DOTS — BOTTOM CENTER
   ══════════════════════════════════════════════ */
section.hero-texture .heroSwiper .swiper-pagination {
  position: absolute !important;
  bottom: 8px !important;
  top: auto !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 999 !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  gap: 10px !important;
}

section.hero-texture .heroSwiper .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  margin: 0 !important;
  opacity: 0.3 !important;
  background: #0f172a !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
}

section.hero-texture .heroSwiper .swiper-pagination-bullet-active {
  opacity: 1 !important;
  background: #3c3e82 !important;
  transform: scale(1.3) !important;
  box-shadow: 0 0 0 3px rgba(60, 62, 130, 0.2) !important;
}

/* ══════════════════════════════════════════════
   ARROWS — EXTREME LEFT & RIGHT
   ══════════════════════════════════════════════ */
.hero-arrow.heroPrev,
.hero-arrow.heroNext {
  position: fixed !important; /* ← FIXED to viewport edges */
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 1001 !important;

  width: 60px !important;
  height: 60px !important;
  border-radius: 999px !important;

  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(233, 236, 239, 0.95) !important;
  box-shadow:
    0 12px 35px rgba(15, 23, 42, 0.12),
    0 2px 8px rgba(15, 23, 42, 0.06) !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  user-select: none !important;
  pointer-events: auto !important;

  color: #0f172a !important;
  line-height: 1 !important;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease !important;
}

/* ── Viewport edges ── */
.hero-arrow.heroPrev {
  left: 24px !important; /* ← 24px from browser left edge */
}
.hero-arrow.heroNext {
  right: 24px !important; /* ← 24px from browser right edge */
}

@media (min-width: 1280px) {
  .hero-arrow.heroPrev {
    left: 36px !important;
  }
  .hero-arrow.heroNext {
    right: 36px !important;
  }
}

@media (min-width: 1536px) {
  .hero-arrow.heroPrev {
    left: 48px !important;
  }
  .hero-arrow.heroNext {
    right: 48px !important;
  }
}

.hero-arrow.heroPrev:hover,
.hero-arrow.heroNext:hover {
  transform: translateY(-50%) scale(1.1) !important;
  border-color: rgba(60, 62, 130, 0.35) !important;
  background: #fff !important;
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.18),
    0 4px 12px rgba(60, 62, 130, 0.1) !important;
}

/* ══════════════════════════════════════════════
   MOBILE — STACKED LAYOUT
   ══════════════════════════════════════════════ */
@media (max-width: 1023px) {
  section.hero-texture .hero-wrap {
    min-height: auto !important;
  }

  .hero-slide-grid {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  .hero-text-col {
    padding: 50px 24px 30px 24px !important;
    order: 1 !important;
  }

  .hero-img-col {
    min-height: 320px !important;
    order: 2 !important;
  }

  .hero-title {
    font-size: clamp(1.7rem, 6vw, 2.4rem) !important;
    margin-bottom: 18px !important;
  }

  .hero-kicker {
    margin-bottom: 14px !important;
    font-size: 0.72rem !important;
  }

  .hero-desc {
    font-size: 0.95rem !important;
    margin-bottom: 24px !important;
  }
}

@media (max-width: 768px) {
  .hero-text-col {
    padding: 36px 20px 24px 20px !important;
  }

  .hero-img-col {
    min-height: 260px !important;
  }

  .hero-arrow.heroPrev,
  .hero-arrow.heroNext {
    width: 42px !important;
    height: 42px !important;
    position: absolute !important; /* ← back to absolute on mobile */
  }

  .hero-arrow.heroPrev {
    left: 10px !important;
  }
  .hero-arrow.heroNext {
    right: 10px !important;
  }

  section.hero-texture .heroSwiper .swiper-pagination {
    bottom: 6px !important;
  }

  section.hero-texture .heroSwiper .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
  }

  section.hero-texture .heroSwiper {
    padding-bottom: 50px !important;
  }
}

/* =========================================================
   NEW SECTIONS — Stats, Banner, About, Testimonials,
   Gallery, FAQ
   (Add AFTER existing hero CSS in theme-creative-override.css)
========================================================= */

/* ══════════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════════ */
.stats-bar {
  background: linear-gradient(135deg, #3c3e82 0%, #2563eb 100%) !important;
  padding: 60px 0 !important;
  position: relative !important;
  overflow: hidden !important;
}
.stats-bar::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px) !important;
  background-size: 48px 48px !important;
  pointer-events: none !important;
}
.stats-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 32px !important;
  text-align: center !important;
  position: relative !important;
  z-index: 2 !important;
}
.stat-item {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: baseline !important;
  gap: 2px !important;
}
.stat-number {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-size: clamp(2.4rem, 4vw, 3.6rem) !important;
  font-weight: 900 !important;
  color: #fff !important;
  line-height: 1 !important;
}
.stat-suffix {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-size: clamp(1.6rem, 3vw, 2.4rem) !important;
  font-weight: 900 !important;
  color: rgba(255, 255, 255, 0.6) !important;
}
.stat-label {
  width: 100% !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  margin-top: 8px !important;
}
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 28px 16px !important;
  }
}

/* ══════════════════════════════════════════════
   MEGA BANNER CTA
   ══════════════════════════════════════════════ */
.mega-banner {
  padding: 20px 16px !important;
}
.mega-banner-inner {
  max-width: 1280px !important;
  margin: 0 auto !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  background:
    linear-gradient(135deg, rgba(60, 62, 130, 0.95), rgba(37, 99, 235, 0.9)),
    url("./assets/images/home/close-up-machine-part_.jpg") center / cover !important;
  padding: 70px 40px !important;
  text-align: center !important;
  position: relative !important;
}
.mega-banner-inner::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px
  ) !important;
  background-size: 20px 20px !important;
  pointer-events: none !important;
}
.mega-banner-content {
  position: relative !important;
  z-index: 2 !important;
}
.mega-banner-title {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-weight: 900 !important;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
  color: #fff !important;
  line-height: 1.2 !important;
  margin: 16px 0 20px !important;
}
.mega-banner-desc {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 1.05rem !important;
  line-height: 1.75 !important;
  max-width: 600px !important;
  margin: 0 auto 30px !important;
}
.mega-banner-btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 14px 28px !important;
  border-radius: 12px !important;
  font-weight: 800 !important;
  font-size: 0.9rem !important;
  color: #3c3e82 !important;
  background: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
  transition:
    transform 0.2s,
    box-shadow 0.2s !important;
}
.mega-banner-btn-primary:hover {
  transform: translateY(-2px) !important;
}
.mega-banner-btn-secondary {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 14px 28px !important;
  border-radius: 12px !important;
  font-weight: 800 !important;
  font-size: 0.9rem !important;
  color: #fff !important;
  background: transparent !important;
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
  text-decoration: none !important;
  transition: all 0.2s !important;
}
.mega-banner-btn-secondary:hover {
  border-color: #fff !important;
  transform: translateY(-2px) !important;
}

/* ══════════════════════════════════════════════
   ABOUT PREVIEW
   ══════════════════════════════════════════════ */
.about-img-grid {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 1.2fr 1fr !important;
  gap: 16px !important;
}
.about-img-main {
  grid-row: 1 / 3 !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12) !important;
}
.about-img-main img {
  width: 100% !important;
  height: 100% !important;
  min-height: 380px !important;
  object-fit: cover !important;
  display: block !important;
}
.about-img-secondary {
  border-radius: 18px !important;
  overflow: hidden !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08) !important;
}
.about-img-secondary img {
  width: 100% !important;
  height: 200px !important;
  object-fit: cover !important;
  display: block !important;
}
.about-experience-badge {
  background: linear-gradient(135deg, #3c3e82, #2563eb) !important;
  border-radius: 18px !important;
  padding: 24px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  color: #fff !important;
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.25) !important;
}
.about-exp-number {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-size: 2.4rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}
.about-exp-text {
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  opacity: 0.9 !important;
}
.about-checklist {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 8px 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}
.about-checklist li {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: #334155 !important;
}
.about-check-icon {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  border-radius: 8px !important;
  background: #e7f1ff !important;
  color: #2563eb !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
@media (max-width: 768px) {
  .about-img-grid {
    grid-template-columns: 1fr !important;
  }
  .about-img-main {
    grid-row: auto !important;
  }
  .about-img-main img {
    min-height: 240px !important;
  }
}

/* ══════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════ */
.testimonials-section {
  padding: 80px 0 90px !important;
  background: #f6f6f6 !important;
}
.testimonial-card {
  background: #fff !important;
  border-radius: 20px !important;
  padding: 32px 28px !important;
  border: 1px solid #e9ecef !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  transition: all 0.3s ease !important;
}
.testimonial-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08) !important;
  transform: translateY(-4px) !important;
  border-color: rgba(37, 99, 235, 0.2) !important;
}
.testi-quote-icon {
  font-size: 2.5rem !important;
  line-height: 1 !important;
  color: #2563eb !important;
  opacity: 0.25 !important;
  font-family: Georgia, serif !important;
}
.testimonial-text {
  font-size: 0.95rem !important;
  line-height: 1.8 !important;
  color: #475569 !important;
  flex: 1 !important;
}
.testimonial-stars {
  color: #f59e0b !important;
  font-size: 0.9rem !important;
  letter-spacing: 2px !important;
}
.testimonial-author-row {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding-top: 16px !important;
  border-top: 1px solid #e9ecef !important;
}
.testimonial-avatar {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #3c3e82, #2563eb) !important;
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 0.85rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.testimonial-name {
  font-weight: 800 !important;
  font-size: 0.92rem !important;
  color: #0f172a !important;
}
.testimonial-role {
  font-size: 0.78rem !important;
  color: #757f95 !important;
  font-weight: 500 !important;
}
.testi-nav-btn {
  width: 44px !important;
  height: 44px !important;
  border-radius: 999px !important;
  background: #fff !important;
  border: 1px solid #e9ecef !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  color: #0f172a !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06) !important;
  transition: all 0.25s !important;
}
.testi-nav-btn:hover {
  border-color: rgba(37, 99, 235, 0.3) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
}
.testimonial-dots {
  position: static !important;
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  width: auto !important;
}
.testimonial-dots .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  background: #cbd5e1 !important;
  opacity: 1 !important;
  margin: 0 !important;
}
.testimonial-dots .swiper-pagination-bullet-active {
  background: #2563eb !important;
  transform: scale(1.2) !important;
}

/* ══════════════════════════════════════════════
 
/* ════════════════════════════════════════
   CLEAN GALLERY GRID
   ════════════════════════════════════════ */

.gallery-section {
  padding: 80px 0 90px;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}

.gallery-open {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.gallery-item-wrapper {
  width: 100%;
  height: 100%;
}

.gallery-item-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  cursor: pointer;
  background: #f7f7f7;
}

.gallery-item-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 58, 95, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease;
}

.gallery-plus {
  font-size: 1.8rem;
  color: #fff;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.35s ease;
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.gallery-open:hover .gallery-overlay {
  background: rgba(31, 58, 95, 0.55);
}

.gallery-open:hover .gallery-plus {
  opacity: 1;
  transform: scale(1);
}

/* Responsive */
@media (max-width: 1280px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
}
/* ══════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════ */
.faq-section {
  padding: 80px 0 90px !important;
  background: #f6f6f6 !important;
}
.faq-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}
.faq-item {
  background: #fff !important;
  border-radius: 14px !important;
  border: 1px solid #e9ecef !important;
  overflow: hidden !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  transition:
    border-color 0.3s,
    box-shadow 0.3s !important;
}
.faq-item.faq-open {
  border-color: rgba(37, 99, 235, 0.3) !important;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08) !important;
}
.faq-question {
  width: 100% !important;
  padding: 20px 24px !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  text-align: left !important;
  font-family: "Plus Jakarta Sans", sans-serif !important;
  transition: color 0.3s !important;
}
.faq-item.faq-open .faq-question {
  color: #2563eb !important;
}
.faq-chevron {
  min-width: 20px !important;
  color: #757f95 !important;
  transition:
    transform 0.35s ease,
    color 0.3s !important;
}
.faq-item.faq-open .faq-chevron {
  transform: rotate(180deg) !important;
  color: #2563eb !important;
}
.faq-answer {
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height 0.4s ease !important;
}
.faq-answer p {
  padding: 0 24px 20px !important;
  margin: 0 !important;
  font-size: 0.92rem !important;
  line-height: 1.8 !important;
  color: #64748b !important;
}
/* ── TEXT COLUMN — SHIFTED LEFT ── */
.hero-text-col {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: 60px 4vw 60px 3vw !important; /* ← reduced left padding */
}

@media (min-width: 1024px) {
  .hero-text-col {
    padding: 80px 5vw 80px 4vw !important; /* ← tighter left */
  }
}

@media (min-width: 1280px) {
  .hero-text-col {
    padding: 80px 5vw 80px 5vw !important; /* ← was 8vw, now 5vw */
  }
}

@media (min-width: 1536px) {
  .hero-text-col {
    padding: 80px 6vw 80px 6vw !important; /* ← was 12vw, now 6vw */
  }
}

@media (min-width: 1800px) {
  .hero-text-col {
    padding: 80px 6vw 80px 8vw !important; /* ← only slight pad on ultra wide */
  }
}

/* ══════════════════════════════════════════════
   GALLERY — FIXED EQUAL SIZE CARDS
   ══════════════════════════════════════════════ */
.gallery-section {
  padding: 80px 0 90px !important;
  background: #fff !important;
}

.gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  grid-auto-rows: 260px !important; /* ← fixed height for ALL rows */
  gap: 16px !important;
}

/* Remove tall class effect — all same height now */
.gallery-tall {
  grid-row: span 1 !important; /* ← override span 2 to span 1 */
}

.gallery-item-wrapper {
  width: 100% !important;
  height: 260px !important; /* ← matches grid-auto-rows */
}

.gallery-item-card {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06) !important;
  cursor: pointer !important;
  border: 1px solid #e9ecef !important;
  background: #f7f7f7 !important;
}

.gallery-item-card img {
  position: absolute !important; /* ← absolute fill */
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important; /* ← always fills card */
  object-position: center !important;
  display: block !important;
  transition: transform 0.4s ease !important;
}

.gallery-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(60, 62, 130, 0) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.35s ease !important;
  z-index: 2 !important;
}

.gallery-plus {
  font-size: 1.8rem !important;
  font-weight: 300 !important;
  color: #fff !important;
  opacity: 0 !important;
  transform: scale(0.5) !important;
  transition: all 0.35s ease !important;
  width: 52px !important;
  height: 52px !important;
  border: 2px solid rgba(255, 255, 255, 0.85) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(4px) !important;
}

/* Hover effects */
.gallery-item-card:hover img {
  transform: scale(1.06) !important;
}
.gallery-item-card:hover .gallery-overlay {
  background: rgba(60, 62, 130, 0.52) !important;
}
.gallery-item-card:hover .gallery-plus {
  opacity: 1 !important;
  transform: scale(1) !important;
}

/* ── TABLET: 3 columns ── */
@media (max-width: 1280px) and (min-width: 769px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    grid-auto-rows: 240px !important;
  }
  .gallery-item-wrapper {
    height: 240px !important;
  }
}

/* ── MOBILE: 2 columns ── */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: 180px !important;
    gap: 12px !important;
  }
  .gallery-item-wrapper {
    height: 180px !important;
  }
  .gallery-tall {
    grid-row: span 1 !important;
  }
}

/* ── SMALL MOBILE: 1 column ── */
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(1, 1fr) !important;
    grid-auto-rows: 220px !important;
  }
  .gallery-item-wrapper {
    height: 220px !important;
  }
}

/* ══════════════════════════════════════════════
   WHY CHOOSE US — REDESIGNED
   ══════════════════════════════════════════════ */
.why-section {
  padding: 80px 0 90px !important;
  background: #fff !important;
  position: relative !important;
}

/* ── TOP ROW ── */
.why-top-row {
  display: grid !important;
  grid-template-columns: 1.1fr 1fr 0.9fr !important;
  gap: 20px !important;
  margin-bottom: 20px !important;
}

/* ── BASE CARD ── */
.why-card {
  border-radius: 20px !important;
  padding: 36px 32px !important;
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease !important;
}
.why-card:hover {
  transform: translateY(-6px) !important;
}

/* ── ACCENT CARD (dark navy) ── */
.why-card--accent {
  background: linear-gradient(
    145deg,
    #1e2060 0%,
    #3c3e82 60%,
    #2563eb 100%
  ) !important;
  color: #fff !important;
  box-shadow: 0 20px 60px rgba(60, 62, 130, 0.3) !important;
  min-height: 360px !important;
}
.why-card--accent::before {
  content: "" !important;
  position: absolute !important;
  top: -40px !important;
  right: -40px !important;
  width: 180px !important;
  height: 180px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.05) !important;
  pointer-events: none !important;
}
.why-card--accent::after {
  content: "" !important;
  position: absolute !important;
  bottom: -60px !important;
  left: -30px !important;
  width: 220px !important;
  height: 220px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.04) !important;
  pointer-events: none !important;
}

/* Icon wrap on accent card */
.why-card--accent .why-card-icon-wrap {
  width: 60px !important;
  height: 60px !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.15) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  position: relative !important;
  z-index: 2 !important;
  backdrop-filter: blur(10px) !important;
}

.why-card--accent .why-card-title {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  color: #fff !important;
  position: relative !important;
  z-index: 2 !important;
}

.why-card--accent .why-card-desc {
  font-size: 0.92rem !important;
  line-height: 1.8 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  position: relative !important;
  z-index: 2 !important;
  flex: 1 !important;
}

.why-card-stat {
  display: flex !important;
  align-items: baseline !important;
  gap: 8px !important;
  padding: 16px 20px !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  position: relative !important;
  z-index: 2 !important;
  backdrop-filter: blur(8px) !important;
}
.why-stat-number {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-size: 1.8rem !important;
  font-weight: 900 !important;
  color: #fff !important;
}
.why-stat-label {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.75) !important;
}

/* ── LIGHT CARD (white) ── */
.why-card--light {
  background: #fff !important;
  border: 1px solid #e9ecef !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06) !important;
  min-height: 360px !important;
}
.why-card--light:hover {
  border-color: rgba(37, 99, 235, 0.25) !important;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.1) !important;
}

.why-card-icon-wrap--blue {
  width: 60px !important;
  height: 60px !important;
  border-radius: 16px !important;
  background: #e7f1ff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #2563eb !important;
}

.why-card--light .why-card-title {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-size: 1.3rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
}

.why-card--light .why-card-desc {
  font-size: 0.92rem !important;
  line-height: 1.8 !important;
  color: #64748b !important;
  flex: 1 !important;
}

.why-card-tag {
  display: inline-flex !important;
  align-items: center !important;
  padding: 8px 16px !important;
  background: #e7f1ff !important;
  color: #2563eb !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  border-radius: 999px !important;
  border: 1px solid rgba(37, 99, 235, 0.2) !important;
  width: fit-content !important;
}

/* ── IMAGE CARD ── */
.why-card--image {
  padding: 0 !important;
  min-height: 360px !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  position: relative !important;
}
.why-card--image img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  transition: transform 0.5s ease !important;
}
.why-card--image:hover img {
  transform: scale(1.05) !important;
}

.why-img-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(15, 23, 42, 0.7) 100%
  ) !important;
  display: flex !important;
  align-items: flex-end !important;
  padding: 28px !important;
  z-index: 2 !important;
}

.why-img-badge {
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  color: #fff !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  padding: 10px 18px !important;
  border-radius: 12px !important;
  letter-spacing: 0.04em !important;
}
.why-img-badge strong {
  font-weight: 900 !important;
  font-size: 1rem !important;
}

/* ── BOTTOM ROW ── */
.why-bottom-row {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
}

.why-small-card {
  background: #f6f6f6 !important;
  border-radius: 18px !important;
  padding: 28px 26px !important;
  border: 1px solid #e9ecef !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
}
.why-small-card::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 3px !important;
  background: linear-gradient(90deg, #3c3e82, #2563eb) !important;
  opacity: 0 !important;
  transition: opacity 0.3s !important;
  border-radius: 18px 18px 0 0 !important;
}
.why-small-card:hover {
  background: #fff !important;
  border-color: rgba(37, 99, 235, 0.2) !important;
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.08) !important;
  transform: translateY(-4px) !important;
}
.why-small-card:hover::before {
  opacity: 1 !important;
}

.why-small-icon {
  width: 50px !important;
  height: 50px !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, #3c3e82, #2563eb) !important;
  color: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2) !important;
  flex-shrink: 0 !important;
}

.why-small-title {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 0 4px 0 !important;
}

.why-small-desc {
  font-size: 0.88rem !important;
  line-height: 1.75 !important;
  color: #64748b !important;
  margin: 0 !important;
}

.why-small-badge {
  display: inline-flex !important;
  align-items: center !important;
  padding: 6px 14px !important;
  background: #e7f1ff !important;
  color: #2563eb !important;
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  border-radius: 999px !important;
  border: 1px solid rgba(37, 99, 235, 0.18) !important;
  width: fit-content !important;
  margin-top: auto !important;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .why-top-row {
    grid-template-columns: 1fr 1fr !important;
  }
  .why-card--image {
    grid-column: span 2 !important;
    min-height: 260px !important;
  }
  .why-card--image img {
    object-position: center 40% !important;
  }
  .why-bottom-row {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 768px) {
  .why-section {
    padding: 60px 0 70px !important;
  }
  .why-top-row {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .why-card--image {
    grid-column: span 1 !important;
    min-height: 220px !important;
  }
  .why-card--accent,
  .why-card--light {
    min-height: auto !important;
    padding: 28px 22px !important;
  }
  .why-bottom-row {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .why-card-title,
  .why-card--accent .why-card-title {
    font-size: 1.15rem !important;
  }
}
/* ── HERO WRAP — reduced height ── */
section.hero-texture .hero-wrap {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 70vh !important; /* ← was 92vh */
  display: flex !important;
  align-items: center !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* ── SLIDE GRID — reduced height ── */
.hero-slide-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0 !important;
  align-items: stretch !important;
  width: 100% !important;
  min-height: 60vh !important; /* ← was 82vh */
}

/* ── IMAGE COL — reduced height ── */
.hero-img-col {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 60vh !important; /* ← was 82vh */
  overflow: hidden !important;
}
/* ══════════════════════════════════════════════
   FEATURED PRODUCTS SECTION
   ══════════════════════════════════════════════ */
.featured-section {
  padding: 56px 0 64px !important; /* ← tight top padding, no gap */
  background: #fff !important;
  position: relative !important;
}

/* ── Header layout ── */
.featured-header {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 48px !important;
  align-items: start !important;
  margin-bottom: 0 !important;
}

.featured-header-left {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

/* ── Intro text ── */
.featured-intro-text {
  font-size: 0.95rem !important;
  line-height: 1.85 !important;
  color: #64748b !important;
  max-width: 480px !important;
  margin-bottom: 18px !important;
}

/* ── Mini tags row ── */
.featured-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 4px !important;
}

.featured-tag {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  padding: 6px 12px !important;
  background: #f6f6f6 !important;
  border: 1px solid #e9ecef !important;
  border-radius: 999px !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  color: #475569 !important;
  transition: all 0.2s !important;
}
.featured-tag svg {
  color: #2563eb !important;
}
.featured-tag:hover {
  background: #e7f1ff !important;
  border-color: rgba(37, 99, 235, 0.25) !important;
  color: #2563eb !important;
}

/* ── Right: stats strip ── */
.featured-header-right {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
  padding-top: 8px !important;
}

.featured-stats-strip {
  display: flex !important;
  align-items: center !important;
  background: linear-gradient(135deg, #1e2060, #3c3e82) !important;
  border-radius: 18px !important;
  padding: 28px 32px !important;
  gap: 0 !important;
  box-shadow: 0 12px 40px rgba(60, 62, 130, 0.2) !important;
  position: relative !important;
  overflow: hidden !important;
}
.featured-stats-strip::before {
  content: "" !important;
  position: absolute !important;
  top: -30px !important;
  right: -30px !important;
  width: 120px !important;
  height: 120px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.05) !important;
  pointer-events: none !important;
}

.featured-stat-box {
  flex: 1 !important;
  text-align: center !important;
}

.featured-stat-num {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-size: 2rem !important;
  font-weight: 900 !important;
  color: #fff !important;
  line-height: 1 !important;
  margin-bottom: 6px !important;
}

.featured-stat-lbl {
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.65) !important;
  line-height: 1.4 !important;
}

.featured-stat-divider {
  width: 1px !important;
  height: 40px !important;
  background: rgba(255, 255, 255, 0.15) !important;
  flex-shrink: 0 !important;
  margin: 0 4px !important;
}

/* ── Quote strip ── */
.featured-quote-strip {
  display: flex !important;
  align-items: flex-start !important;
  gap: 14px !important;
  padding: 20px 22px !important;
  background: #f6f6f6 !important;
  border-radius: 14px !important;
  border-left: 4px solid #2563eb !important;
}

.featured-quote-icon {
  font-size: 2rem !important;
  line-height: 1 !important;
  color: #2563eb !important;
  opacity: 0.3 !important;
  font-family: Georgia, serif !important;
  flex-shrink: 0 !important;
  margin-top: -4px !important;
}

.featured-quote-text {
  font-size: 0.88rem !important;
  line-height: 1.75 !important;
  color: #475569 !important;
  font-style: italic !important;
  margin: 0 !important;
}

/* ── Divider line ── */
.featured-divider {
  height: 1px !important;
  background: linear-gradient(
    90deg,
    transparent,
    #e9ecef 20%,
    #e9ecef 80%,
    transparent
  ) !important;
  margin: 36px 0 32px !important;
}

/* ── Nav buttons ── */
.featured-nav-btn {
  width: 38px !important;
  height: 38px !important;
  border-radius: 10px !important;
  background: #fff !important;
  border: 1px solid #e9ecef !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  color: #0f172a !important;
  transition: all 0.2s !important;
}
.featured-nav-btn:hover {
  background: #e7f1ff !important;
  border-color: rgba(37, 99, 235, 0.3) !important;
  color: #2563eb !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .featured-header {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .featured-header-right {
    padding-top: 0 !important;
  }
  .featured-stats-strip {
    padding: 22px 24px !important;
  }
}

@media (max-width: 640px) {
  .featured-section {
    padding: 40px 0 50px !important;
  }
  .featured-stat-num {
    font-size: 1.5rem !important;
  }
  .featured-tags {
    gap: 6px !important;
  }
  .featured-tag {
    font-size: 0.7rem !important;
    padding: 5px 10px !important;
  }
}

/* ══════════════════════════════════════════════
   TRENDING PRODUCTS — REDESIGNED
   ══════════════════════════════════════════════ */
.trending-section {
  background: var(--page-bg) !important;
  padding-bottom: 70px !important;
  position: relative !important;
  overflow: hidden !important;
}

/* ── TOP ACCENT BAR ── */
.trending-top-bar {
  background: linear-gradient(135deg, #1e2060 0%, #3c3e82 100%) !important;
  padding: 14px 0 !important;
  overflow: hidden !important;
  margin-bottom: 56px !important;
}

.trending-top-bar-inner {
  overflow: hidden !important;
  width: 100% !important;
}

.trending-marquee {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  white-space: nowrap !important;
  animation: marqueeScroll 22s linear infinite !important;
  width: max-content !important;
}

.trending-marquee span {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.85) !important;
  flex-shrink: 0 !important;
}

.trending-dot {
  color: rgba(255, 255, 255, 0.35) !important;
  font-size: 1rem !important;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── HEADER ROW ── */
.trending-header {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 24px !important;
  margin-bottom: 36px !important;
}

.trending-header-left {
  flex: 1 !important;
}

.trending-sub {
  font-size: 0.93rem !important;
  line-height: 1.75 !important;
  color: #64748b !important;
  max-width: 440px !important;
  margin-top: 10px !important;
}

.trending-header-right {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 14px !important;
  flex-shrink: 0 !important;
}

/* ── LIVE BADGE ── */
.trending-live-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  padding: 6px 14px !important;
  background: #fff !important;
  border: 1px solid #e9ecef !important;
  border-radius: 999px !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  color: #475569 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

.trending-live-dot {
  width: 7px !important;
  height: 7px !important;
  background: #22c55e !important;
  border-radius: 50% !important;
  display: inline-block !important;
  animation: pulseLive 2s infinite !important;
  flex-shrink: 0 !important;
}

@keyframes pulseLive {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

/* ── VIEW ALL LINK ── */
.trending-view-all {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 0.88rem !important;
  font-weight: 800 !important;
  color: #2563eb !important;
  text-decoration: none !important;
  padding: 10px 20px !important;
  border-radius: 10px !important;
  border: 1.5px solid rgba(37, 99, 235, 0.25) !important;
  background: #fff !important;
  transition: all 0.25s !important;
}
.trending-view-all:hover {
  background: #2563eb !important;
  color: #fff !important;
  border-color: #2563eb !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2) !important;
}

/* ── BOTTOM ROW ── */
.trending-footer {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
  margin-top: 28px !important;
  flex-wrap: wrap !important;
}

/* Nav buttons */
.trending-nav-btns {
  display: flex !important;
  gap: 10px !important;
}

.trending-nav-btn {
  width: 44px !important;
  height: 44px !important;
  border-radius: 12px !important;
  background: #fff !important;
  border: 1px solid #e9ecef !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  color: #0f172a !important;
  transition: all 0.25s !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}
.trending-nav-btn:hover {
  background: #2563eb !important;
  border-color: #2563eb !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2) !important;
}

/* CTA strip */
.trending-cta-strip {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  padding: 14px 20px !important;
  background: #fff !important;
  border-radius: 14px !important;
  border: 1px solid #e9ecef !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04) !important;
}

.trending-cta-text {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  color: #475569 !important;
  white-space: nowrap !important;
}

.trending-cta-icon {
  color: #f59e0b !important;
  flex-shrink: 0 !important;
}

.trending-cta-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 10px 20px !important;
  border-radius: 10px !important;
  font-weight: 800 !important;
  font-size: 0.85rem !important;
  color: #fff !important;
  text-decoration: none !important;
  background: linear-gradient(135deg, #3c3e82, #2563eb) !important;
  white-space: nowrap !important;
  transition: all 0.25s !important;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.2) !important;
}
.trending-cta-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.3) !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .trending-top-bar {
    margin-bottom: 36px !important;
  }
  .trending-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }
  .trending-header-right {
    align-items: flex-start !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
  }
  .trending-footer {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }
  .trending-cta-strip {
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
    gap: 10px !important;
  }
  .trending-cta-btn {
    width: 100% !important;
    justify-content: center !important;
  }
  .trending-cta-text {
    white-space: normal !important;
  }
}

@media (max-width: 480px) {
  .trending-header-right {
    flex-direction: column !important;
  }
}

/* ══════════════════════════════════════════════
   COMPACT HERO HEIGHT
   ══════════════════════════════════════════════ */
section.hero-texture .hero-wrap {
  min-height: 45vh !important;
}
.hero-slide-grid {
  min-height: 38vh !important;
}
.hero-img-col {
  min-height: 38vh !important;
}

/* ══════════════════════════════════════════════
   STATS STRIP — compact bar between hero & products
   ══════════════════════════════════════════════ */
.stats-strip {
  background: #fff !important;
  border-top: 1px solid #e9ecef !important;
  border-bottom: 1px solid #e9ecef !important;
  padding: 20px 0 !important;
}
.stats-strip-inner {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  flex-wrap: wrap !important;
}
.stats-strip-item {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex: 1 !important;
  justify-content: center !important;
  padding: 6px 12px !important;
}
.stats-strip-num {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-size: 1.35rem !important;
  font-weight: 900 !important;
  color: #3c3e82 !important;
  line-height: 1 !important;
}
.stats-strip-lbl {
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  color: #64748b !important;
  line-height: 1.3 !important;
}
.stats-strip-div {
  width: 1px !important;
  height: 32px !important;
  background: #e9ecef !important;
  flex-shrink: 0 !important;
}
.stats-strip-cta {
  flex-shrink: 0 !important;
  padding: 0 0 0 16px !important;
}
.stats-strip-cta a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 10px 20px !important;
  border-radius: 10px !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  color: #fff !important;
  text-decoration: none !important;
  background: linear-gradient(135deg, #3c3e82, #2563eb) !important;
  white-space: nowrap !important;
  transition: all 0.2s !important;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.2) !important;
}
.stats-strip-cta a:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.3) !important;
}
@media (max-width: 640px) {
  .stats-strip-inner {
    gap: 8px !important;
  }
  .stats-strip-item {
    flex: 1 1 45% !important;
  }
  .stats-strip-num {
    font-size: 1.1rem !important;
  }
}

/* ══════════════════════════════════════════════
   FEATURED PRODUCTS — simple left/right layout
   ══════════════════════════════════════════════ */
.products-section {
  padding: 52px 0 60px !important;
  background: #f6f6f6 !important;
}
.products-layout {
  display: grid !important;
  grid-template-columns: 280px 1fr !important;
  gap: 40px !important;
  align-items: start !important;
}
.products-info-col {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  position: sticky !important;
  top: 90px !important;
}
.products-info-text {
  font-size: 0.88rem !important;
  line-height: 1.75 !important;
  color: #64748b !important;
  margin-bottom: 16px !important;
}
.products-check-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 20px 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}
.products-check-list li {
  display: flex !important;
  align-items: center !important;
  gap: 9px !important;
  font-size: 0.83rem !important;
  font-weight: 600 !important;
  color: #334155 !important;
}
.pcheck-icon {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  border-radius: 6px !important;
  background: #e7f1ff !important;
  color: #2563eb !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.products-img-preview {
  position: relative !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  height: 160px !important;
  margin-bottom: 18px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
}
.products-img-preview img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}
.products-img-label {
  position: absolute !important;
  bottom: 10px !important;
  left: 10px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(8px) !important;
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  color: #3c3e82 !important;
  padding: 5px 12px !important;
  border-radius: 8px !important;
}
.products-view-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 12px 22px !important;
  border-radius: 12px !important;
  font-weight: 800 !important;
  font-size: 0.85rem !important;
  color: #fff !important;
  text-decoration: none !important;
  background: linear-gradient(135deg, #3c3e82, #2563eb) !important;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2) !important;
  transition: all 0.25s !important;
  width: fit-content !important;
}
.products-view-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.3) !important;
}
.products-slider-col {
  min-width: 0 !important;
}
.products-nav-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-top: 16px !important;
}
.products-nav-label {
  font-size: 0.78rem !important;
  color: #94a3b8 !important;
  font-weight: 500 !important;
}
.products-nav-btns {
  display: flex !important;
  gap: 8px !important;
}
.products-nav-btn {
  width: 36px !important;
  height: 36px !important;
  border-radius: 9px !important;
  background: #fff !important;
  border: 1px solid #e9ecef !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  color: #334155 !important;
  transition: all 0.2s !important;
}
.products-nav-btn:hover {
  background: #2563eb !important;
  border-color: #2563eb !important;
  color: #fff !important;
}
@media (max-width: 1024px) {
  .products-layout {
    grid-template-columns: 1fr !important;
  }
  .products-info-col {
    position: static !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    align-items: flex-start !important;
  }
  .products-img-preview {
    display: none !important;
  }
}
@media (max-width: 640px) {
  .products-section {
    padding: 36px 0 44px !important;
  }
  .products-info-col {
    flex-direction: column !important;
  }
}

/* ══════════════════════════════════════════════
   TRENDING PRODUCTS
   ══════════════════════════════════════════════ */
.trending-section {
  background: #fff !important;
  padding-bottom: 70px !important;
  position: relative !important;
}
.trending-top-bar {
  background: linear-gradient(135deg, #1e2060 0%, #3c3e82 100%) !important;
  padding: 13px 0 !important;
  overflow: hidden !important;
  margin-bottom: 50px !important;
}
.trending-marquee-wrap {
  overflow: hidden !important;
  width: 100% !important;
}
.trending-marquee {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  white-space: nowrap !important;
  animation: marqueeScroll 22s linear infinite !important;
  width: max-content !important;
}
.trending-marquee span {
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.82) !important;
}
.trending-dot {
  color: rgba(255, 255, 255, 0.3) !important;
  font-size: 0.9rem !important;
}
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.trending-header {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 20px !important;
  margin-bottom: 32px !important;
}
.trending-sub {
  font-size: 0.9rem !important;
  line-height: 1.7 !important;
  color: #64748b !important;
  max-width: 400px !important;
  margin-top: 8px !important;
}
.trending-header-right {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 12px !important;
  flex-shrink: 0 !important;
}
.trending-live-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  padding: 5px 13px !important;
  background: #f6f6f6 !important;
  border: 1px solid #e9ecef !important;
  border-radius: 999px !important;
  font-size: 0.73rem !important;
  font-weight: 700 !important;
  color: #475569 !important;
}
.trending-live-dot {
  width: 7px !important;
  height: 7px !important;
  background: #22c55e !important;
  border-radius: 50% !important;
  display: inline-block !important;
  animation: pulseLive 2s infinite !important;
}
@keyframes pulseLive {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}
.trending-view-all {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  color: #2563eb !important;
  text-decoration: none !important;
  padding: 9px 18px !important;
  border-radius: 10px !important;
  border: 1.5px solid rgba(37, 99, 235, 0.25) !important;
  background: #fff !important;
  transition: all 0.25s !important;
}
.trending-view-all:hover {
  background: #2563eb !important;
  color: #fff !important;
  border-color: #2563eb !important;
  transform: translateY(-2px) !important;
}
.trending-footer {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  margin-top: 24px !important;
  flex-wrap: wrap !important;
}
.trending-nav-btns {
  display: flex !important;
  gap: 10px !important;
}
.trending-nav-btn {
  width: 42px !important;
  height: 42px !important;
  border-radius: 11px !important;
  background: #fff !important;
  border: 1px solid #e9ecef !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  color: #0f172a !important;
  transition: all 0.25s !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}
.trending-nav-btn:hover {
  background: #2563eb !important;
  border-color: #2563eb !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
}
.trending-cta-strip {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 12px 18px !important;
  background: #f6f6f6 !important;
  border-radius: 12px !important;
  border: 1px solid #e9ecef !important;
}
.trending-cta-text {
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: #475569 !important;
  white-space: nowrap !important;
}
.trending-cta-icon {
  color: #f59e0b !important;
}
.trending-cta-btn {
  display: inline-flex !important;
  align-items: center !important;
  padding: 9px 18px !important;
  border-radius: 9px !important;
  font-weight: 800 !important;
  font-size: 0.82rem !important;
  color: #fff !important;
  text-decoration: none !important;
  background: linear-gradient(135deg, #3c3e82, #2563eb) !important;
  white-space: nowrap !important;
  transition: all 0.25s !important;
  box-shadow: 0 5px 16px rgba(37, 99, 235, 0.2) !important;
}
.trending-cta-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.3) !important;
}
@media (max-width: 768px) {
  .trending-header {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .trending-header-right {
    align-items: flex-start !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
  }
  .trending-footer {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .trending-cta-strip {
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
  }
  .trending-cta-btn {
    width: 100% !important;
    justify-content: center !important;
  }
  .trending-cta-text {
    white-space: normal !important;
  }
}

/* ══════════════════════════════════════════════
   HERO IMAGE — CURVED / ROUNDED
   ══════════════════════════════════════════════ */

/* Wrap the image col with curve */
.hero-img-col {
  position: relative !important;
  width: 100% !important;
  min-height: 320px !important;
  overflow: hidden !important;

  /* ── CURVE OPTIONS — pick one below ── */

  /* Option A: Rounded left side only (most common hero style) */
  border-radius: 32px 0 0 32px !important;

  /* Option B: All corners rounded — uncomment to use
  border-radius: 24px !important; */

  /* Option C: Pill / organic shape — uncomment to use
  border-radius: 40px 16px 40px 16px !important; */
}

/* Keep the soft left blend */
.hero-img-col::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  width: 60px !important;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.4) 0%,
    transparent 100%
  ) !important;
  z-index: 2 !important;
  pointer-events: none !important;
  border-radius: 32px 0 0 32px !important; /* match parent */
}

/* Image fills curved container */
.hero-img-col img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  border-radius: inherit !important; /* inherits curve from parent */
  transition: transform 0.6s ease !important;
}

/* Subtle zoom on slide change */
.swiper-slide-active .hero-img-col img {
  transform: scale(1.03) !important;
}

/* ── Add inner shadow for depth ── */
.hero-img-col::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: inherit !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12) !important;
  pointer-events: none !important;
  z-index: 3 !important;
}

/* ── MOBILE: full width so no side curve ── */
@media (max-width: 1023px) {
  .hero-img-col {
    border-radius: 16px !important; /* all corners on mobile */
    margin: 0 16px 0 16px !important; /* small side margin */
  }
  .hero-img-col::before {
    border-radius: 16px !important;
  }
}

@media (max-width: 640px) {
  .hero-img-col {
    border-radius: 12px !important;
    margin: 0 12px 0 12px !important;
  }
}

/* =========================================================
   HERO — MOBILE RESPONSIVE PATCH (PUT AT VERY END)
========================================================= */

/* Prevent grid overflow on small screens */
.hero-text-col,
.hero-img-col {
  min-width: 0 !important;
}

/* Desktop/tablet default (keep your image-focused split) */
.hero-slide-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 42%) minmax(0, 58%) !important;
  gap: 0 !important;
}

/* ---------- MOBILE / TABLET STACK ---------- */
@media (max-width: 1023px) {
  /* Stack image + text */
  .hero-slide-grid {
    grid-template-columns: 1fr !important;
  }

  /* Put image on top */
  .hero-img-col {
    grid-row: 1 !important;
    min-height: 240px !important;
    border-radius: 16px !important; /* no left-curve on mobile */
    margin: 12px 16px 0 !important; /* nice side padding */
    overflow: hidden !important;
    background: #e2e8f0 !important; /* fallback while image loads */
  }

  .hero-img-col img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* Text below image */
  .hero-text-col {
    grid-row: 2 !important;
    padding: 18px 16px 22px !important;
    background: #fff !important;
  }

  /* Typography scale down */
  .hero-kicker {
    font-size: 0.65rem !important;
    margin-bottom: 8px !important;
  }

  .hero-title {
    font-size: clamp(1.35rem, 6.2vw, 2.1rem) !important;
    line-height: 1.15 !important;
    margin-bottom: 10px !important;
  }

  .hero-desc {
    max-width: none !important;
    font-size: 0.88rem !important;
    margin-bottom: 14px !important;
  }

  /* Buttons fit on mobile */
  .hero-btn-primary,
  .hero-btn-secondary {
    padding: 10px 16px !important;
    font-size: 0.82rem !important;
  }

  /* Dots closer to content (reduce extra space) */
  section.hero-texture .heroSwiper {
    padding-bottom: 38px !important;
  }

  section.hero-texture .heroSwiper .swiper-pagination.hero-dots {
    bottom: 10px !important;
  }
}

/* Small mobile */
@media (max-width: 640px) {
  .hero-img-col {
    min-height: 200px !important;
    margin: 10px 12px 0 !important;
    border-radius: 14px !important;
  }

  .hero-text-col {
    padding: 16px 12px 20px !important;
  }
}

/* =========================================================
   OFFICIAL BRAND COLOR OVERRIDE
   Navy Blue + Steel Grey + White + Accent Blue
========================================================= */

:root {
  /* Requested Palette */
  --navy: #1f3a5f; /* Deep Navy - Trust */
  --grey: #6c7a89; /* Steel Grey - Engineering */
  --white: #ffffff; /* Clean White */
  --accent: #2e86de; /* Accent Blue - Links/Buttons */

  /* Derived Tones */
  --navy-dark: #162a45;
  --pale-bg: #f8fafc;
  --border-light: #e2e8f0;
}

/* 1. Global Reset */
body {
  background-color: var(--pale-bg) !important;
  color: #334155 !important;
  outline: none !important; /* Removes the green debug outline */
}

/* 2. Typography Color Overrides */
h1,
h2,
h3,
h4,
.hero-title,
.section-title {
  color: var(--navy) !important;
}
h1 span,
h2 span,
.hero-title span {
  color: var(--accent) !important;
}
p,
.hero-desc,
.section-sub,
.hp-desc,
.why-card-desc {
  color: var(--grey) !important;
}

/* 3. Hero Section Overrides */
.hero-kicker {
  color: var(--accent) !important;
}
.hero-btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--accent)) !important;
  box-shadow: 0 10px 25px rgba(46, 134, 222, 0.25) !important;
}
.hero-btn-secondary {
  color: var(--navy) !important;
  border-color: var(--border-light) !important;
}
.hero-arrow {
  color: var(--navy) !important;
}
.hero-arrow:hover {
  border-color: var(--accent) !important;
}
.heroSwiper .swiper-pagination-bullet-active {
  background: var(--navy) !important;
}

/* 4. Navbar Overrides */
.nav-link:hover,
.nav-link.active {
  color: var(--accent) !important;
}
.nav-link::after {
  background: var(--accent) !important;
}
.nav-cta {
  background: linear-gradient(135deg, var(--navy), var(--accent)) !important;
}

/* 5. Component Badges & Pills */
.pill-label,
.hp-badge,
.about-check-icon,
.why-card-tag,
.why-small-badge {
  background: rgba(46, 134, 222, 0.1) !important;
  color: var(--accent) !important;
  border-color: rgba(46, 134, 222, 0.2) !important;
}

/* 6. Product Card Overrides */
.hp-card:hover {
  border-color: var(--accent) !important;
}
.hp-meta span:last-child {
  color: var(--accent) !important;
}

/* 7. Stats Bar & Strips */
.stats-bar,
.stats-strip-cta a,
.trending-cta-btn {
  background: linear-gradient(135deg, var(--navy), var(--accent)) !important;
}
.stats-strip-num {
  color: var(--navy) !important;
}

/* 8. Why Choose Us Overrides */
.why-card--accent {
  background: linear-gradient(
    145deg,
    var(--navy-dark) 0%,
    var(--navy) 100%
  ) !important;
}
.why-small-icon {
  background: linear-gradient(135deg, var(--navy), var(--accent)) !important;
}
.why-small-card:hover::before {
  background: var(--accent) !important;
}

/* 9. Trending Section Overrides */
.trending-top-bar {
  background: var(--navy) !important;
}
.trending-view-all {
  color: var(--accent) !important;
  border-color: var(--accent) !important;
}
.trending-view-all:hover {
  background: var(--accent) !important;
  color: var(--white) !important;
}
.trending-nav-btn:hover {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
}

/* 10. Mega Banner & About */
.mega-banner-inner {
  background:
    linear-gradient(135deg, rgba(31, 58, 95, 0.95), rgba(46, 134, 222, 0.9)),
    url("./assets/images/home/close-up-machine-part_.jpg") center/cover !important;
}
.about-experience-badge {
  background: linear-gradient(135deg, var(--navy), var(--accent)) !important;
}

/* 11. Testimonials & FAQ */
.testi-quote-icon,
.testimonial-avatar {
  background: transparent !important;
  color: var(--accent) !important;
}
.testimonial-avatar {
  background: var(--navy) !important;
  color: var(--white) !important;
}
.faq-item.faq-open .faq-question,
.faq-item.faq-open .faq-chevron {
  color: var(--accent) !important;
}

/* 12. Footer Overrides */
footer {
  background: #0f1c2e !important; /* Darker version of your navy */
}
.footer-social:hover {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
}

/* Final cleanup: remove all previous debug outlines */
* {
  outline: none !important;
}

/* =========================================================
   ENLARGED STATS STRIP 
   (Using Navy: #1F3A5F, Grey: #6C7A89, Blue: #2E86DE)
========================================================= */

.stats-strip {
  background: #ffffff !important;
  border-top: 1px solid #e2e8f0 !important;
  border-bottom: 1px solid #e2e8f0 !important;
  padding: 45px 0 !important; /* Doubled the height/padding */
}

.stats-strip-inner {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
}

.stats-strip-item {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important; /* More space between number and text */
  flex: 1 !important;
  justify-content: center !important;
  padding: 10px 16px !important;
}

/* BIGGER NUMBERS */
.stats-strip-num {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-size: 2.6rem !important; /* Increased from 1.35rem */
  font-weight: 900 !important;
  color: #1f3a5f !important; /* Deep Navy */
  line-height: 1 !important;
}

/* BIGGER LABELS */
.stats-strip-lbl {
  font-size: 1.05rem !important; /* Increased from 0.78rem */
  font-weight: 700 !important;
  color: #6c7a89 !important; /* Steel Grey */
  line-height: 1.3 !important;
  text-transform: uppercase !important; /* Makes it look more industrial */
  letter-spacing: 0.05em !important;
}

/* TALLER DIVIDER LINES */
.stats-strip-div {
  width: 2px !important; /* Slightly thicker */
  height: 60px !important; /* Increased height to match big text */
  background: #e2e8f0 !important;
  flex-shrink: 0 !important;
}

/* BIGGER CTA BUTTON */
.stats-strip-cta {
  flex-shrink: 0 !important;
  padding: 0 0 0 24px !important;
}

.stats-strip-cta a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 16px 32px !important; /* Much larger button */
  border-radius: 12px !important;
  font-size: 1.05rem !important; /* Larger button text */
  font-weight: 800 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  background: linear-gradient(
    135deg,
    #1f3a5f,
    #2e86de
  ) !important; /* Navy to Accent Blue */
  white-space: nowrap !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 8px 24px rgba(46, 134, 222, 0.25) !important;
}

.stats-strip-cta a:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 14px 32px rgba(46, 134, 222, 0.35) !important;
}

/* ── RESPONSIVE RULES FOR THE BIGGER SIZE ── */
@media (max-width: 1024px) {
  .stats-strip-num {
    font-size: 2rem !important;
  }
  .stats-strip-lbl {
    font-size: 0.9rem !important;
  }
  .stats-strip-div {
    height: 45px !important;
  }
  .stats-strip-cta a {
    padding: 12px 24px !important;
    font-size: 0.95rem !important;
  }
}

@media (max-width: 768px) {
  .stats-strip {
    padding: 35px 0 !important;
  }
  .stats-strip-item {
    flex: 1 1 40% !important;
    flex-direction: column !important; /* Stack numbers and text on mobile for better fit */
    text-align: center !important;
    gap: 8px !important;
  }
  .stats-strip-num {
    font-size: 2.2rem !important;
  }
  .stats-strip-lbl {
    font-size: 0.85rem !important;
  }
  .stats-strip-div {
    display: none !important;
  } /* Hide dividers on mobile */
  .stats-strip-cta {
    width: 100% !important;
    padding: 16px 0 0 0 !important;
    display: flex;
    justify-content: center;
  }
}

.stats-strip-num {
  font-variant-numeric: tabular-nums !important;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

/* ══════════════════════════════════════
   FAQ ANSWER — Remove !important conflict
   ══════════════════════════════════════ */
.faq-answer {
  max-height: 0px;
  overflow: hidden;
  transition:
    max-height 0.45s ease,
    padding-bottom 0.3s ease;
}

.faq-item.faq-open .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq-item.faq-open .faq-question {
  color: #2e86de;
}

.faq-item.faq-open .faq-chevron {
  transform: rotate(180deg);
  color: #2e86de;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1f3a5f;
  text-align: left;
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: color 0.3s;
}

.faq-chevron {
  min-width: 20px;
  color: #6c7a89;
  transition:
    transform 0.35s ease,
    color 0.3s;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.faq-item.faq-open {
  border-color: rgba(46, 134, 222, 0.35);
  box-shadow: 0 8px 28px rgba(46, 134, 222, 0.1);
}

.faq-answer p {
  padding: 0 24px 20px;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.8;
  color: #6c7a89;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-section {
  padding: 80px 0 90px;
  background: #f8fafc;
}

/* ══════════════════════════════════════════════
   FAQ — FINAL FIX (no !important conflict)
   ══════════════════════════════════════════════ */
.faq-section {
  padding: 80px 0 90px;
  background: #f8fafc;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.faq-item.faq-open {
  border-color: rgba(46, 134, 222, 0.35);
  box-shadow: 0 8px 28px rgba(46, 134, 222, 0.1);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1f3a5f;
  text-align: left;
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: color 0.3s;
}

.faq-item.faq-open .faq-question {
  color: #2e86de;
}

.faq-chevron {
  min-width: 20px;
  color: #6c7a89;
  transition:
    transform 0.35s ease,
    color 0.3s;
  flex-shrink: 0;
}

.faq-item.faq-open .faq-chevron {
  transform: rotate(180deg);
  color: #2e86de;
}

/* KEY FIX — NO !important here so JS can override */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding-bottom 0.3s ease;
}

/* .faq-answer p {
  padding: 0 24px 20px;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.8;
  color: #6C7A89;
} */

.faq-answer {
  padding: 0 24px;
}

.faq-item.faq-open .faq-answer {
  max-height: 500px;
  padding: 16px 24px 24px; /* top + bottom spacing */
}

/* Updated FAQ Answer Styles */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  /* Remove any bottom padding here so max-height 0 is actually 0 */
  padding-bottom: 0;
}

.faq-answer p {
  padding: 0 24px 24px; /* Added more bottom padding (24px) */
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.8;
  color: #6c7a89;
}

/* ═══════════════════════════════════════════
   FAQ — GUARANTEED WORKING — ADDED AT BOTTOM
   ═══════════════════════════════════════════ */

.faq-section {
  padding: 80px 0 90px;
  background: #f8fafc;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.faq-item.faq-open {
  border-color: rgba(46, 134, 222, 0.4);
  box-shadow: 0 10px 30px rgba(46, 134, 222, 0.12);
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1f3a5f;
  text-align: left;
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: color 0.3s ease;
}

.faq-item.faq-open .faq-question {
  color: #2e86de;
}

.faq-chevron {
  min-width: 20px;
  flex-shrink: 0;
  color: #6c7a89;
  transition:
    transform 0.35s ease,
    color 0.3s ease;
}

.faq-item.faq-open .faq-chevron {
  transform: rotate(180deg);
  color: #2e86de;
}

/* ── GRID METHOD — no max-height needed ── */
.faq-answer {
  display: grid !important;
  grid-template-rows: 0fr !important;
  transition: grid-template-rows 0.4s ease !important;
  max-height: none !important;
  overflow: hidden !important;
}

.faq-item.faq-open .faq-answer {
  grid-template-rows: 1fr !important;
}

.faq-answer-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-answer-inner p {
  padding: 8px 24px 30px 24px;
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.85;
  color: #6c7a89;
}

/* ════════════════════════════════════════
   FAQ SPACING — NORMAL / COMPACT
   ════════════════════════════════════════ */

.faq-list {
  gap: 10px !important;
}

.faq-question {
  padding: 18px 22px !important;
  font-size: 0.93rem !important;
  line-height: 1.5 !important;
}

/* reduce extra gap when open */
.faq-item.faq-open .faq-question {
  padding-bottom: 10px !important;
}

.faq-answer-inner p {
  padding: 0 22px 16px 22px !important; /* top right bottom left */
  margin: 0 !important;
  font-size: 0.9rem !important;
  line-height: 1.75 !important;
}

/* slightly tighter card */
.faq-item {
  border-radius: 12px !important;
}

/* mobile compact */
@media (max-width: 768px) {
  .faq-question {
    padding: 16px 18px !important;
    font-size: 0.9rem !important;
  }

  .faq-item.faq-open .faq-question {
    padding-bottom: 8px !important;
  }

  .faq-answer-inner p {
    padding: 0 18px 14px 18px !important;
    font-size: 0.88rem !important;
    line-height: 1.7 !important;
  }
}

/* ════════════════════════════════════════
   GALLERY SECTION
   ════════════════════════════════════════ */
.gallery-section {
  padding: 80px 0 90px;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}

/* anchor tag — must be block and full height */
.gallery-open {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  overflow: hidden;
}

/* wrapper inside anchor */
.gallery-item-wrapper {
  width: 100%;
  height: 100%;
  display: block;
}

/* card itself */
.gallery-item-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  cursor: pointer;
  background: #f7f7f7;
}

.gallery-item-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 58, 95, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease;
  z-index: 2;
}

.gallery-plus {
  font-size: 1.8rem;
  font-weight: 300;
  color: #fff;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.35s ease;
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}

/* hover on anchor since card is inside it */
.gallery-open:hover .gallery-item-card img {
  transform: scale(1.07);
}

.gallery-open:hover .gallery-overlay {
  background: rgba(31, 58, 95, 0.55);
}

.gallery-open:hover .gallery-plus {
  opacity: 1;
  transform: scale(1);
}

/* ── RESPONSIVE ── */
@media (max-width: 1280px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: 220px;
  }
}

/* ════════════════════════════════════════
   GALLERY LIGHTBOX
   ════════════════════════════════════════ */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  z-index: 9999;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox-content {
  position: relative;
  max-width: 88vw;
  max-height: 88vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  background: #fff;
  display: block;
  object-fit: contain;
}

.gallery-lightbox-content p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.gallery-lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox-close:hover {
  background: #2e86de;
  transform: scale(1.1);
}

.gallery-lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.gallery-lightbox-nav:hover {
  background: #2e86de;
  border-color: #2e86de;
  transform: translateY(-50%) scale(1.1);
}

.gallery-lightbox-prev {
  left: 20px;
}

.gallery-lightbox-next {
  right: 20px;
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .gallery-lightbox {
    padding: 12px;
  }

  .gallery-lightbox-content img {
    max-height: 70vh;
    border-radius: 10px;
  }

  .gallery-lightbox-close {
    top: 12px;
    right: 14px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .gallery-lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .gallery-lightbox-prev {
    left: 8px;
  }

  .gallery-lightbox-next {
    right: 8px;
  }
}

/* ════════════════════════════════════════
   GALLERY — FINAL CLEAN VERSION
   ════════════════════════════════════════ */

.gallery-section {
  padding: 80px 0 90px;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}

/* Anchor must fill the grid cell completely */
a.gallery-open {
  display: block !important;
  width: 100% !important;
  height: 240px !important;
  text-decoration: none !important;
  color: inherit !important;
}

.gallery-item-wrapper {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-item-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  cursor: pointer;
  background: #f7f7f7;
}

.gallery-item-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 58, 95, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease;
  z-index: 2;
}

.gallery-plus {
  font-size: 1.8rem;
  font-weight: 300;
  color: #fff;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.35s ease;
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* HOVER must be on anchor not card */
a.gallery-open:hover .gallery-item-card img {
  transform: scale(1.07);
}
a.gallery-open:hover .gallery-overlay {
  background: rgba(31, 58, 95, 0.55);
}
a.gallery-open:hover .gallery-plus {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 1280px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
  }
  a.gallery-open {
    height: 220px !important;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 12px;
  }
  a.gallery-open {
    height: 180px !important;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  a.gallery-open {
    height: 220px !important;
  }
}

/* ════════════════════════════════════════
   GALLERY LIGHTBOX
   ════════════════════════════════════════ */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  z-index: 9999;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  background: #fff;
  display: block;
  object-fit: contain;
}

.gallery-lightbox-content p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.92rem;
  font-weight: 500;
}

.gallery-lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.gallery-lightbox-close:hover {
  background: #2e86de;
  transform: scale(1.1);
}

.gallery-lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  z-index: 10000;
}

.gallery-lightbox-nav:hover {
  background: #2e86de;
  border-color: #2e86de;
  transform: translateY(-50%) scale(1.1);
}

.gallery-lightbox-prev {
  left: 20px;
}
.gallery-lightbox-next {
  right: 20px;
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .gallery-lightbox {
    padding: 12px;
  }
  .gallery-lightbox-content img {
    max-height: 70vh;
    border-radius: 10px;
  }
  .gallery-lightbox-close {
    top: 12px;
    right: 14px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .gallery-lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  .gallery-lightbox-prev {
    left: 8px;
  }
  .gallery-lightbox-next {
    right: 8px;
  }
}

.pill-label.white,
.pill-label.white *,
.pill-label.white span,
.pill-label.white p {
  color: #9ca3af !important; /* nice soft gray */
}

.pill-label.white .pill-dot {
  background-color: #9ca3af !important;
}
/* ════════════════════════════════════════
   PRODUCT PAGE TEXT CLARITY FIX
   ════════════════════════════════════════ */

/* Main headings */
#productTitle,
#productTitleMobile {
  color: #1f3a5f !important; /* Navy */
  font-weight: 800 !important;
}

/* Product card title */
.product-title {
  font-size: 1rem !important; /* was 0.9rem */
  font-weight: 700 !important;
  color: #1f3a5f !important; /* darker navy */
}

/* Product description */
.product-desc {
  font-size: 0.9rem !important; /* slightly bigger */
  line-height: 1.7 !important;
  color: #475569 !important; /* darker than muted */
}

/* Sidebar category text */
.cat-all-btn,
.sub-btn {
  font-size: 0.88rem !important;
  color: #334155 !important; /* darker grey */
}

/* Active category */
.cat-all-btn.active,
.sub-btn.active {
  color: #1f3a5f !important;
  font-weight: 700 !important;
}

/* Section sub text */
.section-sub,
.trending-sub,
.products-info-text {
  color: #475569 !important;
  font-size: 0.95rem !important;
  line-height: 1.75 !important;
}

/* Search input text */
.search-input {
  color: #1f2937 !important;
}
.search-input::placeholder {
  color: #94a3b8 !important;
}

/* Count badge */
.count-badge {
  font-size: 0.85rem !important;
  font-weight: 700 !important;
}
.sidebar-header h2 {
  font-size: 1.05rem !important;
  letter-spacing: 0.02em !important;
}

.sidebar-body {
  padding: 18px !important;
}
.product-body {
  padding: 20px !important;
}
/* ══════════════════════════════════════════════════════
   SIDEBAR PREMIUM TEXT — FINAL FORCED FIX
   Paste at VERY BOTTOM so it overrides everything
══════════════════════════════════════════════════════ */

/* ── CATEGORY GROUP LABEL ── */
/* e.g. "CHUCKS & SPARES" */
li .cat-group-label,
#categoryList .cat-group-label,
#categoryListMobile .cat-group-label {
  color: #111827 !important; /* near black */
  font-size: 0.7rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 16px 14px 6px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: transparent !important;
  border: none !important;
}

/* Blue bar before label */
#categoryList .cat-group-label::before,
#categoryListMobile .cat-group-label::before {
  content: "" !important;
  display: inline-block !important;
  width: 3px !important;
  height: 13px !important;
  background: #2e86de !important;
  border-radius: 999px !important;
  flex-shrink: 0 !important;
}

/* Line after label */
#categoryList .cat-group-label::after,
#categoryListMobile .cat-group-label::after {
  content: "" !important;
  flex: 1 !important;
  height: 1px !important;
  background: #e2e8f0 !important;
}

/* ── CATEGORY BUTTON ── */
/* e.g. "All Chucks & Spares" */
#categoryList .cat-all-btn,
#categoryListMobile .cat-all-btn {
  color: #1e293b !important; /* dark charcoal */
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  background: transparent !important;
  padding: 10px 14px !important;
  border-radius: 10px !important;
  border: none !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  cursor: pointer !important;
  text-align: left !important;
  transition: all 0.2s ease !important;
}

#categoryList .cat-all-btn:hover,
#categoryListMobile .cat-all-btn:hover {
  background: #eff6ff !important;
  color: #1d4ed8 !important; /* strong blue */
}

#categoryList .cat-all-btn.active,
#categoryListMobile .cat-all-btn.active {
  background: #dbeafe !important;
  color: #1d4ed8 !important; /* strong blue */
  font-weight: 800 !important;
  border-left: 3px solid #2e86de !important;
  padding-left: 11px !important;
}

/* Arrow inside cat button */
#categoryList .cat-all-btn .cat-all-btn-arrow,
#categoryListMobile .cat-all-btn .cat-all-btn-arrow {
  background: #bfdbfe !important;
  color: #1d4ed8 !important;
  font-weight: 900 !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 5px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.75rem !important;
  flex-shrink: 0 !important;
}

/* Count pill */
#categoryList .cat-all-btn span:last-child,
#categoryListMobile .cat-all-btn span:last-child {
  margin-left: auto !important;
  background: #f1f5f9 !important;
  color: #475569 !important; /* medium grey */
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  padding: 2px 8px !important;
  border-radius: 999px !important;
  flex-shrink: 0 !important;
}

#categoryList .cat-all-btn.active span:last-child,
#categoryListMobile .cat-all-btn.active span:last-child {
  background: #bfdbfe !important;
  color: #1d4ed8 !important;
}

/* ── SUBCATEGORY BUTTON ── */
/* e.g. "3-Jaw Self Centring Chuck" */
#categoryList .sub-btn,
#categoryListMobile .sub-btn {
  color: #374151 !important; /* dark grey */
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  padding: 9px 14px 9px 28px !important;
  border-radius: 8px !important;
  background: transparent !important;
  border: none !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  gap: 9px !important;
  cursor: pointer !important;
  text-align: left !important;
  transition: all 0.2s ease !important;
  line-height: 1.4 !important;
}

#categoryList .sub-btn:hover,
#categoryListMobile .sub-btn:hover {
  background: #eff6ff !important;
  color: #1d4ed8 !important; /* blue on hover */
  transform: translateX(3px) !important;
}

#categoryList .sub-btn.active,
#categoryListMobile .sub-btn.active {
  background: #dbeafe !important;
  color: #1d4ed8 !important; /* strong blue */
  font-weight: 700 !important;
  border-left: 3px solid #2e86de !important;
  padding-left: 25px !important;
}

/* Dot in subcategory */
#categoryList .sub-btn .sub-dot,
#categoryListMobile .sub-btn .sub-dot {
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: #94a3b8 !important; /* grey dot */
  flex-shrink: 0 !important;
  transition: all 0.2s !important;
}

#categoryList .sub-btn:hover .sub-dot,
#categoryListMobile .sub-btn:hover .sub-dot {
  background: #2e86de !important; /* blue dot on hover */
  transform: scale(1.4) !important;
}

#categoryList .sub-btn.active .sub-dot,
#categoryListMobile .sub-btn.active .sub-dot {
  background: #1d4ed8 !important; /* strong blue dot when active */
  width: 7px !important;
  height: 7px !important;
}

/* Count pill on subcategory */
#categoryList .sub-btn span:last-child,
#categoryListMobile .sub-btn span:last-child {
  margin-left: auto !important;
  background: #f8fafc !important;
  color: #64748b !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  padding: 1px 7px !important;
  border-radius: 999px !important;
  flex-shrink: 0 !important;
  border: 1px solid #e2e8f0 !important;
}

#categoryList .sub-btn.active span:last-child,
#categoryListMobile .sub-btn.active span:last-child {
  background: #bfdbfe !important;
  color: #1d4ed8 !important;
  border-color: #bfdbfe !important;
}

/* ── ALL PRODUCTS BUTTON ── */
#categoryList .all-btn,
#categoryListMobile .all-btn {
  background: #f8fafc !important;
  color: #1e293b !important; /* near black */
  border: 1.5px solid #e2e8f0 !important;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  padding: 12px 14px !important;
  border-radius: 12px !important;
  margin-bottom: 12px !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  cursor: pointer !important;
  text-align: left !important;
  transition: all 0.25s ease !important;
}

#categoryList .all-btn:hover,
#categoryListMobile .all-btn:hover {
  background: #eff6ff !important;
  border-color: #93c5fd !important;
  color: #1d4ed8 !important;
}

#categoryList .all-btn.active,
#categoryListMobile .all-btn.active {
  background: linear-gradient(135deg, #1f3a5f 0%, #2e86de 100%) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: 0 4px 16px rgba(46, 134, 222, 0.35) !important;
}

/* ── PRODUCT TITLE ON CARD ── */
.product-card .product-title {
  color: #111827 !important; /* near black */
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
}

.product-card:hover .product-title {
  color: #1d4ed8 !important; /* blue on hover */
}

/* ── PRODUCT DESCRIPTION ON CARD ── */
.product-card .product-desc {
  color: #4b5563 !important; /* clear dark grey */
  font-size: 0.83rem !important;
  line-height: 1.65 !important;
}

/* ── PRODUCT BADGE ON CARD ── */
.product-card .product-badge {
  color: #1d4ed8 !important; /* strong blue */
  background: #eff6ff !important;
  border: 1px solid #bfdbfe !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
}

/* ── SECTION TITLE ── */
#productTitle {
  color: #111827 !important; /* near black */
  font-weight: 800 !important;
  font-size: 1.6rem !important;
}

#productTitleMobile {
  color: #111827 !important;
  font-weight: 800 !important;
}

/* ── PRODUCT COUNT ── */
#productCount,
#productCountMobile {
  color: #6b7280 !important; /* medium grey */
  font-size: 0.85rem !important;
}

/* ── COUNT BADGE ── */
.count-badge {
  color: #1d4ed8 !important;
  background: #eff6ff !important;
  border-color: #bfdbfe !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
}

/* ════════════════════════════════════════
   NAVBAR PREMIUM SHIFT + FONT PATCH
   No HTML change needed
   Paste at VERY BOTTOM
   ════════════════════════════════════════ */

/* Desktop navbar layout only */
@media (min-width: 768px) {
  /* stop spreading items too much */
  #navbar .max-w-7xl > div {
    justify-content: flex-start !important;
  }

  /* push nav block to right side */
  #navbar nav {
    margin-left: auto !important;
    margin-right: 20px !important; /* increase for more right spacing */
    gap: 30px !important;
    transform: translateX(14px) !important; /* extra push to right */
  }

  /* right action block stays at far right */
  #navbar > div > div > div:last-child,
  #navbar .max-w-7xl > div > div:last-child {
    margin-left: 0 !important;
  }
}

/* Premium font for nav links */
#navbar .nav-link {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.015em !important;
  color: #334155 !important;
  padding: 8px 4px !important;
}

/* Better hover + active color */
#navbar .nav-link:hover,
#navbar .nav-link.active {
  color: var(--blue) !important;
}

/* Underline styling */
#navbar .nav-link::after {
  height: 2px !important;
  bottom: -3px !important;
  background: var(--blue) !important;
}

/* CTA button font */
#navbar .nav-cta {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.01em !important;
  padding: 11px 22px !important;
  border-radius: 13px !important;
}

/* Logo spacing balance */
#navbar a[aria-label="Kakamari Enterprises"],
#navbar a[aria-label="Kakamari Enterprises Home"] {
  margin-right: 10px !important;
}

/* Optional: slightly taller navbar for premium feel */
#navbar .max-w-7xl > div {
  min-height: 74px !important;
}

/* Mobile menu font too */
#mobileMenu a {
  font-family: "Plus Jakarta Sans", sans-serif !important;
}
/* Space between nav links and Get in Touch button */
@media (min-width: 768px) {
  #navbar .nav-cta {
    margin-left: 30px !important; /* increase to 28px or 32px if needed */
  }
}

/* =========================================================
   HERO SECTION — BASED ON EXACT HTML CLASSES
   Brand Colors:
   --navy:   #1f3a5f
   --grey:   #6c7a89
   --white:  #ffffff
   --accent: #2e86de
========================================================= */

/* ── Section Wrapper ── */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0b0c10;
}

/* ── Slides Container ── */
.hero-slides-container {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  max-height: 900px;
}

/* ── Each Slide ── */
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
  z-index: 0;
}

/* Active Slide */
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

/* ── Inner Content Wrapper ── */
.hero-slide-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── Badge Pill (top label) ── */
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 999px;
  width: fit-content;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Badge Dot (animated) */
.hero-badge-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: #2e86de;
  border-radius: 50%;
  display: inline-block;
  animation: heroBadgePulse 1.8s infinite ease-in-out;
}

@keyframes heroBadgePulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.5);
  }
}

/* ── Main Title ── */
.hero-main-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

/* Highlighted span inside title */
.hero-main-title span {
  color: #2e86de !important;
  display: inline;
}

/* ── Description / Subsection Text ── */
.hero-main-desc {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.8;
  max-width: 600px;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* ── Buttons Row ── */
.hero-main-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Primary Button */
.hero-btn-pri {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2e86de;
  color: #ffffff !important;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(46, 134, 222, 0.38);
  letter-spacing: 0.01em;
}

.hero-btn-pri:hover {
  background: #1f6fbf;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(46, 134, 222, 0.48);
  color: #ffffff !important;
}

/* Secondary Button */
.hero-btn-sec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 12px;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  letter-spacing: 0.01em;
}

.hero-btn-sec:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff !important;
  transform: translateY(-3px);
}

/* ── Stats Row ── */
.hero-stats-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 18px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  width: fit-content;
  max-width: 100%;
}

/* Individual Stat Item */
.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 22px;
  gap: 5px;
}

/* Stat Number */
.hero-stat-num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1;
  letter-spacing: -0.01em;
}

/* Stat Label */
.hero-stat-lbl {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* Stat Divider */
.hero-stat-div {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.16);
  flex-shrink: 0;
}

/* ── Dots Row ── */
.hero-dots-row {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

/* Each Dot */
.hero-dot-btn {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.35s ease;
  display: inline-block;
  border: none;
}

/* Active Dot */
.hero-dot-btn.active {
  background: #2e86de;
  width: 28px;
  box-shadow: 0 0 0 3px rgba(46, 134, 222, 0.22);
}

/* ── Navigation Arrows ── */
.hero-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-arr:hover {
  background: #2e86de;
  border-color: #2e86de;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 20px rgba(46, 134, 222, 0.35);
}

.hero-arr-prev {
  left: 24px;
}
.hero-arr-next {
  right: 24px;
}

/* ── Responsive Mobile ── */
@media (max-width: 768px) {
  .hero-slides-container {
    height: auto;
    min-height: 100svh;
    max-height: none;
  }

  .hero-slide {
    position: relative;
    min-height: 100svh;
    padding: 120px 0 110px;
    opacity: 1;
  }

  .hero-slide:not(.active) {
    display: none;
  }

  .hero-slide-inner {
    padding: 0 20px;
    gap: 20px;
  }

  .hero-main-title {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

  .hero-main-desc {
    font-size: 0.95rem;
  }

  .hero-main-btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero-btn-pri,
  .hero-btn-sec {
    width: 100%;
    justify-content: center;
  }

  .hero-stats-row {
    padding: 14px 12px;
    gap: 0;
    width: 100%;
    justify-content: space-between;
  }

  .hero-stat-item {
    padding: 0 8px;
  }

  .hero-stat-num {
    font-size: 1rem;
  }

  .hero-stat-lbl {
    font-size: 0.62rem;
  }

  .hero-arr {
    display: none;
  }

  .hero-dots-row {
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  .hero-stat-div {
    height: 28px;
  }

  .hero-badge-pill {
    font-size: 0.7rem;
    padding: 7px 14px;
  }
}

/* ===== Global fix: remove right-side white gap / horizontal swipe overflow ===== */
html,
body {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important; /* fallback */
  margin: 0 !important;
}

/* Stronger than hidden (prevents that tiny drag-reveal on many browsers) */
@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip !important;
  }
}

/* Prevent any child from creating overflow due to padding/width calculations */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Media elements often cause overflow */
img,
svg,
video,
canvas {
  max-width: 100% !important;
  height: auto !important;
}

/* Stop accidental horizontal panning on touch screens */
body {
  touch-action: pan-y;
}

/* Mobile menu / header safety (common overflow source near hamburger) */
#navbar,
header,
#mobileMenu {
  max-width: 100% !important;
}

/* =============================================
   LOGO STYLING - FIXED VERSION
   ============================================= */

/* ── NAVBAR LOGO ── */
.navbar-logo-link {
  display: inline-block !important;
  flex-shrink: 0 !important;
  height: 50px !important;
  width: auto !important;
  max-width: 200px !important;
  overflow: hidden !important;
}

.navbar-logo-img {
  height: 50px !important;
  width: auto !important;
  max-width: 200px !important;
  max-height: 50px !important;
  object-fit: contain !important;
  display: block !important;
  transition: transform 0.3s ease !important;
}

.navbar-logo-link:hover .navbar-logo-img {
  transform: scale(1.05);
}

/* When navbar is scrolled */
.navbar.scrolled .navbar-logo-link,
.navbar.scrolled .navbar-logo-img {
  height: 42px !important;
  max-height: 42px !important;
}

/* ── FOOTER LOGO ── */
.footer-logo-img {
  height: 55px !important;
  width: auto !important;
  max-width: 220px !important;
  max-height: 55px !important;
  object-fit: contain !important;
  display: block !important;
  margin-bottom: 20px !important;
  opacity: 0.95;
}

.footer-logo-img:hover {
  opacity: 1;
}

/* ── TABLET ── */
@media (max-width: 1024px) {
  .navbar-logo-link,
  .navbar-logo-img {
    height: 45px !important;
    max-height: 45px !important;
    max-width: 180px !important;
  }

  .footer-logo-img {
    height: 50px !important;
    max-height: 50px !important;
    max-width: 200px !important;
  }
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .navbar-logo-link,
  .navbar-logo-img {
    height: 40px !important;
    max-height: 40px !important;
    max-width: 150px !important;
  }

  .navbar.scrolled .navbar-logo-link,
  .navbar.scrolled .navbar-logo-img {
    height: 36px !important;
    max-height: 36px !important;
  }

  .footer-logo-img {
    height: 45px !important;
    max-height: 45px !important;
    max-width: 170px !important;
  }
}

/* ── SMALL MOBILE ── */
@media (max-width: 480px) {
  .navbar-logo-link,
  .navbar-logo-img {
    height: 36px !important;
    max-height: 36px !important;
    max-width: 130px !important;
  }
}

/* =============================================
   LOGO STYLING - PERFECT VERSION
   ============================================= */

/* ── NAVBAR LOGO ── */
.navbar-logo-link {
  display: inline-block !important;
  flex-shrink: 0 !important;
  height: 60px !important;
  width: auto !important;
  max-width: 240px !important;
  overflow: hidden !important;
  padding: 4px 0 !important;
}

.navbar-logo-img {
  height: 60px !important;
  width: auto !important;
  max-width: 240px !important;
  max-height: 60px !important;
  object-fit: contain !important;
  display: block !important;
  transition: transform 0.3s ease !important;
}

.navbar-logo-link:hover .navbar-logo-img {
  transform: scale(1.05);
}

/* When navbar is scrolled - shrinks slightly */
.navbar.scrolled .navbar-logo-link,
.navbar.scrolled .navbar-logo-img {
  height: 52px !important;
  max-height: 52px !important;
}

/* ── FOOTER LOGO ── */
.footer-logo-img {
  height: 65px !important;
  width: auto !important;
  max-width: 260px !important;
  max-height: 65px !important;
  object-fit: contain !important;
  display: block !important;
  margin-bottom: 20px !important;
  opacity: 0.95;
}

.footer-logo-img:hover {
  opacity: 1;
}

/* ── TABLET ── */
@media (max-width: 1024px) {
  .navbar-logo-link,
  .navbar-logo-img {
    height: 55px !important;
    max-height: 55px !important;
    max-width: 220px !important;
  }

  .footer-logo-img {
    height: 60px !important;
    max-height: 60px !important;
    max-width: 240px !important;
  }
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .navbar-logo-link,
  .navbar-logo-img {
    height: 48px !important;
    max-height: 48px !important;
    max-width: 180px !important;
  }

  .navbar.scrolled .navbar-logo-link,
  .navbar.scrolled .navbar-logo-img {
    height: 42px !important;
    max-height: 42px !important;
  }

  .footer-logo-img {
    height: 52px !important;
    max-height: 52px !important;
    max-width: 200px !important;
  }
}

/* ── SMALL MOBILE ── */
@media (max-width: 480px) {
  .navbar-logo-link,
  .navbar-logo-img {
    height: 42px !important;
    max-height: 42px !important;
    max-width: 150px !important;
  }
}

/* ════════════════════════════════
   FORCE LOGO BIGGER - SIMPLE
═══════════════════════════════════ */

header img[src*="kakamari"] {
  height: 80px !important;
  width: auto !important;
  max-width: none !important;
  max-height: none !important;
  min-height: 80px !important;
  object-fit: contain !important;
}

footer img[src*="kakamari"] {
  height: 90px !important;
  width: auto !important;
  max-width: none !important;
  max-height: none !important;
  min-height: 90px !important;
  object-fit: contain !important;
}

/* Mobile */
@media (max-width: 768px) {
  header img[src*="kakamari"] {
    height: 60px !important;
    min-height: 60px !important;
  }

  footer img[src*="kakamari"] {
    height: 70px !important;
    min-height: 70px !important;
  }
}
/* ════════════════════════════════════════
   NAVBAR + LOGO - PROPER ALIGNMENT FIX
═══════════════════════════════════════════ */

/* Reset */
html,
body {
  margin: 0 !important;
  padding: 0 !important;
}

/* Navbar - white background, fixed top */
header.navbar,
header#navbar {
  margin: 0 !important;
  padding: 0 !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  position: fixed !important;
  z-index: 9999 !important;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8) !important;
}

/* Inner row - flex layout */
header#navbar .max-w-7xl > div:first-child,
header#navbar .max-w-7xl > div.flex.items-center.justify-between {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: 110px !important;
  min-height: 110px !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  gap: 16px !important;
}

/* Body padding for fixed navbar */
body {
  padding-top: 110px !important;
  margin: 0 !important;
}

/* ════════════════════════════════════════
   LOGO LINK (Container)
═══════════════════════════════════════════ */

header a.navbar-logo-link,
header a[aria-label*="Kakamari"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  flex-shrink: 0 !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  text-decoration: none !important;
}

/* ════════════════════════════════════════
   LOGO IMAGE - PROPER SIZE
═══════════════════════════════════════════ */

header img[src*="kakamari"] {
  height: 90px !important;
  width: auto !important;
  max-width: 220px !important;
  max-height: 90px !important;
  min-height: 90px !important;
  object-fit: contain !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  background: transparent !important;
}

/* ════════════════════════════════════════
   FOOTER LOGO
═══════════════════════════════════════════ */

footer img[src*="kakamari"] {
  height: 100px !important;
  width: auto !important;
  max-width: 240px !important;
  min-height: 100px !important;
  object-fit: contain !important;
  display: block !important;
  margin-bottom: 20px !important;
}

/* ════════════════════════════════════════
   MOBILE
═══════════════════════════════════════════ */

@media (max-width: 768px) {
  header#navbar .max-w-7xl > div:first-child,
  header#navbar .max-w-7xl > div.flex.items-center.justify-between {
    height: 80px !important;
    min-height: 80px !important;
  }

  body {
    padding-top: 80px !important;
  }

  header img[src*="kakamari"] {
    height: 65px !important;
    min-height: 65px !important;
    max-width: 170px !important;
  }

  footer img[src*="kakamari"] {
    height: 75px !important;
    min-height: 75px !important;
    max-width: 200px !important;
  }
}

/* ════════════════════════════════════════
   REMOVE ANY ODD BACKGROUND ON LOGO
═══════════════════════════════════════════ */

header .navbar-logo-link,
header .navbar-logo-link *,
header a[aria-label*="Kakamari"],
header a[aria-label*="Kakamari"] * {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}



 /* ══════════════════════════════════════════════════
     DESKTOP NAVBAR - LOGO FIX WHILE SCROLLING
     Ensures logo doesn't get cut on desktop
     ══════════════════════════════════════════════════ */
  
  /* DESKTOP (769px and above) - Reset logo size */
  @media only screen and (min-width: 769px) {
    
    /* Normal navbar height on desktop */
    html body header.navbar,
    html body header#navbar {
      background: #ffffff !important;
      transition: all 0.3s ease !important;
    }
    
    html body header#navbar .h-16,
    html body header.navbar .h-16,
    html body header#navbar .h-20,
    html body header.navbar .h-20,
    html body header#navbar > div > div.flex {
      height: 80px !important;
      min-height: 80px !important;
      max-height: 80px !important;
      padding-top: 8px !important;
      padding-bottom: 8px !important;
      overflow: visible !important;
      align-items: center !important;
    }
    
    /* Desktop logo - smaller, proportional */
    html body header img.navbar-logo-img,
    html body .navbar-logo-img,
    html body a.navbar-logo-link img {
      width: auto !important;
      max-width: 140px !important;
      min-width: 0 !important;
      height: 60px !important;
      max-height: 60px !important;
      min-height: 0 !important;
      object-fit: contain !important;
      display: block !important;
    }
    
    /* SCROLLED NAVBAR - keep logo visible (slightly smaller) */
    html body header.navbar.scrolled,
    html body header#navbar.scrolled {
      background: rgba(255, 255, 255, 0.95) !important;
      backdrop-filter: blur(10px) !important;
      -webkit-backdrop-filter: blur(10px) !important;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
    }
    
    html body header.navbar.scrolled .h-16,
    html body header.navbar.scrolled .h-20,
    html body header#navbar.scrolled .h-16,
    html body header#navbar.scrolled .h-20,
    html body header#navbar.scrolled > div > div.flex {
      height: 70px !important;
      min-height: 70px !important;
      max-height: 70px !important;
      padding-top: 6px !important;
      padding-bottom: 6px !important;
    }
    
    /* Scrolled logo - slightly smaller but visible */
    html body header.navbar.scrolled img.navbar-logo-img,
    html body header#navbar.scrolled img.navbar-logo-img,
    html body header.navbar.scrolled .navbar-logo-img,
    html body header#navbar.scrolled .navbar-logo-img {
      height: 55px !important;
      max-height: 55px !important;
      min-height: 0 !important;
      max-width: 130px !important;
    }
  }
  
  /* ══════════════════════════════════════════════════
     MOBILE (768px and below) - Big logo as before
     ══════════════════════════════════════════════════ */
  @media only screen and (max-width: 768px) {
    
    html body header.navbar,
    html body header#navbar {
      background: #ffffff !important;
      padding: 0 !important;
      margin: 0 !important;
    }
    
    html body header.navbar > div,
    html body header#navbar > div {
      padding-top: 0 !important;
      padding-bottom: 0 !important;
      overflow: visible !important;
    }
    
    html body header#navbar .h-16,
    html body header.navbar .h-16,
    html body header#navbar .h-20,
    html body header.navbar .h-20,
    html body header#navbar > div > div.flex {
      height: 95px !important;
      min-height: 95px !important;
      max-height: 95px !important;
      padding: 0 !important;
      align-items: center !important;
      overflow: visible !important;
    }
    
    html body header img.navbar-logo-img,
    html body .navbar-logo-img,
    html body a.navbar-logo-link img {
      width: 150px !important;
      max-width: 150px !important;
      min-width: 150px !important;
      height: 95px !important;
      max-height: 95px !important;
      min-height: 95px !important;
      object-fit: contain !important;
      display: block !important;
    }
    
    /* Mobile scrolled - keep same */
    html body header.navbar.scrolled .h-16,
    html body header.navbar.scrolled .h-20,
    html body header#navbar.scrolled > div > div.flex {
      height: 95px !important;
      min-height: 95px !important;
      max-height: 95px !important;
    }
    
    html body header.navbar.scrolled img.navbar-logo-img,
    html body header#navbar.scrolled img.navbar-logo-img {
      height: 95px !important;
      max-height: 95px !important;
      min-height: 95px !important;
    }
  }
  
  @media only screen and (max-width: 480px) {
    html body header#navbar .h-16,
    html body header.navbar .h-16,
    html body header#navbar > div > div.flex {
      height: 80px !important;
      min-height: 80px !important;
      max-height: 80px !important;
    }
    
    html body header img.navbar-logo-img,
    html body .navbar-logo-img {
      width: 130px !important;
      max-width: 130px !important;
      min-width: 130px !important;
      height: 80px !important;
      max-height: 80px !important;
      min-height: 80px !important;
    }
  }


  /* ══════════════════════════════════════════════════
   🌐 UNIVERSAL NAVBAR LOGO - SAME SIZE ON ALL PAGES
   Place in shared style.css - works on every page
   ══════════════════════════════════════════════════ */

/* ═══ DESKTOP (≥769px) - SAME for ALL pages ═══ */
@media only screen and (min-width: 769px) {
  
  /* Navbar container - matches ALL HTML structures */
  html body header#navbar .h-16,
  html body header#navbar .h-20,
  html body header#navbar .navbar-inner,
  html body header.navbar .h-16,
  html body header.navbar .h-20,
  html body header.navbar .navbar-inner,
  html body header#navbar > div > div.flex {
    height: 80px !important;
    min-height: 80px !important;
    max-height: 80px !important;
    padding: 10px 0 !important;
    align-items: center !important;
    overflow: visible !important;
  }
  
  /* LOGO - SAME size on all pages (60×140) */
  html body header#navbar img,
  html body header#navbar img.navbar-logo-img,
  html body header.navbar img,
  html body header.navbar img.navbar-logo-img,
  html body header img.navbar-logo-img,
  html body .navbar-logo-img,
  html body a.navbar-logo-link img {
    width: auto !important;
    height: 60px !important;
    max-height: 60px !important;
    min-height: 60px !important;
    max-width: 140px !important;
    min-width: 0 !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
  }
  
  /* Logo link container */
  html body header a.navbar-logo-link,
  html body a.navbar-logo-link {
    display: inline-flex !important;
    align-items: center !important;
    height: auto !important;
    flex-shrink: 0 !important;
  }
  
  /* SCROLLED state - same size on all pages (55×130) */
  html body header.navbar.scrolled .h-16,
  html body header.navbar.scrolled .h-20,
  html body header.navbar.scrolled .navbar-inner,
  html body header#navbar.scrolled .h-16,
  html body header#navbar.scrolled .h-20,
  html body header#navbar.scrolled .navbar-inner,
  html body header#navbar.scrolled > div > div.flex {
    height: 70px !important;
    min-height: 70px !important;
    max-height: 70px !important;
  }
  
  html body header.navbar.scrolled img,
  html body header.navbar.scrolled img.navbar-logo-img,
  html body header#navbar.scrolled img,
  html body header#navbar.scrolled img.navbar-logo-img,
  html body header.navbar.scrolled .navbar-logo-img {
    height: 55px !important;
    max-height: 55px !important;
    min-height: 55px !important;
    max-width: 130px !important;
  }
}