/*
Theme Name: Genuine Industrial
Description: Custom theme for Genuine Industrial Products
Version: 1.0
Author: GitHub Copilot
*/

/* CSS Variables */
:root {
  --orange: #E8600A;
  --orange-light: #FF7A1A;
  --bd-lt: #E2DFD7;
  --dark: #111111;
  --dark2: #1C1C1C;
  --dk2: #131313;
  --dark3: #252525;
  --mid: #3A3A3A;
  --steel: #6B7280;
  --off: #F6F5F2;
  --steel: #6B7280;
  --light-bg: #F5F5F3;
  --white: #FFFFFF;
  --border: #E0DED8;
  --text: #2D2D2D;
  --text-muted: #777;
   --dark: #0D0D0D;
   --tx-m: #666;
  --off-white: #F8F7F4;
  --text: #1A1A1A;
  --border-dark: rgba(255, 255, 255, 0.07);
  --border-light: #E5E3DC;
  --steel: #6B7280;
  --border-light: #E5E3DC;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

@font-face {
  font-family: 'icomoon';
  src:  url('fonts/icomoon.eot?w84141');
  src:  url('fonts/icomoon.eot?w84141#iefix') format('embedded-opentype'),
    url('fonts/icomoon.ttf?w84141') format('truetype'),
    url('fonts/icomoon.woff?w84141') format('woff'),
    url('fonts/icomoon.svg?w84141#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-mail-envelope-closed:before {
  content: "\e900";
}
.icon-phone:before {
  content: "\e942";
}
.icon-location:before {
  content: "\e947";
}
.icon-facebook:before {
  content: "\ea90";
}
.icon-instagram:before {
  content: "\ea92";
}
.icon-twitter:before {
  content: "\ea96";
}



html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--dark);
  color: #aaa;
  font-size: 12px;
  padding: 8px 0;
  letter-spacing: 0.03em;
  display: none;
}
.topbar .inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a { color: #aaa; text-decoration: none; margin-left: 5px; transition: color .2s; }
.topbar a:hover { color: var(--orange); }
.topbar .contact-info span { margin-right: 20px; }
.topbar .contact-info span i { color: var(--orange); margin-right: 5px; }
.contact-info{display: flex;gap:10px;}
/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.12); }
.nav-inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 44px; height: 44px;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.logo-icon::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 2px solid rgba(255,255,255,.5);
}
.logo-icon svg { width: 24px; height: 24px; fill: white; }
.logo-text { line-height: 1.1; }
.logo-text strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: .02em;
}
.logo-text span {
  font-size: 11px;
  color: var(--steel);
  letter-spacing: .08em;
  text-transform: uppercase;
}

nav ul { list-style: none; display: flex; gap: 0; }
nav ul li { position: relative; }
nav ul li a {
  display: block;
  padding: 0 18px;
  line-height: 72px;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s;
  white-space: nowrap;
}
nav ul li a:hover,
nav ul li a.active { color: var(--orange); }
nav ul li::after {
  content: '';
  position: absolute;
  bottom: 0; left: 18px; right: 18px;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .25s;
}
nav ul li:hover::after { transform: scaleX(1); }

/* dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: var(--white);
  border-top: 3px solid var(--orange);
  min-width: 220px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  z-index: 999;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  line-height: 1;
  padding: 14px 20px;
  font-size: 13px;
  border-bottom: 1px solid #f0f0f0;
  text-transform: none;
  letter-spacing: 0;
}
.dropdown-menu li:last-child a { border-bottom: none; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-quote {
  background: var(--orange);
  color: white;
  padding: 10px 22px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .2s;
}
.btn-quote:hover { background: #c94f00; transform: translateY(-1px); }
.btn-quote svg { width: 25px; height: 25px; fill: white; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  transition: .3s;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(120deg, #0f0f0f 0%, #1a1a1a 40%, #222 100%);
  min-height: 580px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,96,10,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,96,10,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}
.hero-accent {
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,96,10,.2) 0%, transparent 65%);
  animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: .7; }
}
.hero-inner {
  max-width: 1280px;
  margin: auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,96,10,.15);
  border: 1px solid rgba(232,96,10,.4);
  color: var(--orange);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 24px;
  animation: fadeInUp .6s both;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: blink 1.5s infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .2; } }
.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -.01em;
  margin-bottom: 20px;
  animation: fadeInUp .7s .1s both;
}
.hero h1 span { color: var(--orange); }
.hero p {
  color: #aaa;
  font-size: 16px;
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 36px;
  animation: fadeInUp .7s .2s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  animation: fadeInUp .7s .3s both;
}
.btn-primary a.elementor-button{
  background: var(--orange);
  color: white;
  padding: 14px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .25s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}
.btn-primary a.elementor-button:hover { background: #c94f00; gap: 16px; }
.btn-primary svg { width: 16px; height: 16px; fill: white; }
.btn-outline a.elementor-button{
  border: 1px solid rgba(255,255,255,.3);
  color: white;
  padding: 14px 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .25s;
}
.btn-outline a.elementor-button:hover { border-color: var(--orange); color: var(--orange); }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  animation: fadeInUp .7s .4s both;
}
.hero-stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.hero-stat-label { font-size: 12px; color: #777; text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight .8s .2s both;
  position: relative;
}
.hero-chain-graphic {
  width: 100%;
  max-width: 460px;
  position: relative;
}
.chain-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(232,96,10,.15);
  animation: rotate 20s linear infinite;
}
.chain-ring:nth-child(1) { width: 320px; height: 320px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.chain-ring:nth-child(2) { width: 220px; height: 220px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-direction: reverse; animation-duration: 14s; border-color: rgba(232,96,10,.25); }
@keyframes rotate { to { transform: translate(-50%,-50%) rotate(360deg); } }
.hero-chain-svg {
  width: 340px;
  height: 340px;
  position: relative;
  z-index: 2;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ── FEATURE STRIPS ── */
.feature-strip {
  background: var(--orange);
  padding: 0;
  overflow: hidden;
}
.feature-strip-inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.feature-item {
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid rgba(255,255,255,.2);
  cursor: pointer;
  transition: background .2s;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(0,0,0,.1); }
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 22px; height: 22px; fill: white; }
.feature-text strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: white;
  letter-spacing: .03em;
}
.feature-text span { font-size: 12px; color: rgba(255,255,255,.75); }

/* ── SECTION SHARED ── */
.section { padding: 90px 0; }
.section-inner { max-width: 1280px; margin: auto; padding: 0 24px; }
.section-header { margin-bottom: 50px; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 30px; height: 2px;
  background: var(--orange);
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -.01em;
}
.section-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 10px 20px;
  flex-shrink: 0;
  margin-top: auto;
  transition: all .2s;
}
.btn-view-all:hover { border-color: var(--orange); color: var(--orange); }
.btn-view-all svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ── CATEGORIES ── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: #e0e0e0;
}
.cat-card {
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: all .3s;
}
.cat-card:hover { z-index: 2; }
.cat-img {
  height: 160px;
  background: var(--light-bg);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.cat-img svg { width: 80px; height: 80px; transition: transform .4s; }
.cat-card:hover .cat-img svg { transform: scale(1.12); }
.cat-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--orange);
  opacity: 0;
  transition: opacity .3s;
}
.cat-card:hover .cat-img::after { opacity: .08; }
.cat-info {
  padding: 14px 16px;
  border-top: 2px solid transparent;
  transition: border-color .3s;
}
.cat-card:hover .cat-info { border-color: var(--orange); }
.cat-name {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--dark);
  transition: color .2s;
}
.cat-card:hover .cat-name { color: var(--orange); }
.cat-count { font-size: 12px; color: var(--steel); margin-top: 2px; }

/* ── PRODUCTS ── */
.section-products { background: var(--light-bg); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.1);
}
.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--orange);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 4px 10px;
  text-transform: uppercase;
  z-index: 2;
}
.product-badge.sold { background: var(--dark); }
.product-img {
  height: 220px;
  background: #f8f8f6;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.product-img svg { width: 120px; height: 120px; transition: transform .4s; }
.product-card:hover .product-img svg { transform: scale(1.08) rotate(3deg); }
.product-overlay {
  position: absolute;
  inset: 0;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.product-card:hover .product-overlay { opacity: .04; }
.product-body { padding: 20px; }
.product-price {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 6px;
}
.product-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 4px;
}
.product-sub { font-size: 12px; color: var(--steel); }
.product-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.btn-enquire {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.btn-enquire:hover { gap: 10px; }
.btn-enquire svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2.5; }
.product-pitch-tag {
  font-size: 11px;
  background: var(--light-bg);
  padding: 4px 10px;
  color: var(--steel);
  font-weight: 500;
}

/* ── ABOUT STRIP ── */
.about-strip {
  background: var(--dark);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.about-strip::before {
  content: 'GENUINE';
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Oswald', sans-serif;
  font-size: 160px;
  font-weight: 700;
  color: rgba(255,255,255,.03);
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
}
.about-inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.about-content .section-eyebrow { color: var(--orange); }
.about-content .section-title { color: white; margin-bottom: 20px; }
.about-content p { color: #999; line-height: 1.8; margin-bottom: 16px; font-size: 15px; }
.about-milestones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.milestone {
  border-left: 3px solid var(--orange);
  padding-left: 16px;
}
.milestone-num {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.milestone-label { font-size: 13px; color: #777; margin-top: 4px; }
.about-certifications { display: flex; flex-direction: column; gap: 16px; }
.cert-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color .2s;
}
.cert-card:hover { border-color: rgba(232,96,10,.4); }
.cert-icon {
  width: 48px; height: 48px;
  background: rgba(232,96,10,.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cert-icon svg { width: 24px; height: 24px; fill: var(--orange); }
.cert-title { font-family: 'Oswald', sans-serif; font-size: 15px; color: white; font-weight: 600; }
.cert-sub { font-size: 12px; color: #666; margin-top: 3px; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--light-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 50px 0;
}
.cta-inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.cta-text-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.cta-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
}
.cta-text h2 span { color: var(--orange); }
.cta-phone {
  text-align: center;
  background: var(--dark);
  padding: 24px 40px;
}
.cta-phone-num {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .03em;
  display: block;
}
.cta-phone-label { font-size: 11px; color: #777; text-transform: uppercase; letter-spacing: .1em; margin-top: 4px; }

/* ── PROCESS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 32px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), var(--border));
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 64px; height: 64px;
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--orange);
  transition: all .3s;
}
.process-step:hover .process-num {
  background: var(--orange);
  color: white;
  transform: scale(1.1);
}
.process-title {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 10px;
}
.process-desc { font-size: 13px; color: var(--steel); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--dark); padding: 90px 0; }
.testimonials .section-title { color: white; }
.testimonials .section-eyebrow { color: var(--orange); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.testi-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  padding: 32px;
  position: relative;
  transition: border-color .3s, transform .3s;
}
.testi-card:hover { border-color: rgba(232,96,10,.4); transform: translateY(-4px); }
.testi-quote {
  font-family: 'Oswald', sans-serif;
  font-size: 60px;
  color: var(--orange);
  line-height: .8;
  margin-bottom: 16px;
  opacity: .6;
}
.testi-text { font-size: 15px; color: #999; line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: white;
}
.testi-name { font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 600; color: white; }
.testi-role { font-size: 12px; color: #666; }

/* ── CONTACT ── */
.contact-section { padding: 90px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
}
.contact-info-block h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-child { border-bottom: none; }
.contact-icon {
  width: 40px; height: 40px;
  background: rgba(232,96,10,.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; fill: var(--orange); }
.contact-detail-label { font-size: 11px; color: var(--steel); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.contact-detail-val { font-size: 15px; color: var(--dark); font-weight: 500; }

.contact-form { background: var(--light-bg); padding: 40px; }
.contact-form h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--steel); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: var(--dark);
  outline: none;
  transition: border-color .2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { height: 110px; resize: vertical; }
.btn-submit {
  background: var(--orange);
  color: white;
  border: none;
  padding: 14px 36px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background .2s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}
.btn-submit:hover { background: #c94f00; }
.btn-submit svg { width: 14px; height: 14px; stroke: white; fill: none; stroke-width: 2; }

/* ── FOOTER ── */
footer {
  background: #080808;
  color: var(--white);
  padding: 80px 0 0;
}
.footer-inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 60px;
}
.footer-brand p { font-size: 14px; line-height: 1.8; margin-top: 16px; margin-bottom: 24px; }
.footer-logo-text strong {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  color: white;
  display: block;
  letter-spacing: .02em;
}
.footer-logo-text span { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background .2s;
}
.social-btn:hover { background: var(--orange); }
.social-btn svg { width: 16px; height: 16px; fill: #aaa; }
.social-btn:hover svg { fill: white; }
.widget_nav_menu .widget-title,
.footer-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.widget_nav_menu ul.menu,
.footer-links { list-style: none; }
.widget_nav_menu ul.menu li,
.footer-links li { margin-bottom: 10px; }
.widget_nav_menu ul.menu li a,
.footer-links a {
  font-size: 13px;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .2s, gap .2s;
}
.widget_nav_menu ul.menu li a:before,
.footer-links a::before { content: '—'; font-size: 10px; color: var(--orange); }
.widget_nav_menu ul.menu li a:hover,
.footer-links a:hover { color: var(--orange); gap: 12px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; }
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--orange); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { font-size: 13px; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 20px 24px;
  max-width: 1280px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.footer-bottom a { color: var(--orange); text-decoration: none; }

/* ── GST BADGE ── */
.gst-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,96,10,.1);
  border: 1px solid rgba(232,96,10,.3);
  color: var(--orange);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  letter-spacing: .06em;
  margin-top: 10px;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s, transform .7s;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── TICKER ── */
.ticker-bar {
  background: #0a0a0a;
  overflow: hidden;
  padding: 10px 0;
  border-bottom: 1px solid rgba(232,96,10,.2);
}
.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  align-items: center;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #555;
}
.ticker-item span { color: var(--orange); margin: 0 8px; }

.e-parent.page-hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 100px 0 90px;
}
.hero-glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(232,96,10,.22) 0%, transparent 65%);
  animation: glow 7s ease-in-out infinite;
}
.hero-line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(232,96,10,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(232,96,10,.05) 1px, transparent 1px);
  background-size: 72px 72px;
  animation: gridShift 25s linear infinite;
}
.elementor-widget-heading.hero-title .elementor-heading-title{
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 7vw, 88px);
  line-height: .95;
  color: var(--white);
  letter-spacing: -.01em;
  margin-bottom: 28px;
}




.e-parent.intro-split {
  background: var(--off-white);
  padding: 100px 0;
  position: relative;
}
.e-parent.intro-split:before{
    content: 'GENUINE';
  position: absolute;
  top: 40px;
  right: -20px;
  font-family: 'Oswald', sans-serif;
  font-size: 160px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,0,0,.045);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.02em;
}
.split-label.elementor-widget-heading .elementor-heading-title:before{
    content:'';
    width: 28px;
  height: 2px;
  background: var(--orange);

}
.split-label.elementor-widget-heading .elementor-heading-title{
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.split-heading.elementor-widget-heading .elementor-heading-title{
    font-family: 'Oswald', sans-serif;
  font-size: clamp(34px,4vw,52px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
p.split-body {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  font-weight: 400;
  margin-bottom: 20px;
}
.signature-block {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}
.sig-avatar {
    width: 52px;
    height: 52px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: white;
}
.sig-info strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
}
.sig-info span {
    font-size: 12px;
    color: var(--steel);
    letter-spacing: .05em;
}
.visual-frame {
    background: var(--dark);
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
}
.visual-frame-inner {
    position: absolute;
    inset: 1px;
    background: linear-gradient(135deg, #1a1a1a 0%, #111 50%, #1e1e1e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.chain-graphic {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.visual-tag {
    position: absolute;
    top: -14px;
    right: 20px;
    background: var(--off-white);
    border: 1px solid var(--border-light);
    padding: 8px 16px;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--steel);
    z-index: 1;
}
.visual-badge {
    position: absolute;
    bottom: -20px;
    left: -24px;
    background: var(--orange);
    padding: 18px 24px;
    clip-path: polygon(0 0, 100% 0, 100% 75%, 88% 100%, 0 100%);
}
.chain-svg {
    width: 80%;
    max-width: 320px;
    opacity: .9;
}
.badge-num {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: white;
    line-height: 1;
}
.badge-text {
    font-size: 11px;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .8);
    text-transform: uppercase;
}
.story-section {
    background: var(--dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* ─── TIMELINE / STORY ─── */
.story-section {
  background: var(--dark); padding: 100px 0; position: relative; overflow: hidden;
}
.story-section::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 80px,
    rgba(255,255,255,.015) 80px, rgba(255,255,255,.015) 81px
  );
}
.story-inner {
  max-width: 1280px; margin: auto; padding: 0 32px; position: relative; z-index: 1;
}
.section-header-dark {
  text-align: center; margin-bottom: 72px;
}
.eyebrow-dark {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.eyebrow-dark::before, .eyebrow-dark::after {
  content:''; width:40px; height:1px; background:var(--orange); opacity:.5;
}
.section-title-dark {
  font-family: 'Oswald', sans-serif; font-size: clamp(32px,4vw,52px);
  font-weight: 600; color: var(--white); letter-spacing: -.01em;
}
.section-subtitle-dark {
  font-size: 16px; color: rgba(255,255,255,.4); margin-top: 14px;
  font-weight: 300; max-width: 500px; margin-left: auto; margin-right: auto;
}

.timeline {
  position: relative; max-width: 900px; margin: 0 auto;
}
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(180deg, var(--orange) 0%, rgba(232,96,10,.2) 100%);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid; grid-template-columns: 1fr 60px 1fr; gap: 0;
  margin-bottom: 56px; opacity: 0; transform: translateY(30px);
  transition: opacity .6s, transform .6s;
}
.timeline-item.visible { opacity: 1; transform: translateY(0); }
.timeline-item:nth-child(even) .tl-content { grid-column: 3; }
.timeline-item:nth-child(even) .tl-empty { grid-column: 1; }
.timeline-item:nth-child(odd) .tl-content { grid-column: 1; text-align: right; }
.timeline-item:nth-child(odd) .tl-empty { grid-column: 3; }

.tl-center {
  grid-column: 2; display: flex; flex-direction: column; align-items: center;
  position: relative;
}
.tl-dot {
  width: 14px; height: 14px; background: var(--orange); border-radius: 50%;
  border: 3px solid var(--dark); box-shadow: 0 0 0 1px var(--orange);
  position: relative; z-index: 1; flex-shrink: 0; margin-top: 14px;
}
.tl-content {
  padding: 0 28px; padding-bottom: 0;
}
.tl-year {
  font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 500;
  letter-spacing: .15em; color: var(--orange); margin-bottom: 8px;
}
.tl-title {
  font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 600;
  color: var(--white); margin-bottom: 10px; line-height: 1.2;
}
.tl-text {
  font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.45); font-weight: 300;
}

/* ─── VALUES ─── */
.values-section {
  background: var(--off-white); padding: 100px 0 0; position: relative;
}
.values-inner { max-width: 1280px; margin: auto; padding: 0 32px; }
.section-header { margin-bottom: 60px; }
.eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--orange); display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.eyebrow::before { content:''; width:28px; height:2px; background:var(--orange); }
.section-title {
  font-family: 'Oswald', sans-serif; font-size: clamp(30px,3.5vw,46px);
  font-weight: 600; color: var(--dark); letter-spacing: -.01em;
}

.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
}
.value-card {
  background: var(--off-white); padding: 44px 36px; position: relative;
  transition: background .3s; cursor: default; overflow: hidden;
}
.value-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px; background: var(--orange);
  transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.value-card:hover::before { transform: scaleX(1); }
.value-card:hover { background: #fff; }
.value-card:hover .val-icon-wrap { background: var(--orange); }
.value-card:hover .val-icon-wrap svg { stroke: white; }
.value-num {
  font-family: 'Oswald', sans-serif; font-size: 60px; font-weight: 700;
  color: rgba(0,0,0,.04); position: absolute; top: 16px; right: 20px; line-height: 1;
  user-select: none; transition: color .3s;
}
.value-card:hover .value-num { color: rgba(232,96,10,.08); }
.val-icon-wrap {
  width: 48px; height: 48px; border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; transition: background .3s;
  clip-path: polygon(0 0,100% 0,100% 72%,82% 100%,0 100%);
}
.val-icon-wrap svg { width: 20px; height: 20px; stroke: var(--orange); fill: none; stroke-width: 1.5; }
.val-title {
  font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 600;
  color: var(--dark); margin-bottom: 14px; letter-spacing: .02em;
}
.val-text {
  font-size: 14.5px; line-height: 1.75; color: var(--text-muted);
}



/* ─── CAPABILITIES ─── */
.capabilities-section {
  background: var(--off-white); padding: 100px 0;
}
.cap-inner { max-width: 1280px; margin: auto; padding: 0 32px; }
.cap-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin-top: 56px; border: 1px solid var(--border-light);
}
.cap-item {
  padding: 36px 40px; border-bottom: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light); position: relative;
  transition: background .3s;
  opacity: 0; transform: translateX(-20px); 
  transition: opacity .5s, transform .5s, background .3s;
}
.cap-item:nth-child(2n) { border-right: none; }
.cap-item:nth-last-child(-n+2) { border-bottom: none; }
.cap-item:hover { background: #fff; }
.cap-item.visible { opacity: 1; transform: translateX(0); }
.cap-item:nth-child(2).visible { transition-delay: .1s; }
.cap-item:nth-child(3).visible { transition-delay: .15s; }
.cap-item:nth-child(4).visible { transition-delay: .2s; }
.cap-number {
  font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: .15em; color: var(--orange); margin-bottom: 12px;
}
.cap-title {
  font-family: 'Oswald', sans-serif; font-size: 21px; font-weight: 600;
  color: var(--dark); margin-bottom: 12px;
}
.cap-text { font-size: 14.5px; line-height: 1.75; color: var(--text-muted); }
.cap-arrow {
  position: absolute; bottom: 28px; right: 32px;
  width: 32px; height: 32px; border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateX(-4px); transition: all .3s;
}
.cap-arrow svg { width: 14px; height: 14px; stroke: var(--orange); fill:none; stroke-width:2; }
.cap-item:hover .cap-arrow { opacity: 1; transform: translateX(0); }

/* ─── CTA ─── */
.cta-section {
  background: var(--off-white); padding: 100px 0; position: relative;
}
.cta-inner {
  max-width: 1280px; margin: auto; padding: 0 32px;
}
.cta-box {
  background: var(--dark); padding: 72px 80px; position: relative; overflow: hidden;
  display: flex; justify-content: space-between; align-items: center; gap: 48px;
}
.cta-box::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,96,10,.15) 0%, transparent 70%);
}
.cta-box::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--orange), transparent);
}
.cta-text { position: relative; z-index: 1; }
.cta-eyebrow {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 14px;
}
.cta-title {
  font-family: 'Oswald', sans-serif; font-size: clamp(28px,3vw,44px);
  font-weight: 600; color: var(--white); line-height: 1.1; margin-bottom: 16px;
}
.cta-subtitle { font-size: 16px; color: rgba(255,255,255,.45); font-weight: 300; line-height: 1.6; }
.cta-actions { display: flex; gap: 14px; flex-shrink: 0; position: relative; z-index: 1; }
.btn-primary a.elementor-button{
  background: var(--orange); color: white; padding: 16px 32px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 13px;
  letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px; transition: all .25s;
  clip-path: polygon(0 0,100% 0,100% 72%,92% 100%,0 100%);
}
.btn-primary a.elementor-button:hover { background: #c94f00; transform: translateY(-2px); }
.btn-primary svg { width: 14px; height: 14px; stroke: white; fill:none; stroke-width:2; }
.btn-outline a.elementor-button{
    background-color: transparent;
  border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.7); padding: 16px 30px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 13px;
  letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px; transition: all .25s;
}
.btn-outline a.elementor-button:hover { border-color: var(--orange); color: var(--orange); }
.info-item{}
.info-item.elementor-widget-icon-box .elementor-icon-box-icon{
        width:44px;height:44px;border: 1px solid var(--bd-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .3s;
    clip-path: polygon(0 0, 100% 0, 100% 72%, 82% 100%, 0 100%);}
.map-section {
    background: var(--dk2);
    position: relative;
}
.map-title span {
    color: var(--orange);
}
.map-dir.elementor-widget-button .elementor-button{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--orange);
    text-decoration: none;
    border: 1px solid rgba(232, 96, 10, .3);
    padding: 10px 18px;
    transition: all .25s;
    flex-shrink: 0;
    background-color:transparent;
}
.map-dir.elementor-widget-button .elementor-button:hover{
    color: var(--white);
    background-color:var(--orange);
}
.map-wrap iframe {
    width: 100%;
    height: 440px;
    border: none;
    display: block;
    filter: grayscale(30%) contrast(1.05);
}
.section-title-dark h2.elementor-heading-title{
    font-family: 'Oswald', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 600;
    color: var(--white);
    letter-spacing: -.01em;
}
.section-title h2.elementor-heading-title
 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(30px, 3.5vw, 46px);
    font-weight: 600;
    color: var(--dark);
    letter-spacing: -.01em;
}
.values-grid {
    background: var(--border-light);
    border: 1px solid var(--border-light);
}
.val-title h2.elementor-heading-title{
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 14px;
    letter-spacing: .02em;
}
.cap-title h2.elementor-heading-title{
    font-family: 'Oswald', sans-serif;
    font-size: 21px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}
.cap-text {
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--text-muted);
}
.val-text {
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--text-muted);
}
.value-card {
    background: var(--off-white);
    padding: 44px 36px;
    position: relative;
    transition: background .3s;
    cursor: default;
    overflow: hidden;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s cubic-bezier(.25, .46, .45, .94), transform .7s cubic-bezier(.25, .46, .45, .94);
}
.cap-item {
    padding: 36px 40px;
}
.cap-item.visible {
    opacity: 1;
    transform: translateX(0);
}
.cert-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.contact-main {
    background: var(--off);
}
.cert-title span {
    color: var(--orange);
}
.cert-title h2.elementor-heading-title{
    font-family: 'Oswald', sans-serif;
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 20px;
}
.cert-desc {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .45);
    font-weight: 300;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: .1s;
}
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s cubic-bezier(.25, .46, .45, .94), transform .7s cubic-bezier(.25, .46, .45, .94);
}
.cert-badge-name h2.elementor-heading-title{
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 6px;
	
}
.cert-badge-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, .35);
    line-height: 1.5;
}
.cta-text .cta-title h2.elementor-heading-title{
	font-family: 'Oswald', sans-serif;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
}
.cta-text .cta-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, .45);
    font-weight: 300;
    line-height: 1.6;
}
.btn-primary a.elementor-button{
    background: var(--orange);
    color: white;
    padding: 16px 32px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .25s;
    clip-path: polygon(0 0, 100% 0, 100% 72%, 92% 100%, 0 100%);
}
.btn-outline a.elementor-button{
    border: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .7);
    padding: 16px 30px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .25s;
}
.cta-box {
    background: var(--dark);
    padding: 72px 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}
.form-panel {
    background: var(--white);
    border: 1px solid var(--bd-lt);
    padding: 52px 52px;
    position: relative;
    overflow: hidden;
}
.form-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light), transparent);
}
.form-row {
    display: flex;
	flex-wrap:wrap;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
}
.field {
    position: relative;
    margin-bottom: 28px;
	width:47%;
}
.field input, .field textarea, .field select {
    width: 100%;
    padding: 20px 16px 8px;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--tx);
    background: transparent;
    border: none;
    border-bottom: 1.5px solid #d5d2cc;
    outline: none;
    transition: border-color .25s;
    resize: none;
    appearance: none;
    -webkit-appearance: none;
}
.field label {
    position: absolute;
    top: 14px;
    left: 16px;
    font-size: 14px;
    color: #999;
    transition: all .22s cubic-bezier(.4, 0, .2, 1);
    pointer-events: none;
    letter-spacing: .02em;
}
.ip-eye {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--or);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.ip-h2 h2.elementor-heading-title{
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}
.ip-sub {
    font-size: 15px;
    line-height: 1.75;
    color: var(--tx-m);
    font-weight: 300;
    margin-bottom: 40px; 
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px solid var(--bd-lt);
    transition: all .2s;
}
.info-item h3.elementor-icon-box-title {
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--steel);
    margin-bottom: 5px;
}
.info-item .elementor-icon-box-description {
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--dk);
    line-height: 1.3;
}
.map-title h2.elementor-heading-title{
    font-family: 'Oswald', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 600;
    color: var(--white);
}
.map-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, .35);
    margin-top: 8px;
    font-weight: 300;
}
.value-card .val-icon-wrap{justify-content:center;align-items:center;}
.value-card .val-icon-wrap svg path{fill:var(--orange);transition:all 0.3s ease;}
.value-card:hover .val-icon-wrap svg path{fill:var(--white);}


.e-con-full.cap-item,
.e-con-full.value-card{padding:44px 36px;}
.value-num {
    font-family: 'Oswald', sans-serif;
    font-size: 60px;
    font-weight: 700;
    color: rgba(0, 0, 0, .04);
    position: absolute;
    top: 16px;
    right: 20px;
    line-height: 1;
    user-select: none;
    transition: color .3s;
}
.cap-number {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .15em;
    color: var(--orange);
    margin-bottom: 12px;
}

.info-item .elementor-icon-box-description{font-family: 'Oswald', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--dk);
    line-height: 1.3;}
.info-item .elementor-icon-box-description a{color: var(--dk);}
.form-panel .wpcf7-submit{
	display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--orange);
    color: white;
    padding: 17px 36px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all .3s;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 94% 100%, 0 100%);
}
.form-panel .field:last-child{width:100%;}
.fp-eye {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--or);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.fp-eye::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--or);
}
.fp-h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--dk);
    margin-bottom: 36px;
    letter-spacing: -.01em;
}
.fp-h2 span {
    color: var(--orange);
}
.footer-social{margin-top:2em;}
.footer-social .social-btn i{color:var(--white);}
.footer-brand{font-size:13px;line-height:1.5;color:var(--white);}
.footer-contact-item a{color:var(--white);font-size:13px;text-decoration:none;}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    position: absolute;
    top: -30px;
    margin: 0;
    width: 100%;
}
.gip-modal-body .wpcf7-form{position:relative;}
.dct-cf7-wrap {
    position: relative;
}
.gip-category-card{border:1px solid  var(--orange);}
.gip-category-card .gip-category-image{border-bottom:1px solid var(--orange);}
.gip-category-image img{object-fit:cover;height:100% !important;}
#gallery-1{display:flex;justify-content:flex-start;flex-wrap:wrap;overflow:hidden;gap:5px;}
.elementor-image-gallery .gallery-columns-4 .gallery-item{border:1px solid var(--orange);width:24.5%;border:1px solid var(--orange);border-radius:10px;margin-bottom:1em !important;}
.elementor-image-gallery .gallery-columns-4 .gallery-item img{border-radius:10px;object-fit:cover;height:100%;}
.elementor-image-gallery .gallery-columns-4 .gallery-item .gallery-icon{display:flex;align-items:center;height:100%;}
.elementor-image-gallery .gallery-columns-4 .gallery-item .gallery-icon a {
  height: 100%;
}
html body .das-cert__sub{color:#f5f5f5;font-size:14px;}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-grid::before { display: none; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .e-parent.intro-split:before{font-size:25vw;}
}
@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .feature-strip-inner { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .section-flex { flex-direction: column; }
  .cta-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .testi-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .about-milestones { grid-template-columns: 1fr 1fr; }
    
  /* --- Hamburger Icon Styling --- */
    .hamburger {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 21px;
      cursor: pointer;
      z-index: 10; /* Keeps it above the nav menu */
    }
    
    .hamburger span {
      display: block;
      height: 3px;
      width: 100%;
      background-color: #333;
      border-radius: 3px;
      transition: all 0.3s ease-in-out;
    }
    
    /* --- Hamburger to 'X' Animation --- */
    .hamburger.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
      opacity: 0; /* Hides the middle bar */
    }
    
    .hamburger.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }
    
    /* --- Navigation Menu Styling --- */
    nav {
      position: fixed;
      top: 0;
      right: -100%; /* Hides the menu completely off-screen to the right */
      width: 250px;
      height: 100vh;
      background-color: #fff;
      box-shadow: -2px 0 5px rgba(0,0,0,0.1);
      transition: right 0.3s ease-in-out;
      padding-top: 60px; /* Leaves room for the hamburger button */
    }
    
    /* When JavaScript adds the .active class, slide the menu into view */
    nav.active {
      right: 0;
      display: block;
    }
    
    nav ul {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
    }
    
    nav ul li a {
      display: block;
      padding: 15px 20px;
      color: #333;
      text-decoration: none;
      font-size: 18px;
      line-height: 1.5;
    }
  
  
}
@media (min-width:786px){
    .cta_bottom{display:none;}
    
}
@media (max-width:768px){
    .field{width:100%;}
}
@media (max-width:767px){
    .topbar{display:none;}
    .cta_bottom{position:fixed;bottom:0;left:0;width:100%;background-color:var(--dark);display:flex;justify-content:space-between;align-items:center;z-index:100;}
    .cta_bottom .footer-contact-item{margin-bottom:0;width:50%;padding:1em;text-align:center;justify-content:center;}
    .cta_bottom .footer-contact-item i{color:#666;}
    .elementor-image-gallery .gallery-columns-4 .gallery-item{width:48%;}   
    .manufacturing_clm .elementor-widget-html{height:320px;}
}
@media (max-width:580px){
    .dcb-phone-num{font-size:3vw;}
    .get_in_touch .elementor-icon-box-wrapper{align-items:center; }
    .get_in_touch .elementor-icon-box-wrapper{width:100%;}
}
@media (max-width: 480px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .timeline-item:nth-of-type(3) .tl-center .tl-dot{right:0}
 .timeline-item{display:flex;}
 .timeline-item .tl-content{width:100%;}
 .timeline::before{content:none;}
 .tl-center{display:none;}
 .btn-quote{min-width:116px;}
}