/* assets/css/style.css — Spring Supports Mfg. Co. */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #ffffff;
  --dark: #f0f7f2;
  --dark2: #e6f2ea;
  --steel: #d0e8d8;
  --gold: #2a7a4a;
  --gold2: #38a060;
  --copper: #1a5c36;
  --ember: #22723f;
  --white: #1a2e22;
  --gray: #4a6a55;
  --border: rgba(42,122,74,0.18);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ─── CUSTOM CURSOR ─── */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease, width 0.3s, height 0.3s, opacity 0.3s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 1.5px solid rgba(42,122,74,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, width 0.3s, height 0.3s;
}
body:hover .cursor { opacity: 1; }

/* ─── NOISE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9997;
  opacity: 0.4;
}

/* ─── TOPBAR ─── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  height: 44px;
  background: rgba(42,90,58,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--gray);
}
.topbar a { color: #a8e6bf; text-decoration: none; transition: color 0.2s; }
.topbar a:hover { color: #ffffff; }
.topbar-left span { margin-right: 24px; color: #b0d8bc; }
.iso-pill {
  background: linear-gradient(90deg, #38c068, #22a050);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 3px 12px;
  border-radius: 20px;
  font-family: 'Rajdhani', sans-serif;
}

/* ─── HEADER ─── */
header {
  position: fixed;
  top: 44px; left: 0; right: 0;
  z-index: 900;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(42,122,74,0.15);
  transition: all 0.3s;
}
header.scrolled {
  top: 0;
  box-shadow: 0 4px 40px rgba(42,122,74,0.12);
}
.header-inner {
  max-width: 1400px;
  margin: auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-mark { position: relative; width: 48px; height: 48px; }
.logo-mark svg { width: 100%; height: 100%; }
.logo-words { line-height: 1; }
.logo-main {
  font-family: 'Bebas Neue', cursive;
  font-size: 28px;
  color: var(--white);
  letter-spacing: 3px;
  display: block;
}
.logo-main em { color: var(--gold); font-style: normal; }
.logo-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gray);
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

/* NAV */
nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
}
nav ul li a {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.25s;
  position: relative;
}
nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
}
nav ul li a:hover, nav ul li a.active-nav { color: var(--gold); }
nav ul li a:hover::after, nav ul li a.active-nav::after { transform: scaleX(1); }
.nav-cta {
  background: linear-gradient(135deg, var(--copper), var(--ember)) !important;
  color: #fff !important;
  border-radius: 6px !important;
  padding: 9px 22px !important;
  font-weight: 700 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(42,122,74,0.35) !important; }

/* ─── HERO SLIDER ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  margin-top: 116px;
}
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s cubic-bezier(0.4,0,0.2,1), visibility 1.1s;
}
.slide.active { opacity: 1; visibility: visible; }
.slide-bg { position: absolute; inset: 0; z-index: 0; }
.s1-bg { background: radial-gradient(ellipse at 70% 50%, #c8eeda 0%, #a8dfc0 35%, #2a7a4a 100%); }
.s2-bg { background: radial-gradient(ellipse at 30% 60%, #b8e8ce 0%, #90d4b0 35%, #1e6640 100%); }
.s3-bg { background: radial-gradient(ellipse at 60% 40%, #d0f0e0 0%, #b0e0c8 35%, #2d8050 100%); }

/* ─── IMAGE SLIDE BACKGROUNDS ─── */
.slide-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
/* Dark overlay so white text stays readable over any photo */
.slide-bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10, 30, 18, 0.72) 0%,
    rgba(10, 30, 18, 0.55) 50%,
    rgba(10, 30, 18, 0.28) 100%
  );
}
/* When image slide is active, text color adjustments */
.slide.has-image .slide-headline { color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,0.4); }
.slide.has-image .slide-body     { color: rgba(255,255,255,0.88); text-shadow: 0 1px 8px rgba(0,0,0,0.3); }
.slide.has-image .eyebrow-text   { color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,0.3); }
.slide.has-image .eyebrow-line   { background: rgba(255,255,255,0.8); }
.slide.has-image .slide-num      { color: rgba(255,255,255,0.06); }

.geo-lines { position: absolute; inset: 0; overflow: hidden; }
.geo-lines::before {
  content: '';
  position: absolute;
  top: -20%; right: -5%;
  width: 60%; height: 140%;
  border: 1px solid rgba(255,255,255,0.18);
  transform: skewX(-15deg);
}
.geo-lines::after {
  content: '';
  position: absolute;
  top: -20%; right: 10%;
  width: 60%; height: 140%;
  border: 1px solid rgba(255,255,255,0.10);
  transform: skewX(-15deg);
}
.slide-num {
  position: absolute;
  right: 40px; bottom: 60px;
  font-family: 'Bebas Neue', cursive;
  font-size: 180px;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  z-index: 1;
  user-select: none;
  letter-spacing: -5px;
}
.slide-illustration {
  position: absolute;
  right: 6%; top: 50%;
  transform: translateY(-40%) translateX(40px);
  width: 420px; height: 420px;
  z-index: 2;
  opacity: 0;
  transition: opacity 1s 0.5s, transform 1s 0.5s cubic-bezier(0.2,0,0.2,1);
}
.slide.active .slide-illustration { opacity: 1; transform: translateY(-50%) translateX(0); }
.slide-content {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: auto;
  padding: 0 40px;
  width: 100%;
}
.slide-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s 0.3s, transform 0.8s 0.3s;
}
.slide.active .slide-eyebrow { opacity: 1; transform: translateY(0); }
.eyebrow-line { width: 40px; height: 1px; background: #fff; }
.eyebrow-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}
.slide-headline {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(56px, 8vw, 100px);
  line-height: 0.9;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s 0.5s, transform 0.8s 0.5s;
  max-width: 680px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
  white-space: pre-line;
}
.slide.active .slide-headline { opacity: 1; transform: translateY(0); }
.slide-headline em { color: #fff; font-style: normal; display: block; opacity: 0.85; }
.slide-body {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  max-width: 480px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s 0.65s, transform 0.8s 0.65s;
  font-weight: 300;
  text-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.slide.active .slide-body { opacity: 1; transform: translateY(0); }
.slide-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s 0.8s, transform 0.8s 0.8s;
}
.slide.active .slide-actions { opacity: 1; transform: translateY(0); }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #1a5c36;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 3px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-gold:hover::before { opacity: 1; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(42,122,74,0.35); color: #fff; }
.btn-gold span { position: relative; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gray);
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  transition: all 0.3s;
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }

/* Slider UI */
.slider-ui {
  position: absolute;
  bottom: 44px; left: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.slider-progress { display: flex; flex-direction: column; gap: 8px; }
.progress-item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  opacity: 0.35;
  transition: opacity 0.3s;
}
.progress-item.active { opacity: 1; }
.progress-item .p-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 14px;
  color: #fff;
  width: 20px;
}
.progress-track {
  width: 80px; height: 2px;
  background: rgba(255,255,255,0.25);
  position: relative; overflow: hidden;
}
.progress-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: #fff;
  width: 0%;
}
.p-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}
.scroll-hint {
  position: absolute;
  bottom: 44px; right: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-hint span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.7);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, #fff, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ─── TICKER ─── */
.ticker {
  background: linear-gradient(90deg, #2a7a4a, #38a060, #1a5c36, #2a7a4a);
  background-size: 200%;
  animation: tickerShimmer 4s linear infinite;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}
@keyframes tickerShimmer { 0%{background-position:0%} 100%{background-position:200%} }
.ticker-track { display: inline-flex; animation: tickerMove 20s linear infinite; }
@keyframes tickerMove { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.ticker-item {
  font-family: 'Bebas Neue', cursive;
  font-size: 15px;
  letter-spacing: 3px;
  color: #fff;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}
.ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.5); flex-shrink: 0; }

/* ─── SECTIONS ─── */
.section { padding: 120px 0; }
.container { max-width: 1400px; margin: auto; padding: 0 40px; }
.tag-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.tag-line::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.section-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
}
.section-title em { color: var(--gold); font-style: normal; }
.section-body { font-size: 16px; line-height: 1.8; color: #4a6a55; font-weight: 300; }

/* ─── ABOUT ─── */
.about-section { background: #f0f9f4; position: relative; overflow: hidden; }
.about-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%; height: 100%;
  background: linear-gradient(135deg, transparent, rgba(42,122,74,0.04));
  pointer-events: none;
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.about-visual-wrap { position: relative; }
.about-canvas { width: 100%; aspect-ratio: 1; max-width: 500px; position: relative; }
.about-canvas svg { width: 100%; height: 100%; }
.about-stat-overlay {
  position: absolute;
  bottom: -10px; right: -30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stat-chip {
  background: #fff;
  border: 1px solid rgba(42,122,74,0.15);
  padding: 14px 20px;
  border-radius: 6px;
  text-align: right;
  box-shadow: 0 10px 30px rgba(42,122,74,0.1);
}
.stat-chip .n {
  font-family: 'Bebas Neue', cursive;
  font-size: 36px;
  color: #2a7a4a;
  line-height: 1;
  display: block;
}
.stat-chip .l { font-size: 11px; color: #5a8a6a; letter-spacing: 1px; font-family: 'Rajdhani', sans-serif; }
.about-text .section-body { max-width: 480px; margin-bottom: 36px; }
.about-certs { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 40px; }
.cert-badge {
  border: 1px solid rgba(42,122,74,0.2);
  padding: 12px 20px;
  border-radius: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  color: #2a7a4a;
  background: rgba(42,122,74,0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cert-badge::before { content: '✦'; font-size: 10px; }

/* ─── PRODUCTS ─── */
.products-section { background: #fff; }
.products-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 70px;
}
.products-header .section-body { max-width: 400px; }
.products-scroll-wrap { position: relative; overflow: hidden; }
.products-scroll-wrap::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 120px;
  background: linear-gradient(to right, transparent, #fff);
  pointer-events: none;
  z-index: 2;
}
.products-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: none;
  cursor: grab;
}
.products-track:active { cursor: grabbing; }
.products-track::-webkit-scrollbar { display: none; }

.prod-card {
  flex-shrink: 0;
  width: 300px;
  background: #f4fbf7;
  border: 1px solid rgba(42,122,74,0.12);
  border-radius: 10px;
  padding: 36px 28px;
  transition: all 0.35s cubic-bezier(0.2,0,0.2,1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  color: inherit;
}
.prod-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42,122,74,0.06), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.prod-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #2a7a4a, #38a060);
  transform: scaleX(0);
  transition: transform 0.35s;
  transform-origin: left;
}
.prod-card:hover { border-color: rgba(42,122,74,0.3); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(42,122,74,0.12); }
.prod-card:hover::before { opacity: 1; }
.prod-card:hover::after { transform: scaleX(1); }
.prod-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 13px;
  letter-spacing: 3px;
  color: rgba(42,122,74,0.35);
  margin-bottom: 20px;
  display: block;
}
.prod-icon-wrap {
  width: 60px; height: 60px;
  background: rgba(42,122,74,0.08);
  border: 1px solid rgba(42,122,74,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: all 0.35s;
}
.prod-card:hover .prod-icon-wrap { background: rgba(42,122,74,0.15); border-color: rgba(42,122,74,0.35); }
.prod-icon-wrap svg { width: 28px; height: 28px; }
.prod-icon-wrap img { width: 28px; height: 28px; object-fit: contain; }
.prod-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a3a28;
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}
.prod-desc { font-size: 13px; color: #5a7a68; line-height: 1.6; font-weight: 300; }
.prod-arrow {
  position: absolute;
  bottom: 24px; right: 24px;
  width: 32px; height: 32px;
  border: 1px solid rgba(42,122,74,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #2a7a4a;
  font-size: 14px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s;
}
.prod-card:hover .prod-arrow { opacity: 1; transform: translateX(0); }

/* Products full grid (products.php) */
.products-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

/* ─── WHY SECTION ─── */
.why-section { background: #f4fbf7; position: relative; overflow: hidden; }
.why-section::before {
  content: 'EXCELLENCE';
  position: absolute;
  font-family: 'Bebas Neue', cursive;
  font-size: 200px;
  color: rgba(42,122,74,0.04);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 10px;
}
.why-header { text-align: center; margin-bottom: 80px; }
.why-header .section-body { max-width: 520px; margin: auto; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.why-item {
  padding: 50px 40px;
  background: #fff;
  border: 1px solid rgba(42,122,74,0.08);
  position: relative;
  transition: all 0.3s;
}
.why-item:hover { background: #eef8f2; border-color: rgba(42,122,74,0.2); }
.why-icon {
  width: 50px; height: 50px;
  border: 1px solid rgba(42,122,74,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  font-size: 20px;
  background: rgba(42,122,74,0.05);
}
.why-item-num {
  position: absolute;
  top: 28px; right: 28px;
  font-family: 'Bebas Neue', cursive;
  font-size: 48px;
  color: rgba(42,122,74,0.06);
  line-height: 1;
}
.why-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a3a28;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.why-desc { font-size: 14px; color: #5a7a68; line-height: 1.7; font-weight: 300; }

/* ─── ENGINEERING ─── */
.engg-section { background: #fff; }
.engg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.engg-steps { margin-top: 40px; }
.engg-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(42,122,74,0.1);
  transition: all 0.3s;
  position: relative;
}
.engg-step:last-child { border-bottom: none; }
.engg-step:hover { padding-left: 10px; }
.engg-step::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #2a7a4a, #38a060);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s;
}
.engg-step:hover::before { transform: scaleY(1); }
.step-n {
  font-family: 'Bebas Neue', cursive;
  font-size: 42px;
  color: rgba(42,122,74,0.2);
  line-height: 1;
}
.step-info h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1a3a28;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.step-info p { font-size: 13px; color: #5a7a68; line-height: 1.6; }
.engg-right { position: sticky; top: 140px; }
.engg-visual {
  width: 100%;
  background: #f4fbf7;
  border: 1px solid rgba(42,122,74,0.15);
  border-radius: 12px;
  padding: 50px;
  position: relative;
  overflow: hidden;
}
.engg-visual::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(42,122,74,0.07), transparent 70%);
  pointer-events: none;
}
.engg-visual svg { width: 100%; height: auto; }
.engg-list { list-style: none; margin-top: 30px; }
.engg-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(42,122,74,0.08);
  font-size: 14px;
  color: #4a6a55;
  font-weight: 300;
}
.engg-list li:last-child { border-bottom: none; }
.engg-list li::before { content: '▸'; color: #2a7a4a; font-size: 10px; flex-shrink: 0; }

/* ─── CTA BAND ─── */
.cta-band {
  background: linear-gradient(135deg, #2a7a4a, #1a5c36);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 0px, transparent 60px);
}
.cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.cta-inner h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(36px, 4vw, 58px);
  color: #fff;
  letter-spacing: 2px;
  line-height: 1;
}
.cta-inner h2 em { color: #a8e6bf; font-style: normal; }
.cta-inner p { font-size: 16px; color: rgba(255,255,255,0.72); margin-top: 14px; font-weight: 300; }
.cta-btns { display: flex; gap: 14px; flex-direction: column; }

/* ─── CONTACT ─── */
.contact-section { background: #f0f9f4; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; }
.contact-info-list { margin-top: 40px; display: flex; flex-direction: column; gap: 28px; }
.c-item { display: flex; gap: 20px; align-items: flex-start; }
.c-icon {
  width: 44px; height: 44px;
  background: rgba(42,122,74,0.08);
  border: 1px solid rgba(42,122,74,0.18);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.c-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: #5a8a6a;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.c-val { font-size: 15px; color: #1a3a28; font-weight: 400; }
.c-val a { color: #1a3a28; text-decoration: none; }

.form-wrap {
  background: #fff;
  border: 1px solid rgba(42,122,74,0.15);
  border-radius: 12px;
  padding: 50px 44px;
  box-shadow: 0 8px 40px rgba(42,122,74,0.08);
}
.form-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 32px;
  letter-spacing: 2px;
  color: #1a3a28;
  margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: #5a8a6a;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #f4fbf7;
  border: 1px solid rgba(42,122,74,0.15);
  color: #1a3a28;
  padding: 13px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border 0.25s, background 0.25s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(42,122,74,0.4);
  background: #edf8f2;
}
.form-group textarea { height: 120px; resize: vertical; }
.form-group select option { background: #fff; color: #1a3a28; }
.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #2a7a4a, #1a5c36);
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 4px;
}
.submit-btn:hover { opacity: 0.88; transform: translateY(-1px); box-shadow: 0 10px 30px rgba(42,122,74,0.3); }
.form-success {
  background: #edf8f2;
  border: 1px solid rgba(42,122,74,0.3);
  color: #1a5c36;
  padding: 16px 20px;
  border-radius: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  display: none;
}

/* ─── FOOTER ─── */
footer { background: #1a3a28; padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand p { font-size: 14px; color: #7aaa90; line-height: 1.8; margin-top: 20px; font-weight: 300; max-width: 320px; }
.footer-col h5 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: #8adaaa;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-col h5::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.1); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: #3a4a5a;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 300;
}
.footer-col ul li a::before { content: '—'; font-size: 10px; color: rgba(200,151,42,0.3); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 12px; color: #2a3a4a; letter-spacing: 0.5px; font-weight: 300; }
.footer-bottom span { color: var(--gold); }

/* ─── PRODUCT DETAIL PAGE ─── */
.product-detail-hero {
  background: #f0f9f4;
  padding: 160px 0 80px;
}
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.product-img-wrap {
  background: #fff;
  border: 1px solid rgba(42,122,74,0.15);
  border-radius: 12px;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-img-wrap img { width: 100%; height: 100%; object-fit: contain; }
.product-svg-placeholder { padding: 40px; }
.product-breadcrumb {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: #5a8a6a;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.product-breadcrumb a { color: #2a7a4a; text-decoration: none; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: linear-gradient(135deg, #f0f9f4, #e6f2ea);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(42,122,74,0.02) 0, rgba(42,122,74,0.02) 1px, transparent 0, transparent 40px);
}
.page-hero .section-title { margin-bottom: 12px; }

/* ─── ALERTS ─── */
.alert { padding: 12px 18px; border-radius: 6px; margin-bottom: 16px; font-size: 14px; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.2,0,0.2,1), transform 0.8s cubic-bezier(0.2,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .about-grid, .engg-grid, .contact-grid, .product-detail-grid { grid-template-columns: 1fr; }
  .products-header { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .slide-illustration { display: none; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  header { top: 0; }
  .hero { margin-top: 72px; }
  .why-grid, .footer-grid { grid-template-columns: 1fr; }
  .header-inner, .container { padding: 0 20px; }
  nav ul { gap: 0; }
  nav ul li a { padding: 8px 10px; font-size: 11px; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .slide-headline { font-size: 48px; }
}
