

:root {
  /* Primary Brand Colors */
  --primary: #0066FF;
  --primary-hover: #0052cc;
  --primary-light: #EBF3FF;
  --primary-glow: rgba(0, 102, 255, 0.35);

  /* Accent Colors */
  --accent-cyan: #00D2FF;
  --accent-green: #10B981;
  --accent-orange: #FF6B00;
  --accent-gold: #F59E0B;

  /* Dark / Hero Shades */
  --navy-950: #070D1E;
  --navy-900: #0B132B;
  --navy-800: #132247;
  --navy-700: #1C3168;
  --navy-card: rgba(19, 34, 71, 0.7);

  /* Light / Neutral Shades */
  --bg-page: #FFFFFF;
  --bg-subtle: #F8FAFC;
  --bg-card: #FFFFFF;
  --border-light: #E2E8F0;
  --border-subtle: #F1F5F9;

  /* Text Colors */
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 35px -10px rgba(0, 102, 255, 0.12), 0 10px 20px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 25px rgba(0, 102, 255, 0.45);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Layout */
  --container-max: 1560px;
  --container-pad: 24px;
}

/* Base Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-page);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: var(--transition-normal);
  height: 72px;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-symbol {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #0066FF, #00D2FF);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-weight: 800;
  font-size: 20px;
  font-family: var(--font-heading);
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #0F172A;
  line-height: 1.1;
  text-transform: uppercase;
}

.logo-tagline {
  font-size: 10.5px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Nav Menu With Icons */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 4px;
  position: relative;
  border-radius: var(--radius-sm);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover .nav-link {
  background-color: #EBF3FF;
  color: #0066FF;
  border-radius: 8px;
}

.mega-menu-accordion {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 12px 40px -10px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border-light);
  width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-dropdown:hover .mega-menu-accordion {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.acc-item {
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  overflow: hidden;
}

.acc-item.active {
  border-color: #F1F5F9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.acc-header {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  cursor: pointer;
  background: #FFF;
  border-radius: 12px;
}

.acc-item:hover .acc-header {
  background: #F8FAFC;
}

.acc-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #EFF6FF;
  color: #0066FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
}

.acc-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: #0F172A;
  flex: 1;
}

.acc-arrow {
  color: #000;
  transition: transform 0.3s ease;
  width: 16px;
  height: 16px;
}

.acc-content {
  max-height: 0;
  opacity: 0;
  transition: all 0.3s ease;
  background: #FFF;
}

.acc-item.active .acc-content {
  max-height: 300px;
  opacity: 1;
}

.acc-content-inner {
  padding: 0 16px 16px 62px;
  display: flex;
}

.acc-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.acc-links li a {
  font-size: 13.5px;
  color: #64748B;
  transition: color 0.2s;
  font-weight: 500;
}

.acc-links li a:hover {
  color: #0066FF;
}

/* Header Actions (Search, Cart, Quote CTA) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Cart / Inquiry Bag Button */

/* Header Quote Button */
.btn-primary-header {
  background: var(--primary);
  color: #FFF;
  font-weight: 600;
  font-size: 12.5px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-primary-header:hover {
  background: var(--primary-hover);
  box-shadow: 0 4px 14px rgba(0, 102, 255, 0.35);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
}

/* ==========================================================================
   HERO / BANNER SECTION (NEW DESIGN)
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  height: calc(100vh - 72px);
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #070D1E;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: scale(1.05);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 5;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 15, 36, 0.98) 0%, rgba(6, 15, 36, 0.85) 45%, rgba(6, 15, 36, 0.2) 100%);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content {
  max-width: 850px;
  margin-top: -80px;
}

.hero-title-new {
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  color: #FFFFFF;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-title-new .text-blue {
  color: #00A3FF;
}

.hero-separator {
  height: 4px;
  background-color: #0066FF;
  margin-bottom: 24px;
  width: 40px;
}

/* Animations for text inside active slide */

.hero-slide.active .hero-title-new,
.hero-slide.active .hero-desc-new,
.hero-slide.active .hero-actions-new {
  animation: slideUpFade 0.8s ease forwards;
  opacity: 0;
}

.hero-slide.active .hero-title-new {
  animation-delay: 0.4s;
}

.hero-slide.active .hero-separator {
  width: 0;
  animation: expandWidth 0.8s ease forwards 0.6s;
}

.hero-slide.active .hero-desc-new {
  animation-delay: 0.6s;
}

.hero-slide.active .hero-actions-new {
  animation-delay: 0.8s;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandWidth {
  from {
    width: 0;
  }

  to {
    width: 40px;
  }
}

/* Slider Controls */

.hero-desc-new {
  font-size: 15px;
  line-height: 1.6;
  color: #CBD5E1;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions-new {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-primary-new {
  background: #00A3FF;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0, 163, 255, 0.4);
  transition: all 0.3s ease;
}

.btn-primary-new:hover {
  background: #008AE6;
  box-shadow: 0 6px 25px rgba(0, 163, 255, 0.6);
  transform: translateY(-2px);
}

.btn-outline-new {
  background: transparent;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.btn-outline-new:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
}

.hero-bottom-stats {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--container-max);
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  gap: 32px;
  z-index: 10;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  width: 24px;
  height: 24px;
  color: #00A3FF;
}

.stat-text {
  display: flex;
  flex-direction: column;
}

.stat-val {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.stat-lbl {
  color: #94A3B8;
  font-size: 12px;
  line-height: 1.2;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 992px) {

  .hero-overlay {
    background: linear-gradient(90deg, rgba(6, 15, 36, 0.95) 0%, rgba(6, 15, 36, 0.85) 100%);
  }

  .hero-bottom-stats {
    flex-wrap: wrap;
    gap: 20px;
    bottom: 20px;
  }

  .stat-divider {
    display: none;
  }
}


/* ==========================================================================
   SECTION COMMON HEADER
   ========================================================================== */
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 20px;
}

.section-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 4px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.view-all-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
  white-space: nowrap;
}

.view-all-link:hover {
  gap: 10px;
  color: var(--primary-hover);
}

/* ==========================================================================
   SHOP BY CATEGORY SECTION (REDESIGNED)
   ========================================================================== */
.category-section {
  position: relative;
  padding: 80px 0;
  background-color: #FAFAFB;
  overflow: hidden;
}

.category-bg-watermark {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 180px;
  font-weight: 900;
  color: rgba(0, 102, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  text-align: center;
  animation: floatWatermark 6s ease-in-out infinite;
}

@keyframes floatWatermark {
  0% {
    transform: translateX(-50%) translateY(0px);
    color: rgba(0, 102, 255, 0.03);
  }

  50% {
    transform: translateX(-50%) translateY(-15px);
    color: rgba(0, 102, 255, 0.06);
  }

  100% {
    transform: translateX(-50%) translateY(0px);
    color: rgba(0, 102, 255, 0.03);
  }
}

.category-container {
  position: relative;
  z-index: 1;
}

.category-top-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.category-top-left {
  max-width: 600px;
}

.category-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.category-tag .text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #0066FF;
  text-transform: uppercase;
}

.category-tag .line {
  width: 40px;
  height: 1px;
  background-color: #D1D5DB;
}

.category-main-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  color: #0F172A;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.category-main-title .highlight-underline {
  color: #0066FF;
  position: relative;
  display: inline-block;
}

.category-main-title .highlight-underline::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #0066FF;
  border-radius: 2px;
  opacity: 0.2;
}

.category-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #64748B;
}

.category-top-right {
  display: flex;
  gap: 30px;
  align-items: center;
}

.category-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.category-feature .feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #EBF3FF;
  color: #0066FF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-feature .feat-text {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  color: #475569;
}

/* Carousel/Grid */
.category-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

.cat-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0F172A;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
  flex-shrink: 0;
  z-index: 2;
  cursor: pointer;
}

.cat-nav-btn:hover {
  background: #0066FF;
  color: #FFFFFF;
  border-color: #0066FF;
}

.category-cards-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  /* Firefox */
  padding: 10px 0;
}

.category-cards-track::-webkit-scrollbar {
  display: none;
  /* Chrome */
}

.new-cat-card {
  min-width: 220px;
  flex: 1;
  background-color: var(--card-bg, #FFF);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.new-cat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.cat-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: var(--card-accent, #0066FF);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.cat-card-content h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 6px;
}

.cat-card-content p {
  font-size: 12px;
  color: #64748B;
  line-height: 1.4;
  margin-bottom: 24px;
}

/* Bottom area */
.category-bottom-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cat-deco-left {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.cat-deco-left .quote-mark {
  font-family: var(--font-heading);
  font-size: 60px;
  line-height: 0.6;
  color: #E2E8F0;
  font-weight: 900;
}

.cat-deco-left .deco-text {
  font-size: 11px;
  font-weight: 800;
  color: #94A3B8;
  line-height: 1.3;
}

.cat-view-all-btn {
  background: #0066FF;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
  border: none;
  cursor: pointer;
}

.cat-view-all-btn:hover {
  background: #0052cc;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

.cat-deco-right .cursive-text {
  font-family: 'Dancing Script', cursive;
  font-size: 22px;
  color: #475569;
  line-height: 1.2;
  display: block;
  text-align: right;
  transform: rotate(-3deg);
}

@media (max-width: 992px) {
  .category-top-area {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .category-top-right {
    flex-wrap: wrap;
  }

  .category-bottom-area {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .cat-deco-right .cursive-text {
    text-align: center;
  }
}

/* ==========================================================================
   ABOUT US SECTION (REDESIGNED)
   ========================================================================== */
.about-section {
  padding: 80px 0;
  background-color: #F8FAFC;
  position: relative;
  overflow: hidden;
  /* Optional: faint grid/crosshair background can be added here */
  background-image:
    radial-gradient(#E2E8F0 1px, transparent 1px),
    radial-gradient(#E2E8F0 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
}

.about-section::before {
  content: '+';
  position: absolute;
  top: 40px;
  left: 45%;
  font-size: 24px;
  color: #94A3B8;
  opacity: 0.5;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: center;
}

/* Left Content */
.about-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.about-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.about-tag .line {
  width: 24px;
  height: 2px;
  background-color: #0066FF;
}

.about-tag .text {
  font-size: 11px;
  font-weight: 800;
  color: #0066FF;
  letter-spacing: 0.1em;
}

.about-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  color: #0F172A;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.about-title .text-blue {
  color: #0066FF;
}

.about-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 32px;
}

.about-btn {
  background-color: #0066FF;
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
  margin-bottom: 40px;
}

.about-btn:hover {
  background-color: #0052cc;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
  color: #FFFFFF;
}

.about-stats-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.about-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #EBF3FF;
  color: #0066FF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-text-wrap {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.1;
}

.stat-lbl {
  font-size: 10px;
  color: #64748B;
  font-weight: 600;
}

.about-stats-row .stat-divider {
  width: 1px;
  height: 30px;
  background-color: #E2E8F0;
}

.about-bottom-left-text {
  font-size: 10px;
  font-weight: 700;
  color: #94A3B8;
  letter-spacing: 0.05em;
  line-height: 1.4;
  position: relative;
  padding-top: 16px;
}

.about-bottom-left-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 1px;
  background-color: #94A3B8;
}

/* Right Visual */
.about-right {
  position: relative;
  height: 480px;
}

.about-main-img-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  height: 85%;
  border-radius: 40px 16px 16px 40px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.about-main-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-cursive-overlay {
  position: absolute;
  top: 30px;
  right: 40px;
  font-family: 'Dancing Script', cursive;
  font-size: 26px;
  color: #0F172A;
  line-height: 1.1;
  text-align: right;
  transform: rotate(-5deg);
}

.cursive-underline {
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 100px;
  height: 15px;
}

.about-float-card-dark {
  position: absolute;
  top: 30px;
  left: 0;
  background: #0B132B;
  border-radius: 16px;
  padding: 24px;
  color: #FFFFFF;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  width: 180px;
  border: 4px solid #F8FAFC;
  z-index: 2;
}

.about-float-card-dark .card-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(0, 102, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0066FF;
  margin-bottom: 16px;
}

.about-float-card-dark .card-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
}

.about-float-card-dark .card-sub {
  font-size: 9px;
  color: #94A3B8;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.about-float-card-img {
  position: absolute;
  bottom: 10%;
  left: -20px;
  width: 240px;
  height: 240px;
  background: #1E293B;
  border-radius: 16px;
  border: 4px solid #F8FAFC;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.about-float-card-img img {
  width: 100%;
  height: 75%;
  object-fit: cover;
}

.about-float-card-img .card-bottom-text {
  height: 25%;
  background: #1E293B;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

.about-bottom-right-text {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 9px;
  font-weight: 700;
  color: #94A3B8;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-bottom-right-text .line {
  width: 40px;
  height: 1px;
  background-color: #94A3B8;
}

@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-right {
    height: 400px;
    margin-top: 40px;
  }

  .about-float-card-img {
    left: 10px;
    width: 200px;
    height: 200px;
  }
}

/* ==========================================================================
   FEATURED PRODUCTS SECTION (REDESIGNED)
   ========================================================================== */
.featured-section {
  padding: 80px 0;
  background-color: #F8FAFC;
  position: relative;
  overflow: hidden;
}

.featured-bg-watermark {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 160px;
  font-weight: 900;
  color: rgba(0, 102, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  text-align: center;
  animation: floatWatermark 8s ease-in-out infinite;
}

.featured-container {
  position: relative;
  z-index: 1;
}

/* Top Area */
.featured-top-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.featured-top-left {
  max-width: 600px;
}

.featured-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.featured-tag .line {
  width: 24px;
  height: 2px;
  background-color: #0066FF;
}

.featured-tag .text {
  font-size: 11px;
  font-weight: 800;
  color: #0066FF;
  letter-spacing: 0.1em;
}

.featured-main-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  color: #0F172A;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.featured-main-title .text-blue {
  color: #0066FF;
}

.featured-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #64748B;
}

.featured-top-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Products Carousel */

/* Product Card */

/* Bottom Features */

@media (max-width: 1200px) {
  .featured-top-area {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .featured-top-right {
    width: 100%;
    justify-content: space-between;
  }
}

/* ==========================================================================
   MANUFACTURING PROCESS SECTION
   ========================================================================== */
.process-section {
  padding: 70px 0;
  background: #F8FAFC;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

/* 5-Step Process Timeline */

/* Process Right Image */

/* ==========================================================================
   SUSTAINABILITY SECTION (REDESIGNED)
   ========================================================================== */
.sustainability-section-new {
  padding: 60px 0;
  background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

/* Corner Leaf Decorations */

.sustainability-container-new {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

/* Left Area: Image */
.sus-left {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sus-bg-shape {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80%;
  height: 80%;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 20px;
  z-index: 0;
}

.sus-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 350px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.sus-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sus-img-wrapper:hover img {
  transform: scale(1.05);
}

.sus-img-overlay-top {
  position: absolute;
  top: 30px;
  left: 30px;
  color: #FFFFFF;
}

.sus-img-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  opacity: 0.9;
  display: block;
  margin-bottom: 6px;
}

.sus-img-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.sus-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(7, 40, 20, 0.85);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
}

.sus-img-badge .badge-icon {
  color: #10B981;
}

.sus-img-badge .badge-text {
  font-size: 10px;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
}

.sus-img-badge .badge-text strong {
  font-size: 11px;
  font-weight: 700;
}

/* Center Area: Content */
.sus-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 10px;
}

.sus-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.sus-tag .text {
  font-size: 11px;
  font-weight: 800;
  color: #10B981;
  letter-spacing: 0.05em;
}

.sus-tag .line {
  width: 30px;
  height: 1px;
  background-color: #E2E8F0;
}

.sus-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.sus-title .text-green {
  color: #10B981;
}

.sus-desc {
  font-size: 13px;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Right Area: Cards */
.sus-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.sus-cards-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
}

.sus-card-item {
  background: #FFFFFF;
  border: 1px solid #F1F5F9;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  cursor: pointer;
}

.sus-card-item:hover {
  transform: translateX(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border-color: rgba(16, 185, 129, 0.2);
}

.sus-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #F0FDF4;
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sus-card-content {
  flex-grow: 1;
}

.sus-card-content h5 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 2px;
}

.sus-card-content p {
  font-size: 11px;
  color: #64748B;
}

.sus-cursive-float {
  position: absolute;
  bottom: -30px;
  right: -20px;
  font-family: 'Dancing Script', cursive;
  font-size: 24px;
  color: #10B981;
  line-height: 1.1;
  transform: rotate(-10deg);
  text-align: right;
  z-index: 1;
  opacity: 0.9;
}

@media (max-width: 1100px) {
  .sustainability-container-new {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }

  .sus-right {
    grid-column: 1 / -1;
  }

  .sus-cards-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .sus-cursive-float {
    bottom: -10px;
    right: 20px;
  }
}

@media (max-width: 768px) {
  .sustainability-container-new {
    grid-template-columns: 1fr;
  }

  .sus-cards-list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  padding: 70px 0;
  background: #F8FAFC;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 102, 255, 0.25);
}

.quote-icon-svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  opacity: 0.85;
}

.testimonial-quote {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-secondary);
  font-style: italic;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
}

.author-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.author-role {
  font-size: 11px;
  color: var(--text-muted);
}

.star-rating {
  color: var(--accent-gold);
  font-size: 12px;
  display: flex;
  gap: 2px;
}

/* ==========================================================================
   BLOG / LATEST INSIGHTS SECTION
   ========================================================================== */

/* ==========================================================================
   PRE-FOOTER CTA BANNER
   ========================================================================== */
.cta-banner-section {
  background: linear-gradient(135deg, #070e20 0%, #0a1738 50%, #060e22 100%);
  color: #FFFFFF;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 36px;
}

.cta-left-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cta-banner-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-cyan);
}

.cta-banner-heading {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.cta-right-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-banner-desc {
  font-size: 13.5px;
  color: #CBD5E1;
  line-height: 1.5;
}

.cta-buttons-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-cta-blue {
  background: var(--primary);
  color: #FFF;
  font-weight: 700;
  font-size: 13px;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.4);
}

.btn-cta-blue:hover {
  background: #0052cc;
  transform: translateY(-2px);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #FFFFFF;
  color: var(--text-primary);
  padding: 60px 0 24px;
  border-top: 1px solid var(--border-light);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.1fr 1.6fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand-desc {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 280px;
}

.social-links-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.social-icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F1F5F9;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-icon-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link-item {
  font-size: 12.5px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-link-item:hover {
  color: var(--primary);
  padding-left: 4px;
}

/* Contact Details */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-secondary);
}

.contact-icon {
  width: 15px;
  height: 15px;
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}

/* Newsletter in Footer */
.newsletter-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.newsletter-label {
  font-size: 11.5px;
  color: var(--text-muted);
}

.newsletter-form {
  display: flex;
  align-items: center;
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 3px 3px 3px 12px;
}

.newsletter-form:focus-within {
  border-color: var(--primary);
}

.newsletter-input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 12px;
  color: var(--text-primary);
  width: 100%;
}

.newsletter-btn {
  width: 28px;
  height: 28px;
  background: var(--primary);
  border-radius: var(--radius-full);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.newsletter-btn:hover {
  background: var(--primary-hover);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  font-size: 11.5px;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  gap: 14px;
}

.footer-legal-links a:hover {
  color: var(--primary);
}

/* ==========================================================================
   INTERACTIVE MODALS & TOAST
   ========================================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 13, 30, 0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 28px;
  transform: scale(0.95);
  transition: var(--transition-normal);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 18px;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: #E2E8F0;
  color: var(--text-primary);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-primary);
}

.form-control {
  padding: 9px 12px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 13px;
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
}

.btn-submit-modal {
  width: 100%;
  background: var(--primary);
  color: #FFF;
  font-weight: 700;
  padding: 12px;
  border-radius: var(--radius-full);
  margin-top: 6px;
  transition: var(--transition-fast);
}

.btn-submit-modal:hover {
  background: var(--primary-hover);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@keyframes slideInToast {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1100px) {


  .cta-banner-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 990px) {

  .nav-menu,
  .btn-primary-header {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-section {
    min-height: auto;
    padding: 40px 0 50px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {

  .footer-top-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   OUR MANUFACTURING PROCESS SECTION
   ========================================================================== */
.process-section {
  position: relative;
  background-color: #F8FAFC;
  overflow: hidden;
  padding: 80px 0;
}

.process-container {
  display: flex;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.process-left {
  width: 65%;
  display: flex;
  justify-content: flex-end;
  padding-right: 5%;
  position: relative;
  z-index: 2;
  gap: 40px;
}

.process-text-area {
  max-width: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.process-tag .text {
  font-size: 11px;
  font-weight: 800;
  color: #0066FF;
  letter-spacing: 0.1em;
}

.process-tag .line {
  width: 40px;
  height: 1px;
  background-color: #0066FF;
}

.process-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.1;
  margin-bottom: 20px;
}

.process-title .text-blue {
  color: #0066FF;
}

.process-desc {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 24px;
}

.process-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  border-top: 1px solid #E2E8F0;
  padding-top: 24px;
}

.p-stat {
  display: flex;
  flex-direction: column;
}

.p-val {
  font-size: 24px;
  font-weight: 800;
  color: #0F172A;
}

.p-lbl {
  font-size: 11px;
  color: #64748B;
  line-height: 1.3;
}

.p-stat-div {
  width: 1px;
  height: 30px;
  background-color: #E2E8F0;
}

.process-cursive {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  color: #94A3B8;
  line-height: 1.2;
  transform: rotate(-5deg);
  position: relative;
  width: fit-content;
  margin-top: 20px;
}

.cursive-underline-proc {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 20px;
}

/* Timeline */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  padding-left: 20px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 26px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background-color: #CBD5E1;
  z-index: 0;
}

.proc-step {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.proc-num {
  font-size: 20px;
  font-weight: 800;
  color: #94A3B8;
  opacity: 0.5;
  width: 25px;
}

.proc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #0066FF;
  box-shadow: 0 0 0 4px #EFF6FF;
}

.proc-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: transparent;
}

.proc-card-text h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 4px;
}

.proc-card-text p {
  font-size: 12px;
  color: #64748B;
  line-height: 1.4;
  max-width: 200px;
}

/* Right Image Area */
.process-right {
  width: 45%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.process-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.process-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.1) 100%);
}

.proc-right-text-top {
  position: absolute;
  top: 60px;
  right: 60px;
  text-align: right;
  color: #FFF;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.6;
  z-index: 2;
}

.proc-right-text-top .line {
  display: block;
  width: 30px;
  height: 1px;
  background: #FFF;
  margin-left: auto;
  margin-top: 8px;
}

.proc-right-text-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #0F172A;
  color: #FFF;
  padding: 40px 60px 40px 80px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.6;
  text-align: right;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 2;
}

@media (max-width: 1024px) {
  .process-left {
    width: 100%;
    padding: 0 20px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .process-text-area {
    padding-right: 0;
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .process-stats {
    justify-content: center;
  }

  .process-timeline {
    margin-top: 40px;
    padding-left: 0;
  }

  .process-timeline::before {
    left: 6px;
  }

  .process-right {
    display: none;
  }
}

/* Reference page styling */
:root {
  --primary: #9b633a;
  --primary-hover: #744326;
  --primary-light: #f7efe8;
  --navy-950: #081725;
  --navy-900: #0b1b2a;
  --text-primary: #112238;
  --text-secondary: #4e5964;
  --text-muted: #7d858b;
  --border-light: #e7e5e1;
  --bg-subtle: #f8f8f6;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container-max: 1180px;
  --container-pad: 20px;
}

body {
  background: #fff;
  color: var(--text-primary);
  font-size: 13px;
}

.site-header {
  height: 64px;
  box-shadow: 0 1px 8px rgba(17, 34, 56, .08);
}

.navbar-container {
  max-width: 1180px;
}

.brand-logo {
  gap: 0;
}

.logo-text-group {
  line-height: 1;
}

.logo-title {
  font-size: 22px;
  letter-spacing: .01em;
  line-height: .9;
}

.logo-tagline {
  color: #a0653b;
  font-size: 9px;
  letter-spacing: .15em;
  margin-top: 3px;
}

.logo-text-group small {
  color: #6f7478;
  font-size: 5px;
  letter-spacing: .12em;
  margin-top: 3px;
}

.nav-menu {
  gap: 26px;
}

.nav-link {
  color: #273443;
  font-size: 11px;
  font-weight: 500;
  padding: 7px 0;
}

.nav-link.active,
.nav-link:hover {
  color: var(--primary);
}

.nav-link.active::after {
  background: var(--primary);
  height: 2px;
  bottom: -8px;
}

.nav-dropdown:hover .nav-link {
  background: transparent;
  color: var(--primary);
}

.header-actions {
  gap: 12px;
}

.btn-primary-header {
  background: var(--primary);
  border-radius: 6px;
  padding: 9px 14px;
  font-size: 11px;
}

.hero-section {
  height: clamp(320px, 35vw, 475px);
  min-height: 0;
  background: #0b1b2a;
}

.hero-slide {
  bottom: 76px;
}

.hero-background {
  background-position: center;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(8, 23, 37, .94) 0%, rgba(8, 23, 37, .79) 49%, rgba(8, 23, 37, .18) 100%);
}

.hero-container {
  max-width: 1180px;
}

.hero-content {
  max-width: 560px;
  margin-top: -10px;
}

.hero-title-new {
  font-size: clamp(27px, 4vw, 45px) !important;
  line-height: 1.08 !important;
  margin-bottom: 10px;
}

.hero-title-new .text-blue {
  color: #c08751;
}

.hero-separator {
  display: none;
}

.hero-desc-new {
  color: #e3e8eb;
  font-size: 11px !important;
  line-height: 1.45;
  max-width: 520px;
  margin-bottom: 15px;
}

.hero-actions-new {
  gap: 12px;
}

.btn-primary-new,
.btn-outline-new {
  border-radius: 4px;
  font-size: 10px;
  padding: 9px 16px;
}

.btn-primary-new {
  background: var(--primary);
  box-shadow: none;
}

.btn-primary-new:hover {
  background: var(--primary-hover);
  box-shadow: none;
}

.btn-outline-new {
  border-color: #dce2e6;
}

.hero-bottom-stats {
  bottom: 0;
  width: 100%;
  max-width: none;
  background: rgba(255, 255, 255, .98);
  color: var(--text-primary);
  padding: 13px max(20px, 6vw);
  gap: 0;
}

.hero-bottom-stats .stat-item {
  flex: 1;
  gap: 10px;
  min-width: 0;
}

.hero-bottom-stats .stat-icon-box {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: #faf8f5;
}

.hero-bottom-stats .stat-icon {
  color: var(--primary);
  width: 20px;
  height: 20px;
}

.hero-bottom-stats .stat-val {
  color: var(--text-primary);
  font-size: 10px;
}

.hero-bottom-stats .stat-lbl {
  color: #66717a;
  font-size: 8px;
}

.hero-bottom-stats .stat-divider {
  height: 48px;
  background: #e4e5e5;
  margin: 0 18px;
}

.about-section,
.category-section,
.process-section,
.featured-section,
.sustainability-section-new,
.testimonials-section {
  padding: 34px 0;
}

.about-section {
  background: #fff;
}

.about-container {
  max-width: 1180px;
  gap: 34px;
}

.about-left {
  width: 50%;
}

.about-tag,
.category-tag,
.process-tag,
.featured-tag {
  margin-bottom: 7px;
}

.about-tag .text,
.category-tag .text,
.process-tag .text,
.featured-tag .text {
  color: var(--primary);
  font-size: 9px;
  letter-spacing: .12em;
}

.about-tag .line,
.category-tag .line,
.process-tag .line,
.featured-tag .line {
  background: var(--primary);
}

.about-title,
.category-main-title,
.process-title,
.featured-main-title,
.sus-title {
  font-size: 23px !important;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.text-blue,
.highlight-underline,
.featured-main-title .text-blue {
  color: var(--text-primary);
}

.about-desc,
.category-desc,
.process-desc,
.featured-desc,
.sus-desc {
  color: #53606a;
  font-size: 10px;
  line-height: 1.45;
}

.about-btn,
.cat-view-all-btn,
.btn-cta-blue {
  background: var(--primary);
  border-radius: 4px;
  font-size: 10px;
  padding: 9px 14px;
}

.about-right {
  width: 50%;
  height: 355px;
}

.about-main-img-wrap {
  width: 100%;
  height: 355px;
  min-height: 355px;
  border-radius: 5px;
}

.about-main-img-wrap img {
  width: 100%;
  height: 355px;
  object-fit: cover;
}

.about-cursive-overlay {
  width: 145px;
  min-height: 265px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  color: var(--text-primary);
  right: 10px;
  bottom: 18px;
  padding: 24px 18px;
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
}

.about-cursive-overlay .cursive-underline {
  width: 30px;
  margin-top: 14px;
}

.about-float-card-dark,
.about-float-card-img,
.about-bottom-right-text,
.about-bottom-left-text {
  display: none;
}

.about-stats-row {
  display: none;
}

.category-section {
  background: #fff;
  padding-top: 28px;
  padding-bottom: 42px;
}

.category-container {
  max-width: 1180px;
}

.category-top-area {
  display: block;
}

.category-top-right {
  display: none;
}

.category-main-title {
  font-size: 28px !important;
  margin-bottom: 4px;
}

.category-desc {
  font-size: 12px;
  margin-bottom: 16px;
}

.category-tag .text {
  font-size: 11px;
  font-weight: 800;
}

.category-cards-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  overflow: visible;
}

.category-carousel-wrapper {
  padding: 0;
}

.cat-nav-btn,
.category-bottom-area {
  display: none;
}

.new-cat-card {
  min-width: 0;
  padding: 0 0 13px;
  background: #fff !important;
  border: 1px solid #e1e3e5;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(18, 31, 43, .08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.new-cat-card::before {
  content: '';
  display: block;
  height: 125px;
  flex: 0 0 125px;
  background-position: center;
  background-size: cover;
  filter: saturate(.72);
}

.new-cat-card:nth-child(1)::before {
  background-image: url('assets/shoe-green.jpg');
}

.new-cat-card:nth-child(2)::before {
  background-image: url('assets/craftsmanship.jpg');
}

.new-cat-card:nth-child(3)::before {
  background-image: url('assets/shoe-casual_navy_1788948945527.jpg');
}

.new-cat-card:nth-child(4)::before {
  background-image: url('assets/hero-shoe.jpg');
}

.cat-card-icon {
  display: none;
}

.cat-card-content {
  padding: 13px 17px 14px !important;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.cat-card-content h4 {
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 9px;
}

.cat-card-content p,
.cat-card-content li {
  font-size: 11px !important;
  line-height: 1.38;
  color: #56616a;
}

.cat-card-content ul {
  list-style: none !important;
  margin: 8px 0 12px !important;
  padding: 0 !important;
}

.cat-card-content li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 5px;
}

.cat-card-content li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.cat-card-content>div {
  background: var(--primary);
  color: #fff !important;
  border-radius: 4px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 10px 13px;
  font-size: 11px;
  margin-top: auto !important;
}

.process-section {
  background: #fff;
  padding-top: 36px;
  padding-bottom: 38px;
}

.process-container {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
  row-gap: 18px;
}

.process-left {
  display: contents;
}

.process-text-area {
  max-width: 560px;
  grid-column: 1;
  grid-row: 1;
  padding-left: 0;
}

.process-stats,
.process-cursive,
.proc-num,
.proc-dot {
  display: none;
}

.process-title {
  font-size: 28px !important;
  margin-bottom: 9px;
}

.process-desc {
  font-size: 12px;
  line-height: 1.45;
}

.process-right {
  display: block;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 195px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.process-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.process-right::after {
  background: linear-gradient(90deg, rgba(5, 18, 29, .84), rgba(5, 18, 29, .15));
}

.proc-right-text-top,
.proc-right-text-bottom {
  position: absolute;
  z-index: 2;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.proc-right-text-top {
  left: 28px;
  top: 28px;
}

.proc-right-text-bottom {
  right: 24px;
  bottom: 24px;
  text-align: left;
  font-size: 20px;
}

.process-timeline {
  display: grid;
  grid-column: 1 / -1;
  grid-row: 2;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 0;
  padding: 0;
}

.proc-step {
  display: flex;
}

.proc-card {
  width: 100%;
  height: 100%;
  min-height: 218px;
  padding: 16px !important;
  background: #faf9f7;
  border: 0;
  border-radius: 6px;
  box-shadow: none;
}

.proc-card::before {
  content: '▣';
  display: block;
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  border-radius: 10px;
  background: #fff;
  color: var(--primary);
  font-size: 25px;
  line-height: 42px;
  text-align: center;
}

.proc-step:nth-child(2) .proc-card::before {
  content: '▱';
}

.proc-step:nth-child(3) .proc-card::before {
  content: '♧';
}

.proc-step:nth-child(4) .proc-card::before {
  content: '♡';
}

.proc-step:nth-child(5) .proc-card::before {
  content: '▢';
}

.proc-card-text h4 {
  font-size: 13px !important;
  line-height: 1.2;
  text-align: center;
  min-height: 32px;
}

.proc-card-text p {
  font-size: 11px;
  line-height: 1.4;
  color: #677079;
}

.featured-section,
.sustainability-section-new {
  background: #fafafa;
}

.featured-bg-watermark,
.category-bg-watermark {
  display: none;
}

.featured-container {
  max-width: 1180px;
}

.featured-top-area {
  display: grid;
  grid-template-columns: .78fr 1.72fr;
  gap: 34px;
  align-items: center;
}

.featured-top-left {
  grid-column: 2;
  grid-row: 1;
  max-width: 700px;
}

.featured-top-right {
  grid-column: 1;
  grid-row: 1;
  height: 230px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  background-image: linear-gradient(90deg, rgba(5, 18, 29, .2), rgba(5, 18, 29, .05)), url('assets/hero_safety_shoe_1788948716586.jpg');
  background-position: center;
  background-size: cover;
}

.featured-image-message {
  position: absolute;
  top: 32px;
  right: 38px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.12;
}

.featured-image-message::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 14px;
  background: #fff;
}

.featured-container>div[style] {
  display: none !important;
}

.featured-section {
  background: #fff;
  padding-top: 34px;
  padding-bottom: 38px;
}

.featured-main-title {
  font-size: 28px !important;
  line-height: 1.08;
}

.featured-desc {
  font-size: 12px;
  line-height: 1.45;
}

.sustainability-section-new {
  background: #fff;
  padding-top: 34px;
  padding-bottom: 38px;
}

.sustainability-container-new {
  max-width: 1180px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.sus-left {
  display: block;
  grid-column: 2;
  grid-row: 1;
  height: 310px;
}

.sus-center {
  grid-column: 1;
  grid-row: 1;
  max-width: 590px;
}

.sus-right,
.sus-bg-shape,
.sus-img-overlay-top,
.sus-img-badge,
.sus-cursive-float {
  display: none;
}

.sus-img-wrapper {
  width: 100%;
  height: 310px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.sus-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.6) saturate(.78);
}

.sus-img-wrapper::after {
  content: 'Different\A Needs\A Better\A Solutions';
  white-space: pre;
  position: absolute;
  inset: 0 auto 0 0;
  width: 45%;
  display: flex;
  align-items: center;
  padding-left: 36px;
  background: linear-gradient(90deg, rgba(5, 18, 29, .9), rgba(5, 18, 29, .2));
  color: #fff;
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.12;
}

.sus-tag .text {
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
}

.sus-title {
  font-size: 28px !important;
  line-height: 1.08;
  margin-bottom: 10px;
}

.sus-title .text-green {
  color: var(--text-primary);
}

.sus-desc {
  font-size: 12px;
  line-height: 1.45;
}

.cta-banner-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(5, 18, 29, .98), rgba(5, 18, 29, .86)), url('assets/hero_safety_shoe_1788948716586.jpg') right center / cover;
  padding: 28px 0;
}

.cta-banner-grid {
  max-width: 1180px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 38px;
  align-items: center;
}

.cta-banner-heading {
  color: #fff;
  font-size: 24px !important;
  line-height: 1.1;
}

.cta-banner-desc {
  max-width: 470px;
  color: #e4e9ec;
  font-size: 11px;
  line-height: 1.45;
}

.btn-cta-blue {
  background: var(--primary);
}

.cta-banner-label {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.cta-right-content {
  position: relative;
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, .55);
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
  align-items: center;
}

.cta-contact-details {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 0;
  min-width: 0;
}

.cta-banner-desc {
  grid-column: 1;
  grid-row: 1;
}

.cta-buttons-row {
  grid-column: 1;
  grid-row: 2;
}

.cta-contact-details div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #fff;
  font-size: 11px;
  line-height: 1.35;
}

.cta-contact-details svg {
  width: 22px;
  height: 22px;
  padding: 4px;
  flex: 0 0 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

@media (max-width: 760px) {

  .cta-banner-grid,
  .cta-right-content {
    display: block;
  }

  .cta-right-content {
    margin-top: 18px;
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .55);
  }

  .cta-contact-details {
    margin-top: 20px;
  }
}

.site-footer {
  padding: 28px 0 14px;
}

.footer-top-grid {
  grid-template-columns: 1.4fr .8fr 1fr 1.4fr;
  gap: 20px;
  margin-bottom: 22px;
}

.footer-brand-col .logo-title {
  color: var(--text-primary);
}

.footer-col-title {
  font-size: 11px;
  margin-bottom: 8px;
}

.footer-link-item,
.contact-detail-row {
  font-size: 9px;
}

.footer-bottom-bar {
  padding-top: 12px;
  font-size: 9px;
}

.audience-locations-section {
  padding: 34px 0 38px;
  background: #fff;
}

.audience-locations-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 34px;
}

.locations-panel {
  min-width: 0;
}

.locations-panel {
  border-left: 1px solid #e6e5e1;
  padding-left: 28px;
}

.section-kicker {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
}

.audience-locations-section h2 {
  margin-bottom: 10px;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 26px;
  line-height: 1.12;
}

.audience-locations-section p {
  color: #59646d;
  font-size: 11px;
  line-height: 1.45;
}

.locations-panel h2 {
  font-size: 24px;
}

.locations-content {
  display: grid;
  grid-template-columns: 165px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 12px;
}

.india-map {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d8d8d6;
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: .08em;
  /* background: url('assets/india-map.svg') no-repeat center center / contain; */
}

.map-label {
  display: none;
}

.map-pin {
  position: absolute;
  width: 18px;
  height: 18px;
  color: var(--primary);
  fill: var(--primary);
  stroke: #fff;
  stroke-width: 2;
}

.pin-one {
  top: 38px;
  left: 80px;
}

.pin-two {
  top: 82px;
  left: 52px;
}

.pin-three {
  top: 106px;
  left: 100px;
}

.pin-four {
  top: 135px;
  left: 73px;
}

.location-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 7px 9px;
}

.location-list span {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 31px;
  padding: 6px 8px;
  border-radius: 7px;
  background: #faf9f7;
  color: #4d5962;
  font-size: 10px;
}

.location-list svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
  flex: 0 0 14px;
}

.locations-note {
  margin: 8px 0 0 184px;
}

@media (max-width: 760px) {
  .audience-locations-grid {
    display: block;
  }

  .locations-panel {
    margin-top: 28px;
    padding: 25px 0 0;
    border-left: 0;
    border-top: 1px solid #e6e5e1;
  }

  .locations-content {
    grid-template-columns: 1fr;
  }

  .india-map {
    width: 180px;
    margin: 0 auto;
  }

  .locations-note {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 58px;
  }

  .nav-menu {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .mobile-toggle {
    display: flex;
    color: var(--text-primary);
  }

  .hero-section {
    height: 430px;
  }

  .hero-slide {
    bottom: 132px;
  }

  .hero-content {
    padding-top: 20px;
  }

  .hero-title-new {
    font-size: 31px !important;
  }

  .hero-desc-new {
    max-width: 88%;
  }

  .hero-bottom-stats {
    position: absolute;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 10px 15px;
  }

  .hero-bottom-stats .stat-icon-box {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .hero-bottom-stats .stat-divider {
    display: none;
  }

  .hero-bottom-stats .stat-item {
    padding: 5px 0;
  }

  .about-container {
    display: block;
  }

  .about-left,
  .about-right {
    width: 100%;
  }

  .about-right {
    height: 270px;
    margin-top: 20px;
  }

  .about-main-img-wrap,
  .about-main-img-wrap img {
    height: 270px;
    min-height: 270px;
  }

  .category-cards-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline {
    grid-template-columns: 1fr 1fr;
  }

  .process-container {
    display: block;
  }

  .process-text-area {
    display: block;
    max-width: none;
  }

  .process-right {
    margin-top: 20px;
    height: 210px;
  }

  .process-timeline {
    margin-top: 20px;
  }

  .sustainability-container-new {
    display: block;
  }

  .sus-center {
    max-width: none;
  }

  .sus-left {
    height: 250px;
    margin-top: 22px;
  }

  .sus-img-wrapper {
    height: 250px;
  }

  .sus-img-wrapper::after {
    font-size: 20px;
  }

  .featured-top-area {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .featured-top-right {
    order: -1;
    height: 220px;
  }

  .featured-top-left {
    max-width: none;
  }

  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 460px) {

  .category-cards-track,
  .process-timeline,
  .footer-top-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    height: 500px;
  }

  .hero-slide {
    bottom: 180px;
  }

  .hero-bottom-stats {
    grid-template-columns: 1fr;
  }
}

/* --- UI FIXES OVERRIDES --- */

/* Fix sticky header */
.site-header {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

/* Fix Hero buttons contrast */
.btn-primary-new {
  background: #0066FF !important;
  color: #FFFFFF !important;
}

.btn-primary-new:hover {
  background: #0052cc !important;
}

.btn-outline-new {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: #FFFFFF !important;
}

/* Remove stray '+' sign in About section */
.about-section::before {
  content: none !important;
  display: none !important;
}

/* Fix About section skewed overlay overlap */
.about-cursive-overlay {
  background: rgba(255, 255, 255, 0.8) !important;
  padding: 10px 15px !important;
  border-radius: 8px !important;
  backdrop-filter: blur(5px) !important;
}

/* Product Categories cards button alignment */
.cat-card-content {
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
}

.cat-card-content>div:last-child {
  margin-top: auto !important;
}

/* Fix floating icons overlapping footer */
.site-footer {
  position: relative;
  z-index: 100;
  background: #FFFFFF;
}

/* Footer link contrast */
.footer-link-item {
  color: #64748B;
  transition: color 0.2s ease;
}

.footer-link-item:hover {
  color: #0066FF;
}

/* Floating contact icons fix so they stay out of footer */
.floating-icons-container {
  z-index: 99 !important;
}

/* Use real product imagery in category cards instead of decorative icons. */
.new-cat-card::before {
  display: none;
}

.cat-card-icon {
  display: block;
  width: 100%;
  height: 165px;
  padding: 0;
  overflow: hidden;
  background: #eef0f1;
}

.cat-card-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.78);
}

@media (max-width: 767px) {
  .cat-card-icon {
    height: 180px;
  }
}

/* About section: restore the layered visual composition from the design reference. */
.about-section {
  position: relative;
  overflow: hidden;
  background-color: #fbfcfe;
  background-image: radial-gradient(#dfe5ed 1px, transparent 1px);
  background-size: 24px 24px;
}

.about-section::before {
  content: '+' !important;
  display: block !important;
  position: absolute;
  top: 24px;
  right: 43%;
  color: #cbd5e1;
  font-size: 23px;
  font-weight: 300;
  z-index: 0;
}

.about-container {
  position: relative;
  z-index: 1;
  grid-template-columns: .92fr 1.08fr;
  gap: 58px;
  align-items: center;
}

.about-left {
  width: auto;
}

.about-tag .line {
  width: 24px;
  height: 2px;
}

.about-tag .text {
  font-size: 12px;
  letter-spacing: .11em;
}

.about-title {
  max-width: 650px;
  font-size: 44px !important;
  line-height: 1.1;
}

.about-title .text-blue {
  color: var(--primary);
}

.about-desc {
  max-width: 630px;
  font-size: 16px;
  line-height: 1.55;
}

.about-btn {
  font-size: 14px;
  padding: 14px 22px;
  border-radius: 28px;
}

.about-stats-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 26px 0 0;
}

.about-stat-item {
  gap: 10px;
}

.stat-icon-wrap {
  width: 38px;
  height: 38px;
  color: var(--primary);
  background: #f1f6ff;
}

.stat-num {
  font-size: 20px;
}

.stat-lbl {
  font-size: 11px;
}

.about-stats-row .stat-divider {
  height: 34px;
  background: #dce3eb;
}

.about-bottom-left-text {
  display: block;
  margin-top: 32px;
  font-size: 11px;
  color: #94a3b8;
}

.about-right {
  position: relative;
  width: auto;
  height: 440px;
}

.about-main-img-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 60px);
  height: 410px;
  min-height: 410px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(15, 23, 42, .12);
}

.about-main-img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}

.about-cursive-overlay {
  width: auto;
  min-height: 0;
  right: 34px;
  top: 26px;
  bottom: auto;
  padding: 0;
  background: transparent !important;
  backdrop-filter: none !important;
  color: #fff;
  font-family: 'Dancing Script', cursive;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.1;
  text-align: right;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}

.about-cursive-overlay .cursive-underline {
  width: 52px;
  margin: 8px 0 0 auto;
}

.about-float-card-dark {
  display: block;
  position: absolute;
  top: 32px;
  left: 0;
  z-index: 3;
  width: 180px;
  min-height: 158px;
  padding: 22px;
  border: 3px solid #fff;
  border-radius: 16px;
  background: #0b1634;
  color: #fff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, .18);
}

.about-float-card-dark .card-icon {
  color: #3b82f6;
  margin-bottom: 16px;
}

.about-float-card-dark .card-title {
  font-size: 16px;
  line-height: 1.15;
  font-weight: 800;
}

.about-float-card-dark .card-sub {
  margin-top: 12px;
  color: #94a3b8;
  font-size: 9px;
  letter-spacing: .08em;
}

.about-float-card-img {
  display: block;
  position: absolute;
  left: -20px;
  bottom: 0;
  z-index: 4;
  width: 225px;
  height: 240px;
  overflow: hidden;
  border: 3px solid #fff;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, .16);
}

.about-float-card-img img {
  width: 100%;
  height: 175px;
  object-fit: contain;
  background: #fff;
}

.about-float-card-img .card-bottom-text {
  height: 65px;
  padding: 14px;
  background: #16243c;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.3;
}

.about-bottom-right-text {
  display: flex;
  position: absolute;
  right: 0;
  bottom: 0;
  align-items: center;
  gap: 12px;
  color: #94a3b8;
  font-size: 10px;
  letter-spacing: .06em;
}

.about-bottom-right-text .line {
  display: block;
  width: 38px;
  height: 1px;
  background: #94a3b8;
}

@media (max-width: 1199px) and (min-width: 768px) {
  .about-title {
    font-size: 36px !important;
  }

  .about-desc {
    font-size: 14px;
  }

  .about-right {
    height: 380px;
  }

  .about-main-img-wrap {
    height: 350px;
    min-height: 350px;
  }

  .about-main-img-wrap img {
    min-height: 350px;
  }

  .about-float-card-dark {
    width: 150px;
  }

  .about-float-card-img {
    width: 190px;
    height: 210px;
  }

  .about-float-card-img img {
    height: 150px;
  }
}

@media (max-width: 767px) {
  .about-container {
    display: block;
  }

  .about-left {
    width: 100%;
  }

  .about-title {
    font-size: 30px !important;
  }

  .about-desc {
    font-size: 14px;
  }

  .about-stats-row {
    flex-wrap: wrap;
    gap: 12px;
  }

  .about-stats-row .stat-divider {
    display: none;
  }

  .about-right {
    width: 100%;
    height: 390px;
    margin-top: 30px;
  }

  .about-main-img-wrap {
    width: calc(100% - 35px);
    height: 330px;
    min-height: 330px;
  }

  .about-main-img-wrap img {
    min-height: 330px;
  }

  .about-cursive-overlay {
    right: 20px;
    font-size: 19px;
  }

  .about-float-card-dark {
    top: 18px;
    width: 145px;
    min-height: 130px;
    padding: 16px;
  }

  .about-float-card-dark .card-title {
    font-size: 13px;
  }

  .about-float-card-img {
    left: 0;
    width: 180px;
    height: 190px;
  }

  .about-float-card-img img {
    height: 135px;
  }

  .about-float-card-img .card-bottom-text {
    height: 55px;
    padding: 10px;
  }

  .about-bottom-right-text {
    display: none;
  }
}

/* Why Choose: centered reference panel with footwear imagery on both sides. */
.process-section {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  padding: 76px 0 82px;
  background: #fff;
}

.process-section::before,
.process-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 18%;
  z-index: 0;
  background-position: center;
  background-size: cover;
  filter: grayscale(1) saturate(.45) brightness(.86);
}

.process-section::before {
  left: 0;
  background-image: linear-gradient(90deg, rgba(8, 28, 52, .18), rgba(8, 28, 52, .4)), url('assets/craftsmanship.jpg');
  clip-path: polygon(0 0, 100% 0, 73% 100%, 0 100%);
}

.process-section::after {
  right: 0;
  background-image: linear-gradient(90deg, rgba(8, 28, 52, .28), rgba(8, 28, 52, .08)), url('assets/hero_safety_shoe_1788948716586.jpg');
  clip-path: polygon(27% 0, 100% 0, 100% 100%, 0 100%);
}

.process-container {
  position: relative;
  z-index: 1;
  display: block;
  width: min(calc(100% - 180px), 1320px);
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 54px;
  background: rgba(255, 255, 255, .97);
  clip-path: polygon(5% 0, 95% 0, 100% 100%, 0 100%);
}

.process-left {
  display: contents;
}

.process-text-area {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 0 36px;
  text-align: center;
}

.process-tag {
  justify-content: center;
  gap: 16px;
}

.process-tag::before,
.process-tag::after {
  content: '';
  width: 62px;
  height: 1px;
  background: #cbd5e1;
}

.process-tag .line {
  display: none;
}

.process-tag .text {
  color: #223d61;
  font-size: 13px;
  letter-spacing: .18em;
}

.process-title {
  font-size: 45px !important;
  line-height: 1.1;
}

.process-title .text-blue {
  color: var(--primary);
}

.process-desc {
  max-width: 760px;
  margin: 0 auto;
  color: #53657b;
  font-size: 17px;
  line-height: 1.5;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 0;
}

.proc-step {
  min-width: 0;
  display: flex;
  border-right: 1px solid #d9e1eb;
}

.proc-step:last-child {
  border-right: 0;
}

.proc-card {
  min-height: 300px;
  padding: 14px 28px 20px !important;
  background: transparent;
  border-radius: 0;
}

.proc-card::before {
  display: none;
}

.proc-card-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.proc-feature-icon {
  width: 76px;
  height: 76px;
  padding: 18px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: #15375d;
  background: #f0f5fb;
  stroke-width: 1.7;
}

.proc-card-text h4 {
  min-height: 52px;
  max-width: 210px;
  margin-bottom: 15px;
  color: #102b4e;
  font-size: 20px !important;
  line-height: 1.18;
}

.proc-card-text h4::after {
  content: '';
  display: block;
  width: 42px;
  height: 2px;
  margin: 15px auto 0;
  background: var(--primary);
}

.proc-card-text p {
  color: #5e718a;
  font-size: 16px;
  line-height: 1.45;
}

.process-right {
  display: none;
}

@media (max-width: 1199px) and (min-width: 768px) {
  .process-section {
    padding: 58px 0 64px;
  }

  .process-container {
    width: calc(100% - 64px);
    padding: 0 34px;
  }

  .process-title {
    font-size: 38px !important;
  }

  .process-desc {
    font-size: 15px;
  }

  .proc-card {
    padding: 14px 15px 20px !important;
  }

  .proc-feature-icon {
    width: 62px;
    height: 62px;
    padding: 14px;
  }

  .proc-card-text h4 {
    font-size: 16px !important;
  }

  .proc-card-text p {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .process-section {
    min-height: 0;
    padding: 52px 0;
  }

  .process-section::before,
  .process-section::after {
    display: none;
  }

  .process-container {
    width: calc(100% - 32px);
    padding: 0 18px;
    clip-path: none;
  }

  .process-title {
    font-size: 30px !important;
  }

  .process-desc {
    font-size: 14px;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .proc-step {
    border-right: 0;
    border-bottom: 1px solid #d9e1eb;
  }

  .proc-step:last-child {
    border-bottom: 0;
  }

  .proc-card {
    min-height: 0;
    padding: 24px 10px !important;
  }

  .proc-feature-icon {
    width: 62px;
    height: 62px;
    padding: 14px;
  }

  .proc-card-text h4 {
    font-size: 18px !important;
  }

  .proc-card-text p {
    font-size: 14px;
  }
}

/* Latest Why Choose composition: copy, vertical timeline, and full-height image. */
.process-section {
  min-height: 800px;
  height: auto;
  padding: 0;
  background: #f8fafc;
}

.process-section::before,
.process-section::after {
  display: none;
}

.process-container {
  display: grid;
  grid-template-columns: 34% 32% 34%;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  padding: 0 0 0 10.5%;
  background: transparent;
  clip-path: none;
}

.process-left {
  display: contents;
}

.process-text-area {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  max-width: 420px;
  margin: 0;
  padding: 80px 40px 80px 0;
  text-align: left;
}

.process-tag {
  justify-content: flex-start;
  gap: 10px;
}

.process-tag::before {
  display: none;
}

.process-tag::after {
  display: block;
  width: 30px;
  background: var(--primary);
}

.process-tag .text {
  font-size: 11px;
  letter-spacing: .13em;
  color: var(--primary);
}

.process-title {
  font-size: 38px !important;
  line-height: 1.08;
}

.process-desc {
  margin: 0;
  max-width: 420px;
  font-size: 14px;
  line-height: 1.45;
}

.process-stats {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #d7e0eb;
}

.p-stat {
  display: flex;
  flex-direction: column;
}

.p-val {
  color: #102b4e;
  font-size: 20px;
  font-weight: 800;
}

.p-lbl {
  color: #71839a;
  font-size: 10px;
  line-height: 1.25;
}

.p-stat-div {
  width: 1px;
  height: 34px;
  background: #d7e0eb;
}

.process-cursive {
  display: block;
  margin-top: 36px;
  color: #94a3b8;
  font-family: 'Dancing Script', cursive;
  font-size: 21px;
  line-height: 1.05;
}

.cursive-underline-proc {
  width: 120px;
  height: 18px;
}

.process-timeline {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  width: auto;
  margin: 0;
  padding: 80px 38px 80px 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 48px;
  bottom: 48px;
  width: 1px;
  background: #d8e1ec;
}

.proc-step {
  position: relative;
  display: grid;
  grid-template-columns: 34px 12px 1fr;
  align-items: center;
  min-height: 132px;
  border: 0;
}

.proc-num {
  display: block;
  grid-column: 1;
  color: #cbd5e1;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}

.proc-dot {
  display: block;
  grid-column: 2;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  z-index: 1;
}

.proc-card {
  grid-column: 3;
  min-height: 0;
  height: auto;
  padding: 0 0 0 18px !important;
  background: transparent;
  text-align: left;
}

.proc-card-text {
  display: block;
}

.proc-feature-icon,
.proc-card::before,
.proc-card-text h4::after {
  display: none;
}

.proc-card-text h4 {
  min-height: 0;
  max-width: none;
  margin-bottom: 5px;
  color: #102b4e;
  font-size: 16px !important;
  text-align: left;
}

.proc-card-text p {
  max-width: 220px;
  color: #64758a;
  font-size: 11px;
  line-height: 1.32;
}

.process-right {
  display: block;
  grid-column: 3;
  grid-row: 1;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.process-bg-img {
  background-image: url('assets/craftsmanship.jpg') !important;
  background-position: center;
}

.process-right::after {
  background: linear-gradient(90deg, rgba(7, 25, 44, .05), rgba(7, 25, 44, .28));
}

.proc-right-text-top {
  top: 34px;
  right: 34px;
  left: auto;
  font-size: 11px;
  letter-spacing: .13em;
  text-align: left;
}

.proc-right-text-bottom {
  right: 28px;
  bottom: 28px;
  padding: 25px 28px;
  background: #0b1634;
  font-size: 12px;
  letter-spacing: .15em;
  text-align: center;
}

@media (max-width: 1199px) and (min-width: 768px) {
  .process-section {
    height: 700px;
    min-height: 700px;
  }

  .process-container {
    grid-template-columns: 35% 33% 32%;
    padding-left: 6%;
  }

  .process-title {
    font-size: 31px !important;
  }

  .process-desc {
    font-size: 12px;
  }

  .proc-step {
    min-height: 115px;
  }

  .proc-card-text h4 {
    font-size: 14px !important;
  }

  .proc-card-text p {
    font-size: 10px;
  }
}

@media (max-width: 767px) {
  .process-section {
    height: auto;
    min-height: 0;
    padding: 52px 0;
  }

  .process-container {
    display: block;
    width: calc(100% - 32px);
    height: auto;
    padding: 0 16px;
  }

  .process-text-area {
    max-width: none;
    padding: 0;
    text-align: left;
  }

  .process-title {
    font-size: 30px !important;
  }

  .process-desc {
    font-size: 14px;
  }

  .process-timeline {
    margin-top: 34px;
    padding: 0;
  }

  .proc-step {
    grid-template-columns: 30px 12px 1fr;
    min-height: 125px;
  }

  .proc-card-text h4 {
    font-size: 16px !important;
  }

  .proc-card-text p {
    font-size: 13px;
  }

  .process-right {
    height: 330px;
    margin-top: 30px;
    clip-path: none;
  }
}

/* Final cascade guard for the latest three-column Why Choose layout. */
@media (min-width: 1200px) {
  .process-section {
    height: 760px !important;
    min-height: 760px !important;
    padding: 0 !important;
  }

  .process-container {
    display: grid !important;
    grid-template-columns: 34% 32% 34% !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    padding: 0 0 0 10.5% !important;
  }

  .process-text-area {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .process-timeline {
    display: flex !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    grid-template-columns: none !important;
    height: 100% !important;
    gap: 0 !important;
  }

  .proc-step {
    min-height: 0 !important;
    flex: 1 1 0 !important;
  }

  .proc-card {
    height: auto !important;
    min-height: 0 !important;
    padding: 0 0 0 18px !important;
  }

  .proc-card-text h4 {
    margin-bottom: 5px !important;
    font-size: 16px !important;
    line-height: 1.15 !important;
  }

  .proc-card-text p {
    max-width: 235px !important;
    font-size: 11px !important;
    line-height: 1.32 !important;
  }

  .process-right {
    display: block !important;
    grid-column: 3 !important;
    grid-row: 1 !important;
    height: 100% !important;
  }
}

@media (max-width: 1199px) and (min-width: 768px) {
  .process-section {
    height: 700px !important;
    min-height: 700px !important;
    padding: 0 !important;
  }

  .process-container {
    display: grid !important;
    grid-template-columns: 35% 33% 32% !important;
    height: 100% !important;
  }

  .process-timeline {
    display: flex !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    grid-template-columns: none !important;
    height: 100% !important;
    gap: 0 !important;
  }

  .proc-step {
    min-height: 0 !important;
    flex: 1 1 0 !important;
  }

  .proc-card {
    height: auto !important;
    min-height: 0 !important;
  }

  .proc-card-text h4 {
    font-size: 14px !important;
  }

  .proc-card-text p {
    font-size: 10px !important;
    line-height: 1.3 !important;
  }

  .process-right {
    display: block !important;
    height: 100% !important;
  }
}

/* ========================================================================== 
   DESKTOP SCALE CORRECTION
   The previous reference override constrained the whole page to 1180px and
   reduced core text to 8-12px. Keep the existing visual system, but restore
   a readable desktop scale and responsive container hierarchy.
   ========================================================================== */
:root {
  --container-max: 1320px;
  --container-pad: 24px;
}

body {
  font-size: 16px;
}

.container,
.navbar-container,
.hero-container,
.category-container,
.featured-container,
.cta-banner-grid {
  width: min(calc(100% - 48px), var(--container-max));
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.site-header {
  height: 82px;
}

.navbar-container {
  gap: 28px;
}

.logo-title {
  font-size: 27px;
}

.logo-tagline {
  font-size: 11px;
}

.logo-text-group small {
  font-size: 6px;
}

.nav-menu {
  gap: 34px;
}

.nav-link {
  font-size: 14px;
}

.header-actions {
  gap: 18px;
}

.btn-primary-header {
  padding: 12px 18px;
  font-size: 14px;
}

.hero-section {
  height: calc(100vh - 82px);
  min-height: 560px;
  max-height: none;
}

.hero-slide,
.hero-slide.active {
  bottom: 90px;
  transform: none;
}

.hero-content {
  max-width: 720px;
  margin-top: -20px;
}

.hero-title-new {
  font-size: clamp(48px, 4.4vw, 68px) !important;
  line-height: 1.06 !important;
  margin-bottom: 18px;
}

.hero-desc-new {
  max-width: 660px;
  font-size: 16px !important;
  line-height: 1.55;
  margin-bottom: 26px;
}

.hero-actions-new {
  gap: 16px;
}

.btn-primary-new,
.btn-outline-new {
  padding: 14px 22px;
  font-size: 14px;
}

.hero-bottom-stats {
  padding: 18px 0;
}

.hero-bottom-stats .stat-val {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
}

.hero-bottom-stats .stat-lbl {
  font-size: 12px;
  line-height: 1.25;
}

.hero-bottom-stats .stat-icon-box {
  width: 52px;
  height: 52px;
  flex-basis: 52px;
}

.hero-bottom-stats .stat-icon {
  width: 25px;
  height: 25px;
}

.hero-bottom-stats .stat-divider {
  height: 58px;
  margin: 0 26px;
}

@media (min-width: 768px) {
  .hero-bottom-stats {
    padding: 18px max(32px, calc((100% - 1320px) / 2)) !important;
  }

  .hero-bottom-stats .stat-item {
    gap: 14px;
  }

  .hero-bottom-stats .stat-val {
    font-size: 18px;
  }

  .hero-bottom-stats .stat-lbl {
    font-size: 13px;
  }

  .hero-bottom-stats .stat-icon-box {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }

  .hero-bottom-stats .stat-icon {
    width: 27px;
    height: 27px;
  }
}

.about-section,
.category-section,
.process-section,
.featured-section,
.sustainability-section-new,
.audience-locations-section,
.testimonials-section {
  padding-top: 84px;
  padding-bottom: 84px;
}

.about-container {
  grid-template-columns: 1fr 1.08fr;
  gap: 56px;
}

.about-left {
  width: auto;
}

.about-right {
  width: auto;
  height: 420px;
}

.about-main-img-wrap,
.about-main-img-wrap img {
  height: 420px;
  min-height: 420px;
}

.about-title,
.category-main-title,
.process-title,
.featured-main-title,
.sus-title {
  font-size: 38px !important;
  line-height: 1.12;
}

.about-desc,
.category-desc,
.process-desc,
.featured-desc,
.sus-desc {
  font-size: 16px;
  line-height: 1.6;
}

.about-btn {
  padding: 13px 22px;
  font-size: 14px;
}

.category-main-title {
  font-size: 38px !important;
}

.category-desc {
  font-size: 16px;
}

.category-cards-track {
  gap: 20px;
}

.new-cat-card::before {
  height: 165px;
  flex-basis: 165px;
}

.cat-card-content {
  padding: 20px 22px 22px !important;
}

.cat-card-content h4 {
  font-size: 21px;
  margin-bottom: 12px;
}

.cat-card-content p,
.cat-card-content li {
  font-size: 14px !important;
  line-height: 1.5;
}

.cat-card-content li {
  padding-left: 28px;
  margin-bottom: 7px;
}

.cat-card-content li::before {
  width: 19px;
  height: 19px;
  font-size: 12px;
}

.cat-card-content>div {
  padding: 12px 16px;
  font-size: 14px;
}

.process-container {
  column-gap: 48px;
  row-gap: 28px;
}

.process-title {
  font-size: 38px !important;
}

.process-desc {
  font-size: 16px;
}

.process-right {
  height: 250px;
}

.proc-card {
  min-height: 260px;
  padding: 22px !important;
}

.proc-card-text h4 {
  font-size: 17px !important;
}

.proc-card-text p {
  font-size: 14px;
  line-height: 1.5;
}

.proc-card::before {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 29px;
}

.featured-top-area {
  gap: 48px;
}

.featured-top-right {
  height: 300px;
}

.featured-image-message {
  font-size: 27px;
}

.featured-main-title {
  font-size: 38px !important;
}

.featured-desc {
  font-size: 16px;
}

.sustainability-container-new {
  gap: 56px;
}

.sus-left,
.sus-img-wrapper {
  height: 390px;
}

.sus-title {
  font-size: 38px !important;
}

.sus-desc {
  font-size: 16px;
}

.sus-img-wrapper::after {
  font-size: 28px;
}

.audience-locations-grid {
  gap: 56px;
}

.audience-locations-section h2 {
  font-size: 34px;
}

.audience-locations-section p {
  font-size: 15px;
}

.locations-content {
  grid-template-columns: 205px 1fr;
}

.location-list span {
  min-height: 38px;
  font-size: 13px;
  padding: 8px 10px;
}

.india-map {
  height: 220px;
}

.locations-note {
  margin-left: 223px;
}

.testimonials-section .section-title {
  font-size: 36px;
}

.testimonial-card {
  padding: 30px;
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.55;
}

.author-name {
  font-size: 15px;
}

.author-role {
  font-size: 13px;
}

.cta-banner-section {
  padding: 54px 0;
}

.cta-banner-heading {
  font-size: 34px !important;
}

.cta-banner-desc {
  font-size: 15px;
}

.btn-cta-blue {
  padding: 14px 20px;
  font-size: 14px;
}

.cta-contact-details div {
  font-size: 14px;
}

.cta-contact-details svg {
  width: 30px;
  height: 30px;
  flex-basis: 30px;
}

.site-footer {
  padding: 58px 0 24px;
}

.footer-top-grid {
  gap: 44px;
}

.footer-col-title {
  font-size: 16px;
}

.footer-link-item,
.contact-detail-row {
  font-size: 14px;
}

.footer-bottom-bar {
  font-size: 13px;
}

@media (min-width: 768px) and (max-width: 1199px) {

  .container,
  .navbar-container,
  .hero-container,
  .category-container,
  .featured-container,
  .cta-banner-grid {
    width: calc(100% - 40px);
  }

  .site-header {
    height: 74px;
  }

  .nav-menu {
    gap: 18px;
  }

  .nav-link {
    font-size: 12px;
  }

  .hero-section {
    height: 500px;
    min-height: 500px;
  }

  .hero-slide,
  .hero-slide.active {
    bottom: 76px;
    transform: none;
  }

  .hero-title-new {
    font-size: clamp(38px, 5vw, 54px) !important;
  }

  .hero-desc-new {
    font-size: 14px !important;
  }

  .about-section,
  .category-section,
  .process-section,
  .featured-section,
  .sustainability-section-new,
  .audience-locations-section,
  .testimonials-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .about-title,
  .category-main-title,
  .process-title,
  .featured-main-title,
  .sus-title {
    font-size: 32px !important;
  }

  .about-desc,
  .category-desc,
  .process-desc,
  .featured-desc,
  .sus-desc {
    font-size: 14px;
  }

  .category-cards-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .footer-top-grid>* {
    min-width: 0;
  }

  .locations-content {
    grid-template-columns: 1fr;
  }

  .india-map {
    width: 205px;
    margin: 0 auto;
  }

  .locations-note {
    margin-left: 0;
  }
}

@media (max-width: 767px) {

  .container,
  .navbar-container,
  .hero-container,
  .category-container,
  .featured-container,
  .cta-banner-grid {
    width: calc(100% - 32px);
  }

  .site-header {
    height: 64px;
  }

  .logo-title {
    font-size: 22px;
  }

  .logo-tagline {
    font-size: 9px;
  }

  .hero-section {
    height: 570px;
    min-height: 0;
  }

  .hero-slide,
  .hero-slide.active {
    bottom: 178px;
    transform: none;
  }

  .hero-title-new {
    font-size: 34px !important;
  }

  .hero-desc-new {
    font-size: 14px !important;
    line-height: 1.45;
  }

  .hero-bottom-stats {
    padding: 10px 16px;
  }

  .hero-bottom-stats .stat-val {
    font-size: 12px;
  }

  .hero-bottom-stats .stat-lbl {
    font-size: 10px;
  }

  .about-section,
  .category-section,
  .process-section,
  .featured-section,
  .sustainability-section-new,
  .audience-locations-section,
  .testimonials-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .about-title,
  .category-main-title,
  .process-title,
  .featured-main-title,
  .sus-title {
    font-size: 29px !important;
  }

  .about-desc,
  .category-desc,
  .process-desc,
  .featured-desc,
  .sus-desc {
    font-size: 14px;
  }

  .category-cards-track,
  .process-timeline {
    grid-template-columns: 1fr;
  }

  .new-cat-card::before {
    height: 180px;
    flex-basis: 180px;
  }

  .proc-card {
    min-height: 0;
  }

  .location-list {
    width: 100%;
  }

  .locations-content {
    grid-template-columns: 1fr;
  }

  .india-map {
    width: 180px;
    margin: 0 auto;
  }

  .locations-note {
    margin-left: 0;
  }

  .cta-banner-heading {
    font-size: 28px !important;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Final About mobile cascade: keep the layered visual compact after desktop scale rules. */
@media (max-width: 767px) {
  .about-container {
    display: block;
  }

  .about-right {
    width: 100%;
    height: 390px;
    margin-top: 30px;
  }

  .about-main-img-wrap {
    width: calc(100% - 35px);
    height: 330px;
    min-height: 330px;
  }

  .about-main-img-wrap img {
    height: 330px;
    min-height: 330px;
  }

  .about-float-card-dark {
    top: 18px;
    left: 0;
    width: 145px;
    min-height: 130px;
    padding: 16px;
  }

  .about-float-card-dark .card-title {
    font-size: 13px;
  }

  .about-float-card-img {
    left: 0;
    bottom: 0;
    width: 180px;
    height: 190px;
  }

  .about-float-card-img img {
    height: 135px;
  }

  .about-float-card-img .card-bottom-text {
    height: 55px;
    padding: 10px;
  }

  .about-cursive-overlay {
    right: 20px;
    top: 22px;
    font-size: 19px;
  }

  .about-bottom-right-text {
    display: none;
  }
}

/* Must remain last: neutralize legacy card padding/margins in the vertical timeline. */
@media (min-width: 1200px) {
  .process-section {
    height: 760px !important;
    min-height: 760px !important;
  }

  .process-container {
    display: grid !important;
    grid-template-columns: 34% 32% 34% !important;
    height: 100% !important;
    padding: 0 6.5% 0 10.5% !important;
  }

  .process-text-area {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .process-timeline {
    display: flex !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    height: 100% !important;
    gap: 0 !important;
  }

  .proc-step {
    min-height: 0 !important;
    flex: 1 1 0 !important;
  }

  .proc-card {
    display: block !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 10px 16px 10px 18px !important;
    border-radius: 10px;
    background: rgba(255, 255, 255, .58);
  }

  .proc-card-text h4 {
    margin: 0 0 5px !important;
    font-size: 16px !important;
    line-height: 1.15 !important;
  }

  .proc-card-text p {
    max-width: 235px !important;
    margin: 0 !important;
    font-size: 11px !important;
    line-height: 1.32 !important;
  }

  .proc-dot {
    width: 8px !important;
    height: 8px !important;
    box-shadow: 0 0 0 4px rgba(155, 99, 58, .1);
  }

  .process-right {
    display: block !important;
    grid-column: 3 !important;
    grid-row: 1 !important;
    height: 100% !important;
  }
}

@media (max-width: 1199px) and (min-width: 768px) {
  .proc-card {
    display: block !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 0 0 0 12px !important;
  }

  .proc-card-text h4 {
    margin: 0 0 4px !important;
    font-size: 14px !important;
  }

  .proc-card-text p {
    margin: 0 !important;
    font-size: 10px !important;
    line-height: 1.3 !important;
  }
}

/* Premium UI treatment for the Why Choose section. */
.process-section {
  background: #edf1f4 !important;
  padding: 28px 0 !important;
}

.process-container {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 35, 58, .11);
}

.process-text-area {
  padding-left: 24px;
}

.process-tag .text {
  color: #9b633a !important;
}

.process-tag::after {
  background: #9b633a !important;
}

.process-title .text-blue {
  color: #9b633a !important;
}

.process-desc {
  color: #536579;
}

.process-stats {
  border-top-color: #e5e8ec;
}

.p-val {
  color: #102b4e;
}

.process-timeline {
  padding-top: 32px;
  padding-bottom: 32px;
}

.process-timeline::before {
  background: #d4dce5;
}

.proc-num {
  color: #b7c0cb;
}

.proc-dot {
  background: #9b633a !important;
  box-shadow: 0 0 0 4px rgba(155, 99, 58, .12) !important;
}

.proc-card {
  border: 1px solid rgba(220, 226, 232, .8);
  background: rgba(255, 255, 255, .86) !important;
  box-shadow: 0 5px 14px rgba(15, 35, 58, .045);
}

.proc-card-text h4 {
  color: #102b4e;
}

.proc-card-text p {
  color: #64758a;
}

.process-right {
  border-radius: 0 22px 22px 0;
  clip-path: none;
}

.process-bg-img {
  filter: saturate(.82) contrast(1.02);
}

.proc-right-text-bottom {
  border-radius: 14px 0 0 0;
  background: rgba(11, 22, 52, .94);
}

@media (max-width: 767px) {
  .process-section {
    padding: 18px 0 !important;
  }

  .process-container {
    border-radius: 16px;
  }

  .process-text-area {
    padding-left: 0;
  }

  .process-right {
    border-radius: 0 0 16px 16px;
  }
}

/* Product Range: modern premium card system. */
.category-section {
  background: #f5f7fa !important;
  padding: 88px 0 96px !important;
}

.category-container {
  max-width: 1320px;
}

.category-top-area {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.category-top-left {
  max-width: 760px;
}

.category-tag .text {
  color: #9b633a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}

.category-tag .line {
  background: #9b633a;
}

.category-main-title {
  font-size: 42px !important;
  line-height: 1.08;
  margin-bottom: 12px;
}

.category-main-title .highlight-underline {
  color: #9b633a;
}

.category-desc {
  max-width: 680px;
  color: #617083;
  font-size: 16px;
  line-height: 1.55;
}

.category-top-right {
  display: grid !important;
  grid-template-columns: repeat(4, auto);
  gap: 12px;
  align-items: stretch;
}

.category-feature {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 112px;
  padding: 10px 12px;
  border: 1px solid #e1e7ee;
  border-radius: 12px;
  background: rgba(255, 255, 255, .8);
  color: #38516e;
}

.category-feature .feat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #f4eadf;
  color: #9b633a;
}

.category-feature .feat-text {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.category-carousel-wrapper {
  padding: 0;
}

.category-cards-track {
  gap: 20px;
}

.new-cat-card {
  border: 1px solid #e0e6ed;
  border-radius: 16px;
  background: #fff !important;
  box-shadow: 0 10px 25px rgba(25, 45, 70, .07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.new-cat-card:hover {
  transform: translateY(-7px);
  border-color: #cfa986;
  box-shadow: 0 18px 34px rgba(25, 45, 70, .13);
}

.cat-card-icon {
  height: 190px;
  border-radius: 15px 15px 0 0;
  background: #e9edf1;
}

.cat-card-icon img {
  transition: transform .35s ease, filter .35s ease;
}

.new-cat-card:hover .cat-card-icon img {
  transform: scale(1.05);
  filter: saturate(.95);
}

.cat-card-content {
  padding: 22px 22px 24px !important;
}

.cat-card-content h4 {
  font-size: 21px;
  color: #102b4e;
  margin-bottom: 11px;
}

.cat-card-content p,
.cat-card-content li {
  color: #617083;
  font-size: 14px !important;
  line-height: 1.5;
}

.cat-card-content ul {
  margin: 13px 0 16px !important;
}

.cat-card-content ul {
  display: none;
}

.new-cat-card.is-expanded .cat-card-content ul {
  display: block;
}

.cat-card-content>p:nth-of-type(2) {
  display: none;
}

.new-cat-card.is-expanded .cat-card-content>p:nth-of-type(2) {
  display: block;
}

.cat-card-content li {
  margin-bottom: 7px;
}

.cat-card-content li::before {
  background: #9b633a;
}

.cat-card-content>div {
  min-height: 44px;
  border-radius: 9px;
  background: #9b633a;
  padding: 12px 16px;
  font-size: 14px;
  transition: background .2s ease;
}

.new-cat-card:hover .cat-card-content>div {
  background: #7f4d2c;
}

@media (max-width: 1199px) and (min-width: 768px) {
  .category-section {
    padding: 64px 0 72px !important;
  }

  .category-top-area {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .category-top-right {
    justify-content: flex-start;
  }

  .category-main-title {
    font-size: 36px !important;
  }
}

@media (max-width: 767px) {
  .category-section {
    padding: 52px 0 64px !important;
  }

  .category-top-area {
    display: block !important;
  }

  .category-top-right {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 22px;
  }

  .category-feature {
    min-width: 0;
  }

  .category-main-title {
    font-size: 30px !important;
  }

  .category-desc {
    font-size: 14px;
  }

  .cat-card-icon {
    height: 190px;
  }
}

/* Product choice section: match the supplied split visual composition. */
.featured-section {
  position: relative;
  overflow: hidden;
  background: #f8fafc !important;
  background-image: radial-gradient(#dfe6ee 1px, transparent 1px) !important;
  background-size: 26px 26px !important;
  padding: 88px 0 96px !important;
}

.featured-container {
  max-width: 1320px;
}

.featured-top-area {
  display: grid !important;
  grid-template-columns: 44% 56%;
  gap: 56px;
  align-items: center;
  margin: 0;
}

.featured-top-right {
  grid-column: 1;
  grid-row: 1;
  height: 500px;
  overflow: visible;
  border-radius: 18px;
  background-image: linear-gradient(115deg, rgba(3, 13, 25, .72), rgba(3, 13, 25, .12)), url('assets/hero_safety_shoe_1788948716586.jpg');
  background-position: center;
  background-size: cover;
  box-shadow: 0 20px 38px rgba(15, 35, 58, .18);
}

.featured-top-right::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: -16px -22px 22px -28px;
  border-radius: 20px;
  background: #0879ee;
  transform: rotate(-6deg);
}

.featured-top-right::after {
  content: 'QUALITY\A PEOPLE\A BETTER';
  white-space: pre;
  position: absolute;
  left: 46px;
  bottom: 105px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.7;
}

.featured-image-message {
  top: 40px;
  right: auto;
  left: 42px;
  font-size: 32px;
  line-height: 1.08;
  text-transform: none;
}

.featured-image-message::after {
  width: 48px;
  margin-top: 22px;
}

.featured-image-message::before {
  display: none;
}

.featured-top-left {
  grid-column: 2;
  grid-row: 1;
  max-width: 760px;
}

.featured-tag {
  gap: 12px;
}

.featured-tag .line {
  width: 34px;
  background: #9b633a;
}

.featured-tag .text {
  color: #9b633a;
  font-size: 12px;
  letter-spacing: .13em;
}

.featured-main-title {
  font-size: 46px !important;
  line-height: 1.08;
  color: #102b4e;
}

.featured-main-title .text-blue {
  color: #0879ee;
}

.featured-desc {
  color: #617083;
  font-size: 17px;
  line-height: 1.6;
}

@media (max-width: 1199px) and (min-width: 768px) {
  .featured-section {
    padding: 64px 0 72px !important;
  }

  .featured-top-area {
    grid-template-columns: 43% 57%;
    gap: 30px;
  }

  .featured-top-right {
    height: 410px;
  }

  .featured-main-title {
    font-size: 36px !important;
  }

  .featured-desc {
    font-size: 14px;
  }

  .featured-image-message {
    font-size: 25px;
    left: 28px;
  }
}

@media (max-width: 767px) {
  .featured-section {
    padding: 52px 0 64px !important;
  }

  .featured-top-area {
    display: flex !important;
    flex-direction: column;
    gap: 34px;
  }

  .featured-top-right,
  .featured-top-left {
    width: 100%;
  }

  .featured-top-right {
    order: -1;
    height: 330px;
  }

  .featured-main-title {
    font-size: 30px !important;
  }

  .featured-desc {
    font-size: 14px;
  }

  .featured-image-message {
    left: 26px;
    top: 28px;
    font-size: 24px;
  }

  .featured-top-right::before {
    inset: -9px -10px 14px -12px;
  }

  .featured-top-right::after {
    left: 26px;
    bottom: 50px;
    font-size: 9px;
  }

  .featured-image-message::before {
    display: none;
  }
}

/* Supporting Business Requirements: image, copy, and audience cards. */
.sustainability-section-new {
  position: relative;
  overflow: hidden;
  background: #fff !important;
  padding: 78px 0 86px !important;
}

.sustainability-container-new {
  max-width: 1320px;
  display: grid !important;
  grid-template-columns: 31% 29% 40%;
  gap: 30px;
  align-items: center;
}

.sus-left {
  display: block !important;
  grid-column: 1;
  grid-row: 1;
  height: 390px;
  position: relative;
}

.sus-bg-shape {
  display: block !important;
  position: absolute;
  inset: -16px 36px 18px -16px;
  border-radius: 18px;
  background: #dcf5eb;
}

.sus-img-wrapper {
  position: relative;
  z-index: 1;
  width: calc(100% - 18px);
  height: 370px;
  margin: 14px 0 0 14px;
  border-radius: 17px;
  box-shadow: 0 16px 30px rgba(15, 35, 58, .13);
}

.sus-img-wrapper img {
  filter: brightness(.86) saturate(.9);
}

.sus-img-overlay-top {
  display: block !important;
  position: absolute;
  z-index: 2;
  left: 22px;
  top: 22px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .22);
}

.sus-img-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.sus-img-title {
  margin-top: 9px;
  font-size: 24px;
  line-height: 1.05;
}

.sus-img-badge {
  display: flex !important;
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 16px;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 13px;
  background: #117d58;
  color: #fff;
  font-size: 9px;
  line-height: 1.2;
}

.sus-img-badge .badge-icon {
  color: #a7f3d0;
}

.sus-center {
  grid-column: 2;
  grid-row: 1;
  max-width: none;
}

.sus-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.sus-tag .text {
  color: #15966b;
  font-size: 11px;
  letter-spacing: .08em;
}

.sus-tag .line {
  width: 28px;
  height: 1px;
  background: #9bd7bd;
}

.sus-title {
  font-size: 31px !important;
  line-height: 1.08;
}

.sus-title .text-green {
  color: #159f70;
}

.sus-desc {
  color: #617083;
  font-size: 14px;
  line-height: 1.52;
}

.sus-right {
  display: block !important;
  grid-column: 3;
  grid-row: 1;
  padding-left: 10px;
}

.sus-right>h4 {
  font-size: 22px !important;
  margin-bottom: 8px !important;
}

.sus-right>p {
  font-size: 13px !important;
  line-height: 1.45;
}

.sus-cards-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.sus-card-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 57px;
  padding: 10px 15px;
  border: 1px solid #edf0f2;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(15, 35, 58, .06);
}

.sus-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  background: #e9faf2;
  color: #16a36f;
}

.sus-card-content h5 {
  color: #16304f;
  font-size: 13px;
}

.sus-right>p:last-child {
  margin-top: 17px !important;
}

.sus-cursive-float {
  display: block;
  right: 0;
  bottom: 0;
  color: #39a77a;
}

@media (max-width: 1199px) and (min-width: 768px) {
  .sustainability-section-new {
    padding: 62px 0 70px !important;
  }

  .sustainability-container-new {
    grid-template-columns: 31% 29% 40%;
    gap: 18px;
  }

  .sus-left {
    height: 330px;
  }

  .sus-img-wrapper {
    height: 310px;
  }

  .sus-title {
    font-size: 25px !important;
  }

  .sus-desc {
    font-size: 12px;
  }

  .sus-right>h4 {
    font-size: 18px !important;
  }

  .sus-card-content h5 {
    font-size: 11px;
  }
}

@media (max-width: 767px) {
  .sustainability-section-new {
    padding: 52px 0 64px !important;
  }

  .sustainability-container-new {
    display: flex !important;
    flex-direction: column;
    gap: 28px;
  }

  .sus-left,
  .sus-center,
  .sus-right {
    width: 100%;
  }

  .sus-left {
    order: 1;
    height: 300px;
  }

  .sus-center {
    order: 2;
  }

  .sus-right {
    order: 3;
    padding-left: 0;
  }

  .sus-img-wrapper {
    height: 280px;
  }

  .sus-title {
    font-size: 29px !important;
  }

  .sus-desc {
    font-size: 14px;
  }

  .sus-right>h4 {
    font-size: 22px !important;
  }
}

/* Key Markets: wide map-and-logistics composition from the reference. */
.audience-locations-section {
  position: relative;
  overflow: hidden;
  padding: 78px 0 104px !important;
  background: #f4f9ff !important;
  background-image: radial-gradient(#dbe7f3 1px, transparent 1px) !important;
  background-size: 25px 25px !important;
}

.audience-locations-section::after {
  content: '';
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 38%;
  background: linear-gradient(90deg, rgba(244, 249, 255, 0), rgba(22, 56, 91, .15)), url('assets/factory_building_1788948734762.jpg') center / cover;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  opacity: .9;
}

.audience-locations-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 43% 57%;
  gap: 28px;
  width: min(calc(100% - 48px), 1320px);
  max-width: 1320px;
  min-height: 480px;
}

.locations-panel {
  position: relative;
  grid-column: 1 / -1;
  min-height: 480px;
  padding: 0;
  border: 0;
}

.audience-locations-section .section-kicker {
  color: #9b633a;
  font-size: 12px;
  letter-spacing: .14em;
}

.audience-locations-section h2 {
  color: #102b4e;
  font-size: 44px;
  line-height: 1.08;
}

.locations-panel h2 {
  font-size: 37px;
}

.audience-locations-section p {
  color: #5e718a;
  font-size: 17px;
  line-height: 1.5;
}

.locations-panel>h2,
.locations-panel>.section-kicker,
.locations-panel>p {
  width: 48%;
}

.locations-content {
  position: relative;
  display: block;
  min-height: 350px;
  margin-top: 20px;
}

.pin-three {
  top: 115px;
  left: 109px;
}

.pin-four {
  top: 68px;
  left: 130px;
}

.location-list {
  position: absolute;
  top: 30px;
  left: 0;
  width: 44%;
  right: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 12px;
}

.location-list span {
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid rgba(224, 231, 239, .8);
  border-radius: 9px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 6px 14px rgba(21, 52, 83, .04);
  color: #193653;
  font-size: 14px;
}

.location-list svg {
  width: 18px;
  height: 18px;
  color: #b16f39;
}

.locations-note {
  width: 44%;
  margin: 4px 0 0;
  font-size: 14px !important;
}

.locations-bottom-strip {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 17px max(24px, calc((100% - 1320px) / 2));
  background: #102f51;
  color: #fff;
}

.locations-bottom-strip>div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 58px;
  border-right: 1px solid rgba(255, 255, 255, .32);
  font-size: 13px;
  letter-spacing: .12em;
  line-height: 1.4;
}

.locations-bottom-strip>div:last-child {
  border-right: 0;
}

.locations-bottom-strip svg {
  width: 35px;
  height: 35px;
  stroke-width: 1.5;
}

@media (max-width: 1199px) and (min-width: 768px) {
  .audience-locations-section {
    padding: 62px 0 90px !important;
  }

  .audience-locations-grid {
    grid-template-columns: 46% 54%;
  }

  .audience-locations-section h2 {
    font-size: 34px;
  }

  .locations-panel {
    padding-left: 150px;
  }

  .india-map {
    width: 170px;
  }

  .location-list {
    left: 170px;
  }

  .locations-note {
    margin-left: 170px;
  }

  .location-list span {
    font-size: 11px;
  }
}

@media (max-width: 767px) {
  .audience-locations-section {
    padding: 52px 0 120px !important;
  }

  .audience-locations-section::after {
    display: none;
  }

  .audience-locations-grid {
    display: block;
    width: calc(100% - 32px);
    min-height: 0;
  }

  .locations-panel {
    min-height: 620px;
    margin-top: 42px;
    padding: 30px 0 0;
    border-top: 1px solid #d9e3ed;
  }

  .locations-panel>h2,
  .locations-panel>.section-kicker,
  .locations-panel>p {
    width: 100%;
  }

  .audience-locations-section h2,
  .locations-panel h2 {
    font-size: 30px;
  }

  .audience-locations-section p {
    font-size: 14px;
  }

  .locations-content {
    min-height: 450px;
  }

  .india-map {
    left: 50%;
    transform: translateX(-50%);
    width: 190px;
    height: 275px;
    aspect-ratio: 710 / 725;
  }

  .location-list {
    top: 285px;
    left: 0;
    right: 0;
  }

  .location-list span {
    font-size: 11px;
  }

  .locations-note {
    margin: 425px 0 0;
    font-size: 12px !important;
  }

  .locations-bottom-strip {
    position: relative;
    grid-template-columns: 1fr 1fr;
    margin-top: 30px;
    padding: 12px 16px;
  }

  .locations-bottom-strip>div {
    justify-content: flex-start;
    font-size: 9px;
    gap: 8px;
  }

  .locations-bottom-strip>div:nth-child(2) {
    border-right: 0;
  }

  .locations-bottom-strip svg {
    width: 25px;
    height: 25px;
  }
}

/* Final brand palette: blue primary with clean white surfaces. */
:root {
  --primary: #0879ee;
  --primary-hover: #0567d5;
  --primary-light: #edf6ff;
  --primary-glow: rgba(8, 121, 238, .28);
  --bg-page: #ffffff;
  --bg-card: #ffffff;
}

body {
  background: #ffffff;
}

.site-header {
  background: rgba(255, 255, 255, .97) !important;
}

.logo-tagline {
  color: #0879ee;
}

.nav-link.active,
.nav-link:hover,
.nav-dropdown:hover .nav-link {
  color: #0879ee;
}

.nav-link.active::after {
  background: #0879ee;
}

.btn-primary-header,
.btn-primary-new,
.about-btn,
.cat-view-all-btn,
.btn-cta-blue,
.newsletter-btn {
  background: #0879ee !important;
}

.btn-primary-header:hover,
.btn-primary-new:hover,
.about-btn:hover,
.btn-cta-blue:hover {
  background: #0567d5 !important;
}

.hero-title-new .text-blue,
.about-title .text-blue,
.featured-main-title .text-blue {
  color: #0879ee !important;
}

.category-tag .text,
.featured-tag .text,
.section-kicker,
.about-tag .text {
  color: #0879ee;
}

.category-tag .line,
.featured-tag .line,
.about-tag .line {
  background-color: #0879ee;
}

.category-main-title .highlight-underline {
  color: #0879ee;
}

.cat-card-content li::before {
  background: #0879ee;
}

.cat-card-content>div {
  background: #0879ee;
}

.new-cat-card:hover {
  border-color: #8ec5fb;
}

.category-feature .feat-icon {
  background: #edf6ff;
  color: #0879ee;
}

.stat-icon-wrap {
  color: #0879ee;
  background: #edf6ff;
}

.proc-dot {
  background: #0879ee !important;
  box-shadow: 0 0 0 4px rgba(8, 121, 238, .12) !important;
}

.proc-card-text h4::after {
  background: #0879ee;
}

.sus-title .text-green {
  color: #0879ee;
}

.sus-card-icon {
  background: #edf6ff;
  color: #0879ee;
}

.location-list svg,
.map-pin {
  color: #0879ee;
}

.locations-bottom-strip {
  background: #102f51;
}

.featured-top-right::before {
  background: #0879ee;
}

.featured-tag .line {
  background: #0879ee;
}

.featured-main-title .text-blue {
  color: #0879ee !important;
}

.about-btn,
.cat-card-content>div,
.btn-cta-blue {
  color: #fff !important;
}