:root {
  --font-body: 'Mulish', Helvetica, Arial, system-ui, -apple-system, sans-serif;
--motion-fast: 0.25s;

  --fs--2: clamp(0.75rem, 0.72rem + 0.2vw, 0.88rem);
  --fs--1: clamp(0.875rem, 0.84rem + 0.25vw, 1rem);
  --fs-0 : clamp(1rem, 0.95rem + 0.35vw, 1.125rem);
  --fs-1 : clamp(1.125rem, 1.05rem + 0.45vw, 1.375rem);
  --fs-2 : clamp(1.25rem, 1.15rem + 0.6vw, 1.6rem);
  --fs-3 : clamp(1.5rem, 1.35rem + 0.9vw, 2.1rem);
  --fs-4 : clamp(2rem, 1.75rem + 1.6vw, 3rem);

  --space-1: clamp(0.5rem, 0.4rem + 0.4vw, 0.75rem);
  --space-2: clamp(0.75rem, 0.6rem + 0.5vw, 1rem);
  --space-3: clamp(1rem, 0.8rem + 0.7vw, 1.5rem);
  --space-4: clamp(1.25rem, 1rem + 1vw, 2rem);
  --space-5: clamp(1.75rem, 1.2rem + 1.8vw, 3rem);

  --c-text: #4a4a4a;
  --c-muted: #6d6d6e;
  --c-bg: #ffffff;
  --c-elev: #f9f9f9;
  --c-brand: #d1ae3b;
  --c-brand-strong: #d2b03f;
  --c-primary: #345aa8;
  --c-accent: #43ab8a;
  --c-accent-soft: #dcfbf5;

  --radius-1: 8px;
  --radius-2: 12px;
  --shadow-1: 0 1px 8px rgb(0 0 0 / 0.01);
  --shadow-2: 0 6px 24px rgb(0 0 0 / 0.02);


  --logo-width: clamp(9vw, 6vw, 100px);
  --logo-gap: clamp(4px, 1vw, 10px);

  --container-w: 80%;
  --container-w-wide: 92%;
}



*,
*::before,
*::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  line-height: 2;
  color: var(--c-text);
  background: var(--c-bg);
  letter-spacing: 0.04em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }
img, picture, svg, video { max-width: 100%; display: block; }
img { height: auto; }
.main-container { width: 100%; max-width: var(--container-w); margin-inline: auto; }
@media (max-width: 768px) { .main-container { max-width: 100%; padding-inline: 16px; }
}

/* =================================================================
   HEADER & NAVIGATION (CLEANED)
   ================================================================= */
/* ================================================================
   HEADER & NAVIGATION — DESKTOP
   ================================================================ */
header {
  width: 100%;
  background: var(--c-bg);
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 8px solid rgba(255,255,255,0.02);
}

.menu-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 5vw 0 1vw;
}

.menu-border {
  width: 100%;
  height: 2px;
  background: var(--c-brand);
}

.menu-bar {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  padding-block: var(--space-1);
}

/* Logo (Desktop) */
.logo-wrapper {
  position: absolute;
  left: 50%;
  top: 20%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  width: var(--logo-width);
  transition: opacity 200ms ease, transform 280ms ease;
  pointer-events: auto;
}

.site-logo,
#main-logo {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: center;
  will-change: transform;
  transition: transform 280ms ease, opacity 220ms ease;
}

/* Desktop Sticky Logo */
header.is-sticky .site-logo,
header.is-sticky #main-logo {
  transform: scale(.25) translateY(30%);
  opacity: .96;
}

/* Burger hidden by default (desktop) */
.burger {
  display: none !important;
}


/* ================================================================
   MOBILE ONLY
   ================================================================ */
@media (max-width: 768px) {

  /* Show burger on mobile */
  .burger {
    position: absolute;
    right: 20px;
    top: 20px;
    padding: 12px;
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    background: #f9f9f9;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    z-index: 10020;
  }

  /* Main mobile header spacing */
  header {
    background: #ffffff !important;
    padding-top: 2px;
    padding-bottom: 70px;
    transition: padding .25s ease;
  }

  /* Main mobile logo (center screen layout adjustments) */
  .logo-wrapper {
    position: absolute !important;
    top: 2px !important;
    left: 4px !important;
    transform: none !important;
    width: clamp(140px, 24vw, 130px);
    margin: 0 !important;
  }

  /* Sticky header spacing */
  header.is-sticky {
    padding-top: 6px;
    padding-bottom: 14px;
  }

  /* Sticky logo size + position */
  header.is-sticky .logo-wrapper {
    width: clamp(60px, 10vw, 120px);
    top: 8px !important;
    left: 16px !important;
    margin: 0 !important;
  }

  header.is-sticky .site-logo,
  header.is-sticky #main-logo {
    transform: scale(.65) translateY(0%) !important;
    opacity: 1 !important;
  }
}


/* ================================================================
   NAVIGATION LINKS
   ================================================================ */
.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: clamp(.5vw, 1vw, .5vw);
  white-space: nowrap;
  letter-spacing: 0.05em;
  font-size: var(--fs--1);
}

.nav-left {
  justify-content: flex-end;
  width: calc(50% - (var(--logo-width) / 2) - var(--logo-gap));
}

.nav-right {
  justify-content: flex-start;
  width: calc(50% - (var(--logo-width) / 2) - var(--logo-gap));
}

.nav-left li a,
.nav-right li a {
  color: var(--c-text);
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  transition: color 0.25s ease;
}

.nav-left li a:hover,
.nav-right li a:hover {
  color: var(--c-brand-strong);
}





/* ================================================================
   DROPDOWN + MEGA MENU (DESKTOP)
   ================================================================ */
.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  padding: 8px 20px;
  background: #fff;
  border-radius: var(--radius-1);
  box-shadow: 0 4px 6px rgba(0,0,0,.06);
  opacity: 0;
  pointer-events: none;
  transition: .18s;
}

.dropdown-menu a,
.dropdown-menu li {
  display: block;
  width: 100%;
  padding: 8px 14px;
  text-align: left;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
}

/* ================================================================
   MEGA MENU
   ================================================================ */
.mega-menu { position: relative; }

.mega-panel {
  position: absolute;
  top: 100%;
  left: 0;
  padding: 30px;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 1px;
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 4px 6px rgba(0,0,0,.06);
  opacity: 0;
  pointer-events: none;
  transition: .18s;
  text-align: left;
}

.mega-menu:hover .mega-panel {
  opacity: 1;
  pointer-events: auto;
}

/* Left-side category list */
.mega-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid rgba(0,0,0,.07);
}

.mega-nav a {
  padding: 10px 20px;
  background: none;
  color: #4a4a4a;
  transition: 0.25s;
}

.mega-nav a:hover,
.mega-nav a.active {
  background: #f9f9f9 !important;
  color: #345aa8 !important;
}

/* Right content column */
.mega-content {
  background: #f9f9f9;
  padding: 10px 20px;
}

.mega-section { display: none; }
.mega-section.active { display: block; }

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

.mega-section ul li {
  padding: 8px 0;
  border-bottom: 1px solid #e5e5e5;
  font-size: .9rem;
  color: #4a4a4a;
}

.mega-section ul li:last-child {
  border-bottom: none;
}

/* ================================================================
   SUB-MENU (Nested inside mega items)
   ================================================================ */
.has-sub > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.has-sub > a::after {
  content: "▾";
  opacity: .8;
  margin-left: 8px;
  flex-shrink: 0;
}

.has-sub:hover > .sub-menu {
  display: block;
}

.sub-menu {
  list-style: none;
  margin: 4px 0 0;
  padding-left: 16px;
  display: none;
}

.sub-menu > li {
  position: relative;
  padding: 6px 0 6px 128px;
  border-bottom: none !important;
  font-size: .8rem;
  line-height: 1rem;
  color: #4a4a4a;
}

.sub-menu > li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: .5;
}

/* Mega menu nested submenu override */
.mega-section .has-sub > .sub-menu > li {
  padding: 6px 0 6px 8px !important;
  margin-left: 12px;
  border-bottom: none !important;
  color: #4a4a4a;
}

.mega-section .has-sub > .sub-menu > li::before {
  opacity: .6;
}

/* ===================== MOBILE MENU CORE ===================== */
.mobile-overlay-bg {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
  z-index: 9999;
}
.mobile-overlay-bg.show {
  opacity: 1;
  visibility: visible;
}

.mobile-panel {
  position: fixed;
  inset: 0;
  background: #fff;
  transform: translateX(-100%);
  transition: transform .28s cubic-bezier(.25,.85,.35,1);
  z-index: 10024;
  overflow: hidden;
}
.mobile-panel.open {
  transform: translateX(0);
}

.mobile-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 32px;
  background: #f9f9f9;
}
.mobile-logo img { height: 32px; }

.close-mobile {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 1.95rem;
  cursor: pointer;
  line-height: 1;
}

/* Mobile navigation screens */
.mobile-layer,
.sub-layer {
  position: absolute;
  top: 76px;
  left: 0;
  width: 100%;
  height: calc(100vh - 76px);
  overflow-y: auto;
  padding: 0 32px;
  background: #fff;
  transition: transform .28s cubic-bezier(.25,.85,.35,1);
}

.root-layer { transform: translateX(0); }
.root-layer.push-left { transform: translateX(-100%); }
.sub-layer { transform: translateX(100%); }
.sub-layer.active { transform: translateX(0); }

/* ===================== BUTTONS & TEXT ===================== */
.layer-link,
.back-btn,
.mobile-layer a {
  display: flex;
  align-items: center;
  width: 100%;
  cursor: pointer;
  font-family: "Mulish", sans-serif;
  text-decoration: none;
  color: #4a4a4a;
  letter-spacing: 0.35px;
}

.layer-link,
.back-btn {
  font-weight: 500;
  font-size: 1.15rem;
  padding: 14px 0;
  border: none;
  background: none;
  border-bottom: 1px solid rgba(0,0,0,.14);
  letter-spacing: 0.05rem;
}

.back-btn {
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,.25);
}

.mobile-layer a {
  font-weight: 400;
  font-size: 1.12rem;
  padding: 14px 0;
  line-height: 1.2;
  border-bottom: 1px solid rgba(0,0,0,.14);
}

.layer-link:hover,
.back-btn:hover,
.mobile-layer a:hover {
  color: #d4a34f;
}

.phone-link {
  color: #d4a34f !important;
  font-weight: 400;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,.14);
  letter-spacing: 0.55px;
}

/* Burger (mobile only) */
@media (max-width: 768px) {
  .burger {
    position: absolute;
    right: 20px;
    top: 20px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: #f9f9f9;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    z-index: 10020;
  }
  .burger span {
    width: 20px;
    height: 2px;
    background: #345aa8;
    border-radius: 10px;
  }

  .nav-left,
  .nav-right,
  .menu-border,
  .mega-panel,
  .dropdown-menu {
    display: none !important;
  }

  .logo-wrapper {
    position: absolute;
    top: 12px;
    left: 16px;
  }
}

/* ===================== LAST LEVEL ACCORDION ===================== */
.deep-acc-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 400;
  text-align: left; /* ← restored */
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  letter-spacing: 0.07rem;
}

.deep-acc-btn::after {
  content: "+";
  font-size: 1.1rem;
  opacity: .75;
  transition: .25s;
}

.deep-acc-btn.open::after {
  content: "–";
  opacity: 1;
}

.deep-acc-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
  padding-left: 6px;
}

.deep-acc-panel a {
  display: block;
  padding: 8px 0 8px 18px;
  font-size: 1rem;
  font-weight: 400;
  color: #3a3a3a;
  text-align: left !important; /* ← locked left alignment */
  position: relative;
  letter-spacing: 0.25px;
}

.deep-acc-panel a::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: .6;
}

/* ✅ Remove bottom border from last elements (unchanged) */
.mobile-layer > *:last-child,
.deep-acc-panel a:last-child,
.layer-link:last-child,
.mobile-layer a:last-child,
.root-layer > *:last-child {
  border-bottom: none !important;
}



.phone-text {
  font-weight: 500;
  color: inherit;
  cursor: default;
}




/* =================================================================
   BANNER SLIDER
   ================================================================= */
.banner-slider {
  position: relative;
  overflow: hidden;
  margin-block: var(--space-4);
  border-radius: var(--radius-2);
  container-type: inline-size;
}

.banner-slider img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-2);
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  object-fit: cover;
}

.banner-slider img.active {
  opacity: 1;
  position: relative;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--fs-3);
  color: #fff;
  opacity: 0.4;
  cursor: pointer;
  z-index: 5;
  padding: 0;
   transition: opacity 0.25s ease;
}
.arrow:hover {
  opacity: 1; 
}


.left-arrow { left: clamp(12px, 3vw, 40px); }
.right-arrow { right: clamp(12px, 3vw, 40px); }

.dots-container {
  position: absolute;
  inset-inline-start: 50%;
  inset-block-end: clamp(10px, 3vw, 40px);
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.3);
  cursor: pointer;
}
.dot.active { background: #fff; }





/* =================================================================
   ICON BLOCKS (FINAL — Medium Spacing, Container-Aligned)
   ================================================================= */

.icon-section,
.icon-blocks {
  width: 100% !important;
  max-width: 100% !important;
}


.icon-section {
  padding-top: clamp(32px, 1vw, 64px);
  padding-bottom: clamp(32px, 1vw, 64px);
}

.icon-blocks {
  width: 100%;
  max-width: var(--container-w); /* MATCHES HEADER WIDTH */
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: clamp(12px, 2vw, 32px);
  align-items: center;
}

/* Tablet */
@media (max-width: 1024px) {
  .icon-blocks {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

/* Mobile */
@media (max-width: 600px) {
  .icon-blocks {
    grid-template-columns: 1fr;
  }
}

.icon-block {
  display: flex;
  align-items: center;
  justify-content: center;      /* centers the whole group */
  gap: clamp(12px, 1.6vw, 20px);
  background: var(--c-elev);
  border-radius: var(--radius-2);
  padding: 1rem 2rem;
  width: 100%;
  text-align: left;             /* ← keep text itself left-aligned */
  transition: transform var(--motion-fast) ease, box-shadow var(--motion-fast) ease;
  will-change: transform;
}

.icon-block:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-1);
}

.icon-circle {
  inline-size: 3rem;
  block-size: 3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform var(--motion-fast) ease;
}

.icon-block:hover .icon-circle {
  transform: scale(1.07);
}


.icon-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* ✅ keeps h3 + p left-aligned */
}


.icon-right h3 {
  font-weight: 600;
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  color: var(--c-text);
  text-transform: uppercase;
  letter-spacing: 0.06rem;
  line-height: 1.1;
  margin-bottom: 2px;
}

.icon-right p {
  font-size: clamp(1rem, 1vw, 0.85rem);
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.06rem;
  line-height: 1.1;
}





/* =================================================================
   CONTENT SECTIONS
   ================================================================= */
.content-section {
  width: 100%;
  max-width: var(--container-w);
  margin: 10vw auto;
  text-align: center;
}

.content-section h1 {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: var(--c-brand-strong);
  font-size: var(--fs-4);
  margin-bottom: 0.2rem;
  line-height: 1.1;
}
.content-section h2 {
  color: var(--c-muted);
  font-size: var(--fs-2);
  margin-bottom: 1.5rem;
  letter-spacing: 0.12rem;
  line-height: 1.4;
}

.content-section p {
  text-align: left;
  font-size: var(--fs-0);
  margin-bottom: 2rem;
}

.content-section h3 { font-size: clamp(1.35rem, 1.1rem + 1vw, 1.7rem); line-height: 1.4; font-weight: 700; }
.content-section h4 { font-size: clamp(1.15rem, 1rem + 0.8vw, 1.5rem); line-height: 1.4; font-weight: 600; }
.content-section h5 { font-size: clamp(1.05rem, 0.95rem + 0.7vw, 1.3rem); line-height: 1.4; font-weight: 700; text-align: left; }

/* Two-column content row with highlight */
.content-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: start;
  width: 100%;
  font-size: clamp(1rem, 1.2vw, 1.5rem);
}
@media (max-width: 900px) {
  .content-row { grid-template-columns: 1fr; }
}

.highlight-block {
  background-color: var(--c-primary);
  color: #fff;
  width: 100%;
  padding: clamp(1.5rem, 3vw, 3rem);
  margin: 1rem 0 0 0;
  text-align: left;
  line-height: 1.6;
}

.next-paragraph {
  width: 100%;
  margin: .11rem 0 0 0;
  border-radius: var(--radius-2);
}




/* =================================================================
   COLUMN SECTIONS (Center Images + Keep Previous Column Width)
   ================================================================= */

.columns-section {
  width: 100%;
  margin-top: 3vw;
}

.columns-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: clamp(24px, 3vw, 3vw);
  width: 100%;
  
  margin-inline: auto; /* center the section */
}

@media (max-width: 1024px) {
  .columns-row {
    grid-template-columns: 1fr;
    gap: clamp(16px, 3vw, 32px);
  }
}

.column {
  background: var(--c-elev);
  border-radius: var(--radius-2);
  text-align: center;
  padding: clamp(18px, 2vw, 32px);
  transition: transform var(--motion-fast) ease, box-shadow var(--motion-fast) ease;
}
.column:hover { transform: translateY(-4px); box-shadow: var(--shadow-1); }

/* ✅ Corrected Image Centering */

.image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;     
  align-items: center;
  text-align: center;         
  transition: transform var(--motion-fast) ease;
}

.image-wrapper img {
  width: 60%;                  
  height: auto;                
  margin: 0 auto;             
  display: block;
  object-fit: contain;
  margin-top: 12px;
}

.column:hover .image-wrapper { transform: translateY(-2%); }

.column-content { padding: 24px; }

.btn {
  display: inline-block;
  font-weight: 700;
  border: 1px solid #adadad;
  padding: 6px 24px;
  border-radius: 999px;
  transition: color var(--motion-fast) ease, border-color var(--motion-fast) ease, transform var(--motion-fast) ease, box-shadow var(--motion-fast) ease;
}
.btn:hover {
  color: var(--c-brand);
  border-color: var(--c-brand);
  transform: translateY(-2px);
}

.body-button {
  font: 700 var(--fs--1)/1.2 var(--font-body);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color var(--motion-fast) ease;
}
.body-button:hover { color: var(--c-brand); }












/* =================================================================
   CORPORATE BAG SOLUTIONS SECTION
   ================================================================= */
.corporate-solutions {
  width: 100%;
  max-width: var(--container-w);
  background: #f8f6e0;
  color: var(--c-text);
  position: relative;
}

/* ---------------------------------------------------------------
   HEADER
----------------------------------------------------------------- */
.solutions-header {
  width: 100%;
  background: #d1ae3b;
  text-align: center;
  color: #fff;
  padding: 3rem 0;
}

.solutions-header h1 {
  font-size: clamp(1.8rem, 1.1rem + 2vw, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.solutions-header h2 {
  font-size: clamp(1.1rem, 0.9rem + 1vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.06rem;
  line-height: 1.3;
  max-width: 80%;
  margin: 0 auto;
}

/* ---------------------------------------------------------------
   HEADINGS & ICONS
----------------------------------------------------------------- */
.corporate-solutions h3 {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  color: #d1ae3b;
  font-size: 1.4rem;
  line-height: inherit;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.corporate-solutions h3.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Lucide icons */
.corporate-solutions h3 i {
  display: inline-flex;
  flex-shrink: 0;
  color: #d1ae3b; /* Base gold color */
  transition: transform 0.25s ease, color 0.4s ease;
}

.corporate-solutions h3 i svg {
  width: 1.9em;
  height: 1.9em;
  stroke: currentColor; /* Follows <i> color */
  stroke-width: 2.2;
  flex-shrink: 0;
  transition: transform 0.25s ease, stroke 0.4s ease;
}

.corporate-solutions h3:hover i {
  color: #ffd700; /* brighter gold on hover */
}

.corporate-solutions h3:hover i svg {
  transform: scale(1.15);
}

/* ---------------------------------------------------------------
   CONTENT
----------------------------------------------------------------- */
.solutions-content {
  width: min(1440px, 90%);
  margin: 0 auto;
  padding: clamp(2.5rem, 3vw, 3rem) 0;
}

.corporate-solutions p,
.solutions-columns .column-sol p {
  font-size: var(--fs-0);
  line-height: 1.6;
  color: inherit;
  text-align: left;
  margin: 0;
  padding: 0;
}

/* ✅ Reduce bottom spacing before the final paragraph section */
.corporate-solutions .solutions-content:nth-of-type(1) {
  padding-bottom: 1.5rem; /* was ~3rem */
}

/* ✅ Slightly tighten top padding on last content block */
.corporate-solutions .solutions-content:last-of-type {
  padding-top: 1rem;
}

/* ---------------------------------------------------------------
   GRID LAYOUT + GOLDEN SEPARATORS
----------------------------------------------------------------- */
.solutions-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 4rem;
}

.column-sol {
  padding: 2.5rem 0;
  border-bottom: 2px solid #d4af37;
  transition: transform var(--motion-fast) ease;
}

.solutions-columns .column-sol:hover {
  transform: translateY(-3px);
}

/* ---------------------------------------------------------------
   RESPONSIVE OPTIMIZATION
----------------------------------------------------------------- */
@media (max-width: 1200px) {
  .corporate-solutions {
    width: min(95%, 1200px);
  }
}

@media (max-width: 992px) {
  .corporate-solutions {
    width: 95%;
    padding: 40px 0;
  }

  .solutions-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .solutions-content {
    width: 95%;
  }

  .corporate-solutions h3 {
    font-size: 1.2rem;
  }

  .corporate-solutions h3 i svg {
    width: 1.6em;
    height: 1.6em;
  }
}

@media (max-width: 600px) {
  .solutions-header {
    padding: 2rem 1rem;
  }

  .solutions-header h1 {
    font-size: clamp(1.5rem, 1rem + 3vw, 2.2rem);
  }

  .solutions-header h2 {
    font-size: clamp(1rem, 0.8rem + 2vw, 1.4rem);
  }

  .solutions-columns {
    gap: 1.5rem;
  }

  .solutions-content p {
    font-size: 0.95rem;
  }
}









/* ===============================================================
   IMAGE BLOCK LEFT + TEXT RIGHT (HORIZONTAL ALIGNMENT)
   =============================================================== */

.content-section .image-wrapper {
  display: flex;
  flex-direction: row; /* ensure side-by-side layout */
  align-items: flex-start;
  justify-content: flex-start;
  gap: 6rem; /* space between image and text */
  flex-wrap: nowrap;
}

/* Grey image block */
.content-section .image-wrapper .image-block {
  flex: 0 0 25%; /* exactly 20% of parent width */
  padding: 12px; /* inner padding */
  box-sizing: border-box;
  text-align: left;
}

/* Image inside the grey box */
.content-section .image-wrapper .image-block img {
  width: 80%;
  height: auto;
  display: block;
}

/* Text content beside image */
.content-section .image-wrapper .text-content {
  flex: 1 1 auto;
  line-height: 1.8;
  min-width: 300px;
  color: var(--c-text);
}

.content-section .image-wrapper .text-content p {
  font-size: var(--fs-0);
  text-align: justify;
  margin-bottom: 1.5rem;
}

/* Responsive: stack image above text on smaller screens */
@media (max-width: 768px) {
  .content-section .image-wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }

  .content-section .image-wrapper .image-block {
    flex: 1 1 100%;
  }

  .content-section .image-wrapper .text-content {
    flex: 1 1 100%;
  }
}













/* ===============================================================
   INDUSTRY LIST • TWO-COLUMN STYLE WITH LIGHT GREY ARROW (HOVER GOLD)
   =============================================================== */

.image-bullet-wrapper {
  display: block;
  margin: 3rem auto;
  text-align: left;
}

/* Two-column numbered grid */
.image-bullet-wrapper p {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 2rem;
  counter-reset: industry;
  font-size: var(--fs-0);
  margin: 0;
  padding: 0;
}

/* Each item */
.image-bullet-wrapper p span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  counter-increment: industry;
  position: relative;
  padding-left: 1.8rem;
}

/* Number styling */
.image-bullet-wrapper p span::before {
  content: counter(industry) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #d1ae3b; /* gold numbering */
  font-weight: 700;
}

/* Text + arrow link */
.image-bullet-wrapper p span a {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

/* Arrow styling */
.image-bullet-wrapper p span a::after {
  content: "➜";
  font-size: 0.8em;
  color: #c5c5c5; /* light grey default */
  font-weight: 400;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover effect — only arrow turns gold */
.image-bullet-wrapper p span a:hover::after {
  color: #d1ae3b; /* gold on hover */
  transform: translateX(3px);
}

/* Responsive: stack columns on smaller screens */
@media (max-width: 768px) {
  .image-bullet-wrapper p {
    grid-template-columns: 1fr;
    gap: 0.4rem 0;
  }
}








/* ===============================================================
   CUSTOM MANUFACTURING SECTION — CLEAN STYLE
   =============================================================== */



.custom-image {
  display: block;
width: 100%;

  max-width: 1400px;
  margin: 2rem auto;
  border: 4vw solid #f9f9f9; 
  box-sizing: border-box;
}

/* ===============================================================
   PROCESS STEPS — ICON + TITLE + TEXT (EQUAL COLUMNS)
   =============================================================== */

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(32%, 1fr)); /* equal flexible columns */
  gap: .4rem;
border-bottom: 2vw  solid #f9f9f9; 
}

.process-steps .step {
  padding: .5rem .2rem;
  border: none;
  transition: transform 0.3s ease;
margin-bottom: 1.5rem;

}

.process-steps .step:hover {
  transform: translateY(-3px);
}




/* Headings inside steps */
.process-steps .step b {
  display: block;
  font-weight: 700;
  margin-bottom: 0.3rem;
text-align: left;
}

/* Description text */
.process-steps .step p {
  margin: 0 auto;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .content-section.custom-manufacturing p {
    text-align: left;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 500px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}











/* ===========================================
   ECO HIGHLIGHT SPLIT SECTION (FINAL VERSION)
   =========================================== */

/* Two-column layout with independent heights */
.eco-highlight {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  width: 100%;
  align-items: stretch; /* allows left to stay taller */
}

/* LEFT — Dark Green (Taller) */
.eco-highlight-left {
  background: #43ab8a; /* softened premium eco tone */
  color: #fff;
  padding: clamp(3.5rem, 7vw, 6rem) ;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical center */
  align-items: flex-start; /* keep text aligned left */
  position: relative;
  overflow: hidden;
  transition: transform .35s ease; /* hover movement */
}



/* Keep text on top of grain */
.eco-highlight-left > * {
  position: relative;
  z-index: 2;
}

/* Heading text */
.eco-highlight-left p {
  margin: 0;
  font-size: clamp(1.3rem, 1rem + 1vw, 2rem);
  line-height: 1.6;
  font-weight: 600;
}

.eco-highlight-left p span {
  display: block;
  margin-top: 0.6rem;
  font-weight: 300;
  
}

/* RIGHT — Light Green (Shorter) */
.eco-highlight-para {
  background: #e5fcf7;
  padding: clamp(1.2rem, 3vw, 2rem) clamp(1.6rem, 3vw, 2.4rem);
  color: #1f3f34;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical center */
  align-items: flex-start;
  transition: transform .35s ease;
}

.eco-highlight-para p {
  margin: 0;
  font-size: clamp(1rem, .8rem + .6vw, 1.25rem);
  line-height: 1.8;
}

/* Button inside paragraph */
.eco-highlight-para .body-button {
  display: inline-block;
  font-size: clamp(1rem, .8rem + .6vw, 1.25rem);

  margin-left: 6px;
  font-weight: 600;
}

/* HOVER — slide up slightly (no color change) */
.eco-highlight-left:hover,
.eco-highlight-para:hover {
  transform: translateY(-4px);
}

/* Mobile Stack */
@media (max-width: 900px) {
  .eco-highlight {
    grid-template-columns: 1fr;
  }
  .eco-highlight-left,
  .eco-highlight-para {
    padding: 2rem;
    transform: none; /* disable hover movement on touch devices */
  }
}












/* =============================================
   PREMIUM WHITE + PALE GOLD FOOTER STYLE (OPTION B)
   ============================================= */

/* =============================================================
   FOOTER — Premium White + Pale Gold + True Column Layout
   ============================================================= */

.footer-section {
  background: #ffffff;
  border-top: 3px solid var(--c-brand);
  padding-top: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 4rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--space-4);
}

/* Headings */
.footer-col h4 {
  font-size: var(--fs-1);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--c-brand-strong);
  margin-bottom: var(--space-2);
}

/* Paragraph (About text stays clean, NOT link/button style) */
.footer-col p {
  font-size: var(--fs-0);
  color: var(--c-text);
  line-height: 1.7;
  margin-bottom: var(--space-3);
  text-decoration: none !important;
}
.footer-col p::after {
  display: none !important; /* remove unintended underline effect */
}

/* Links */
.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 6px;
}

.footer-col a {
  font-size: var(--fs--1);
  color: var(--c-text);
  position: relative;
  transition: color 0.25s ease;
}

.footer-col a:hover {
  color: var(--c-brand-strong);
}

/* Elegant underline reveal on HOVER (links only) */
.footer-col a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 1px;
  width: 0%;
  background: var(--c-brand-strong);
  transition: width .25s ease;
}
.footer-col a:hover::after {
  width: 100%;
}

/* Bottom footer */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(209, 174, 59, 0.18);
  margin-top: var(--space-5);
  padding-top: var(--space-2);
  font-size: var(--fs--1);
  color: var(--c-muted);
  letter-spacing: 0.04em;
  line-height: 1.6;
}

/* Mobile spacing improvements */
@media (max-width: 600px) {
  .footer-grid {
    gap: var(--space-3);
  }
  .footer-col h4 {
    margin-top: var(--space-2);
  }
}












/* =================================================================
   FULL-SCREEN OVERLAY MENU + HAMBURGER (Style A - Minimal)
   ================================================================= */
.menu-toggle { display: none; }

.hamburger {
  display: none;
  cursor: pointer;
  width: 34px;
  height: 26px;
  position: absolute;
  right: 20px;
  top: 14px;
  z-index: 999;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--c-text);
  margin: 6px 0;
  border-radius: 4px;
  transition: 0.35s ease;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  z-index: 998;
}

.mobile-overlay ul {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  text-align: center;
}

.mobile-overlay a {
  font-size: clamp(1.4rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.menu-toggle:checked ~ .mobile-overlay {
  opacity: 1;
  pointer-events: auto;
}

.menu-toggle:checked + .hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}
.menu-toggle:checked + .hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-left, .nav-right { display: none !important; }
}

/* Optional dark mode
@media (prefers-color-scheme: dark) {
  :root {
    --c-text:#E7E7E7; --c-muted:#B8B8BA; --c-bg:#0f0f10; --c-elev:#17181a;
    --c-brand:#e0c050; --c-brand-strong:#e7ca5a;
  }
}
*/


/* Scroll reveal */
.reveal { opacity:0; transform:translateY(40px); transition:all .8s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* Contact button */
.contact-btn { display:inline-block; background:#25D366; color:#fff; padding:14px 32px; font-size:var(--fs-0); border-radius:50px; text-transform:uppercase; margin-top:20px; transition:transform .25s ease, box-shadow .25s ease; }
.contact-btn:hover { transform:translateY(-3px); box-shadow:0 6px 16px rgba(0,0,0,0.18); }

/* Floating WhatsApp */
.whatsapp-float { position:fixed; bottom:22px; right:22px; background:#25D366; color:#fff; font-size:1.9rem; width:56px; height:56px; border-radius:50%; display:flex; justify-content:center; align-items:center; box-shadow:0 6px 16px rgba(0,0,0,0.18); z-index:9999; transition:transform .25s ease; }
.whatsapp-float:hover { transform:scale(1.1); }


/* === Unified Container Width Fix (Option 2: 80%) === */
.main-container,
.content-section,
.corporate-solutions {
  width: 100% !important;
  max-width: var(--container-w) !important;
  margin-inline: auto;
}

.highlighted-layout-container {
  width: 100% !important;
  max-width: var(--container-w-wide) !important;
  margin-inline: auto;
}



@media (max-width: 768px) {
  .main-container,
  .content-section,
  .icon-blocks,
  .columns-row,
  .corporate-solutions,
  .highlighted-layout-container {
    width: 100% !important;
    max-width: 100% !important;
    padding-inline: 16px;
  }
}


