/* ============================================================
   HARIYA SOLAR — style-alt.css  v2.0 (Design Option B)
   Identity: Eco-Tech Architectural · Editorial Structural
   Palette:  Vibrant Emerald · Midnight Emerald · Mint · Slate
   Type:     Oswald (Display) · Plus Jakarta Sans (Body)
   Edge:     0px / 4px crisp geometry everywhere
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap");

/* ── CSS Custom Properties ───────────────────────────────── */
:root {
  --emerald: #059669;
  --emerald-hover: #047857;
  --emerald-deep: #022c22;
  --mint: #10b981;
  --mint-glow: rgba(16, 185, 129, 0.25);
  --mint-pale: #f0fdf4;
  --white: #ffffff;
  --ink: #0d1f16;
  --ink-muted: #4a5568;
  --ink-light: #718096;
  --border: #d1fae5;
  --border-mid: #e2e8f0;
  --font-display: "Oswald", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --body-sz: 18px;
  --body-lh: 1.7;
  --tr: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-em: 5px 5px 0 var(--emerald);
  --shadow-deep: 5px 5px 0 var(--emerald-deep);
}

:root {
      --bg-dark: #070d0b;           /* Deep obsidian-green background */
      --card-bg: #0f1916;          /* Dark slate module base */
      --mint: #10b981;             /* Neon Emerald glow */
      --mint-bright: #34d399;    
      --text-main: #f8fafc;        /* High-contrast white */
      --text-muted: #202020;       
      /* --font-display: 'Syne', sans-serif; */
      /* --font-body: 'Space Grotesk', sans-serif; */
    }

/* ── Reset & Base ──────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  font-size: var(--body-sz);
  line-height: var(--body-lh);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.05;
  color: var(--emerald-deep);
}
p,
li,
span,
label,
td {
  font-size: var(--body-sz);
  line-height: var(--body-lh);
}
a {
  text-decoration: none;
  transition: var(--tr);
}
img {
  display: block;
  max-width: 100%;
}

/* ── Container ─────────────────────────────────────────────── */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 36px;
}

/* ── Eyebrow ───────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--emerald);
  flex-shrink: 0;
}
.eyebrow.center {
  justify-content: center;
}
.eyebrow.center::before,
.eyebrow.center::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--emerald);
}
.eyebrow.mint {
  color: var(--mint);
}
.eyebrow.mint::before,
.eyebrow.mint::after {
  background: var(--mint);
}

/* ── Section Heading ───────────────────────────────────────── */
.s-head {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--emerald-deep);
  line-height: 1.05;
}
.s-head.on-dark {
  color: var(--white);
}
.s-head em {
  font-style: normal;
  color: var(--emerald);
}
.s-head.on-dark em {
  color: var(--mint);
}

/* ── Rule Line ─────────────────────────────────────────────── */
.rule {
  width: 52px;
  height: 3px;
  background: var(--emerald);
  margin: 22px 0 30px;
}
.rule.wide {
  width: 90px;
}
.rule.mint {
  background: var(--mint);
}

/* ── Body Text ─────────────────────────────────────────────── */
.bt {
  font-size: var(--body-sz);
  line-height: var(--body-lh);
  color: var(--ink-muted);
}
.bt.on-dark {
  color: rgba(255, 255, 255, 0.58);
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn-em {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 38px;
  background: var(--emerald);
  color: var(--white);
  border: 2px solid var(--emerald);
  border-radius: 0;
  cursor: pointer;
  box-shadow: var(--shadow-deep);
  transition: var(--tr);
  white-space: nowrap;
}
.btn-em:hover {
  background: var(--emerald-deep);
  border-color: var(--emerald-deep);
  box-shadow: 8px 8px 0 var(--mint);
  transform: translate(-2px, -2px);
  color: var(--white);
}
.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 36px;
  background: transparent;
  color: var(--emerald-deep);
  border: 2px solid var(--emerald-deep);
  border-radius: 0;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--emerald-deep);
  transition: var(--tr);
  white-space: nowrap;
}
.btn-ghost-dark:hover {
  background: var(--emerald-deep);
  color: var(--white);
  box-shadow: 6px 6px 0 var(--emerald);
  transform: translate(-2px, -2px);
}
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 36px;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  cursor: pointer;
  transition: var(--tr);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}

/* ── Particles ─────────────────────────────────────────────── */
.has-particles {
  position: relative;
  overflow: hidden;
}
.particle-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  font-family: var(--font-display);
  color: var(--emerald);
  animation: floatUp linear infinite;
  user-select: none;
  pointer-events: none;
  opacity: .3 !important;
}
@keyframes floatUp {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    transform: translateY(-45%) translateX(15px) rotate(5deg);
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-95%) translateX(-10px) rotate(-3deg);
    opacity: 0;
  }
}

/* ── Scroll Reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.08s;
}
.d2 {
  transition-delay: 0.16s;
}
.d3 {
  transition-delay: 0.24s;
}
.d4 {
  transition-delay: 0.32s;
}
.d5 {
  transition-delay: 0.4s;
}

/* ================================================================
   NAVBAR
   ================================================================ */
.alt-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: var(--tr);
}
.alt-navbar.scrolled {
  background: var(--emerald-deep);
  border-bottom-color: rgba(16, 185, 129, 0.18);
  padding: 13px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-icon {
  width: 34px;
  height: 34px;
  background: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--white);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  padding: 8px 15px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--mint);
  border-bottom-color: var(--mint);
}
.nav-cta {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 24px;
  background: var(--emerald);
  color: var(--white);
  border: 2px solid var(--emerald);
  box-shadow: 3px 3px 0 rgba(255, 255, 255, 0.25);
}
.nav-cta:hover {
  background: var(--white);
  color: var(--emerald-deep);
  box-shadow: 4px 4px 0 var(--mint);
  transform: translate(-1px, -1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--tr);
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--emerald-deep);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 8px;
  width: 80%;
  text-align: center;
}
.mobile-menu a:hover {
  color: var(--mint);
  border-bottom-color: var(--mint);
}
.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--white);
  cursor: pointer;
}

/* ================================================================
   HERO — Scroll-Snap Canvas (100vh each panel)
   ================================================================ */
#heroCanvas {
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  position: relative;
}

/* hide scrollbar inside canvas */
#heroCanvas::-webkit-scrollbar {
  display: none;
}
#heroCanvas {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hero-panel {
  width: 100%;
  height: 100vh;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Panel 1 — Split content */
.hero-panel-1 {
  background: var(--emerald-deep);
}
.hero-panel-1 .hp1-left {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 72px 80px;
  position: relative;
  z-index: 2;
}
.hero-panel-1 .hp1-right {
  width: 50%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.hero-panel-1 .hp1-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s ease;
}
.hero-panel-1 .hp1-right:hover img {
  transform: scale(1.05);
}
.hero-panel-1 .hp1-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--emerald-deep) 0%,
    transparent 30%
  );
  z-index: 1;
}
.hp1-tag {
  position: absolute;
  bottom: 40px;
  right: 0;
  z-index: 2;
  background: var(--emerald);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  padding: 12px 24px;
  box-shadow: 4px 4px 0 var(--emerald-deep);
}
.hp1-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mint);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hp1-eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--emerald);
}
.hero-panel-1 h1 {
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 28px;
}
.hero-panel-1 h1 em {
  font-style: normal;
  color: var(--mint);
  display: block;
}
.hero-panel-1 .hero-sub {
  font-size: var(--body-sz);
  line-height: var(--body-lh);
  color: rgba(255, 255, 255, 0.58);
  max-width: 420px;
  margin-bottom: 40px;
}
.hp1-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}
.hp1-badges {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hp1-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}
.hp1-badge i {
  color: var(--mint);
  font-size: 13px;
}

/* Panels 2 & 3 — Full-screen photo + text overlay */
.hero-panel-2,
.hero-panel-3 {
  background: #000;
}
.hero-panel-2 img,
.hero-panel-3 img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero-panel-overlay {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto 0 12vw;
}
.hero-panel-overlay h2 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.02;
  margin-bottom: 20px;
}
.hero-panel-overlay h2 em {
  font-style: normal;
  color: var(--mint);
}
.hero-panel-overlay p {
  font-size: var(--body-sz);
  line-height: var(--body-lh);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
  max-width: 460px;
}
.panel-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint);
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 8px 18px;
  margin-bottom: 24px;
  background: rgba(2, 44, 34, 0.5);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  right: 36px;
  bottom: 50%;
  transform: translateY(50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-dot {
  width: 6px;
  height: 6px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--tr);
}
.hero-dot.active {
  background: var(--mint);
  border-color: var(--mint);
  transform: scale(1.4);
}

/* Animated vertical scroll line at bottom of hero canvas */
.hero-scroll-line-wrap {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll-text {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  writing-mode: vertical-rl;
}
.hero-scroll-bar {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}
.hero-scroll-bar::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--mint), transparent);
  animation: scrollBarDrop 2.4s ease-in-out infinite;
}
@keyframes scrollBarDrop {
  0% {
    top: -100%;
  }
  100% {
    top: 200%;
  }
}

/* ================================================================
   ABOUT + STATS — Asymmetric Sidebar Stack
   ================================================================ */
.alt-about {
  padding: 120px 0;
  background: var(--white);
}
.about-wrap {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

/* Left: Stat sidebar */
.about-stats-col {
  padding-top: 8px;
}
.stat-stack {
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--emerald);
}
.stat-item {
  padding: 30px 0 30px 28px;
  border-bottom: 1px solid var(--border-mid);
  transition: var(--tr);
}
.stat-item:first-child {
  border-top: 1px solid var(--border-mid);
}
.stat-item:hover {
  border-left-color: var(--mint);
  background: var(--mint-pale);
  padding-left: 36px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--emerald);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.stat-label {
  font-size: var(--body-sz);
  color: var(--ink-light);
}

/* Right: Content col */
.about-features {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
}
.about-feature {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-mid);
  align-items: flex-start;
  transition: var(--tr);
}
.about-feature:last-child {
  border-bottom: none;
}
.about-feature:hover {
  padding-left: 8px;
}
.af-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: var(--mint-pale);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  font-size: 18px;
}
.af-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--emerald-deep);
  margin-bottom: 4px;
}
.af-text span {
  font-size: var(--body-sz);
  color: var(--ink-muted);
}

/* ================================================================
   SERVICES — 3-col structural grid
   ================================================================ */
/* .alt-services {
  padding: 100px 0;
  background: var(--mint-pale);
}
.svc-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 2px solid var(--emerald-deep);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-mid);
  box-shadow: var(--shadow-deep);
}
.svc-item {
  padding: 40px 34px;
  border-right: 1px solid var(--border-mid);
  border-bottom: 1px solid var(--border-mid);
  background: var(--white);
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}
.svc-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--emerald);
  transition: width 0.4s ease;
}
.svc-item:hover {
  background: var(--emerald-deep);
}
.svc-item:hover::before {
  width: 100%;
}
.svc-item:hover h4,
.svc-item:hover .svc-desc {
  color: var(--white);
}
.svc-item:hover .svc-num {
  color: var(--mint);
}
.svc-item:hover .svc-icon {
  background: rgba(255, 255, 255, 0.08);
  color: var(--mint);
}
.svc-item:nth-child(3n) {
  border-right: none;
}
.svc-item:nth-child(n + 4) {
  border-bottom: none;
}
.svc-num {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 18px;
  display: block;
  transition: var(--tr);
}
.svc-icon {
  width: 50px;
  height: 50px;
  background: var(--mint-pale);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--emerald);
  margin-bottom: 20px;
  transition: var(--tr);
}
.svc-item h4 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--emerald-deep);
  margin-bottom: 12px;
  transition: var(--tr);
}
.svc-desc {
  font-size: var(--body-sz);
  line-height: var(--body-lh);
  color: var(--ink-muted);
  transition: var(--tr);
}
.svc-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-top: 18px;
  transition: var(--tr);
}
.svc-item:hover .svc-arrow {
  color: var(--mint);
  gap: 11px;
} */


.alt-services {
      padding: 160px 0;
      position: relative;
      overflow: hidden;
      background-color: #022c22;
    }

    /* Cinematic background ambient atmosphere */
    .alt-services::before {
      content: '';
      position: absolute;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, rgba(0,0,0,0) 70%);
      top: -10%;
      left: -10%;
      pointer-events: none;
    }

    /* --- Dramatic Typography Header --- */
    .svc-header {
      margin-bottom: 90px;
      position: relative;
      z-index: 2;
    }

    .eyebrow {
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.3em;
      color: var(--mint-bright);
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;
    }

    .eyebrow i {
      font-size: 14px;
      animation: pulseGlow 2s infinite ease-in-out;
    }

    .header-split {
      display: grid;
      grid-template-columns: 1.4fr 0.6fr;
      gap: 60px;
      align-items: flex-end;
    }

    .s-head {
      font-family: var(--font-display);
      font-size: 4.2rem;
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1.05;
      margin: 0;
      text-transform: uppercase;
    }

    #services-heading{
      color: #fff;
    }
     .text-light.bt{
      color: #fff;
    }

    /* .s-head em {
      font-style: normal;
      display: block;
      background: linear-gradient(90deg, #ffffff 0%, var(--mint-bright) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    } */

    .bt {
      font-size: 1.15rem;
      line-height: 1.6;
   
      margin: 0;
      font-weight: 400;
    }

    /* --- The Asymmetric Bento Grid --- */
    .svc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      position: relative;
      z-index: 2;
    }

    /* --- Module Design Overhaul --- */
    .svc-item {
      background: var(--card-bg);
      border-radius: 32px;
      padding: 50px 40px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.03);
      box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), 0 20px 40px rgba(0,0,0,0.3);
      transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Asymmetric grid sizing layouts */
    .svc-item:nth-child(1) {
      grid-column: span 2;
      background: linear-gradient(135deg, #11221d 0%, var(--card-bg) 100%);
    }
    
    .svc-item:nth-child(4) {
      grid-column: span 2;
      background: linear-gradient(135deg, var(--card-bg) 0%, #131c26 100%);
    }

    /* Element Layouts */
    .svc-num {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #047857;
      margin-bottom: 40px;
      display: block;
    }

    .svc-icon {
      font-size: 38px;
      color: var(--mint-bright);
      margin-bottom: 24px;
      width: 70px;
      height: 70px;
      background: rgba(20, 184, 133, 0.05);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(20, 184, 133, 0.1);
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .svc-item h4 {
      font-family: var(--font-display);
      font-size: 1.6rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.2;
      color: var(--text-main);
      margin: 0 0 16px 0;
    }

    .svc-desc {
      font-size: 1rem;
      line-height: 1.6;
      color: #fff;
      margin: 0 0 40px 0;
    }

    /* Enlarge typography specifically for the wide highlighted elements */
    .svc-item:nth-child(1) h4, .svc-item:nth-child(4) h4 {
      font-size: 2.1rem;
    }
    .svc-item:nth-child(1) .svc-desc, .svc-item:nth-child(4) .svc-desc {
      max-width: 85%;
    }

    /* --- The Interactive Shutter Link Button --- */
    .svc-arrow {
      width: 56px;
      height: 56px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-main);
      text-decoration: none;
      font-size: 22px;
      align-self: flex-start;
      position: relative;
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* --- Heavy Interactive Hover Effects --- */
    .svc-item:hover {
      transform: translateY(-8px);
      border-color: rgba(16, 185, 129, 0.3);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(16, 185, 129, 0.05);
    }

    .svc-item:hover .svc-icon {
      color: var(--bg-dark);
      background: var(--mint-bright);
      border-color: var(--mint-bright);
      transform: scale(1.05) rotate(5deg);
      box-shadow: 0 0 20px rgba(52, 211, 153, 0.4);
    }

    .svc-item:hover .svc-arrow {
      background: var(--text-main);
      color: var(--bg-dark);
      transform: rotate(-45deg);
      box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
    }

    .svc-item:hover h4 {
      color: var(--mint-bright);
    }

    /* Interactive internal module spotlight ring */
    .svc-item::after {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(16, 185, 129, 0.04) 0%, rgba(0,0,0,0) 70%);
      bottom: -150px;
      right: -150px;
      border-radius: 50%;
      pointer-events: none;
      transition: all 0.6s ease;
    }
    .svc-item:hover::after {
      background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, rgba(0,0,0,0) 70%);
      transform: scale(1.2);
    }

    @keyframes pulseGlow {
      0%, 100% { opacity: 0.6; transform: scale(1); }
      50% { opacity: 1; transform: scale(1.1); }
    }

    /* --- Seamless Responsiveness Breakpoints --- */
    @media (max-width: 1100px) {
      .s-head { font-size: 3.2rem; }
      .svc-grid { grid-template-columns: repeat(2, 1fr); }
      .svc-item:nth-child(1), .svc-item:nth-child(4) { grid-column: span 2; }
    }

    @media (max-width: 768px) {
      .alt-services { padding: 100px 0; }
      .header-split { grid-template-columns: 1fr; gap: 30px; }
      .s-head { font-size: 2.5rem; }
      .svc-grid { grid-template-columns: 1fr; }
      .svc-item, .svc-item:nth-child(1), .svc-item:nth-child(4) {
        grid-column: span 1;
        padding: 40px 30px;
      }
      .svc-item:nth-child(1) h4, .svc-item:nth-child(4) h4 { font-size: 1.6rem; }
      .svc-item:nth-child(1) .svc-desc, .svc-item:nth-child(4) .svc-desc { max-width: 100%; }
    }




/* ================================================================
   WHY HARIYA — Alternating Editorial Zigzag
   ================================================================ */
.alt-why {
  padding: 100px 0;
  background: var(--white);
}
.why-hdr {
  margin-bottom: 72px;
  max-width: 680px;
}
.zz-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
  border: 1px solid var(--border-mid);
  box-shadow: 4px 4px 0 var(--border-mid);
  transition: box-shadow 0.3s ease;
}
.zz-row:not(:last-child) {
  border-bottom: none;
}
.zz-row:hover {
  box-shadow: 6px 6px 0 var(--emerald);
}
.zz-row.rev {
  direction: rtl;
}
.zz-row.rev > * {
  direction: ltr;
}
.zz-img-col {
  overflow: hidden;
  position: relative;
}
.zz-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.zz-row:hover .zz-img-col img {
  transform: scale(1.04);
}
.zz-img-label {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--emerald);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  padding: 6px 14px;
}
.zz-content-col {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.zz-content-col h3 {
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  color: var(--emerald-deep);
  margin-bottom: 18px;
}
.zz-content-col p {
  font-size: var(--body-sz);
  line-height: var(--body-lh);
  color: var(--ink-muted);
  margin-bottom: 28px;
}
.zz-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 14px 22px;
  border: 1px solid var(--border);
  background: var(--mint-pale);
  max-width: fit-content;
}
.zz-stat-n {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--emerald);
  line-height: 1;
}
.zz-stat-l {
  font-size: 14px;
  color: var(--ink-muted);
}

/* ================================================================
   PROJECT PORTFOLIO MARQUEE STRIP
   ================================================================ */
.alt-marquee {
  overflow: hidden;
  background: var(--emerald-deep);
  padding: 0;
  border-top: 3px solid var(--emerald);
  border-bottom: 3px solid var(--emerald);
}
.marquee-hdr {
  text-align: center;
  padding: 48px 0 32px;
}
.marquee-hdr .s-head {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: var(--white);
}
.marquee-track-wrap {
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 40s linear infinite;
  width: max-content;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-card {
  width: 400px;
  height: 300px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.marquee-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.75);
  transition: var(--tr);
}
.marquee-card:hover img {
  filter: saturate(1) brightness(0.9);
  transform: scale(1.05);
}
.marquee-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(2, 44, 34, 0.92));
  padding: 32px 20px 18px;
}
.marquee-card-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 2px;
}
.marquee-card-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.marquee-footer-bar {
  padding: 24px 0 40px;
  text-align: center;
}

/* ================================================================
   LEAD FORM — Split Dark/Pale
   ================================================================ */
.alt-lead {
  padding: 0;
}
.lead-wrap {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 720px;
}
.lead-left {
  background: var(--emerald-deep);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.lead-left::after {
  content: "25+";
  position: absolute;
  bottom: 50px;
  right: 40px;
  font-family: var(--font-display);
  font-size: 10rem;
  font-weight: 700;
  color: rgba(5, 150, 105, 0.07);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.lead-left > * {
  position: relative;
  z-index: 1;
}
.lead-left h2 {
  color: var(--white);
  margin-bottom: 18px;
}
.lead-feats {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lead-feat {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: var(--body-sz);
  color: rgba(255, 255, 255, 0.6);
}
.lead-feat i {
  color: var(--mint);
  font-size: 17px;
}
.lead-right {
  padding: 72px 64px;
  background: var(--mint-pale);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lead-right h3 {
  font-size: 1.7rem;
  color: var(--emerald-deep);
  margin-bottom: 6px;
}
.lead-right .form-sub {
  font-size: var(--body-sz);
  color: var(--ink-muted);
  margin-bottom: 34px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-row.full {
  grid-template-columns: 1fr;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--emerald-deep);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--border-mid);
  border-radius: 0;
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: var(--body-sz);
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: var(--tr);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald);
  box-shadow: 3px 3px 0 var(--emerald);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-note {
  font-size: 13px;
  color: var(--ink-light);
  text-align: center;
  margin-top: 12px;
}
.form-note i {
  color: var(--emerald);
}

/* ================================================================
   BESS CALCULATOR — Overhauled
   ================================================================ */
.alt-calculator {
  padding: 100px 0;
  background: var(--emerald-deep);
}
.alt-calculator .eyebrow {
  color: var(--mint);
}
.alt-calculator .eyebrow::before {
  background: var(--mint);
}
.alt-calculator .s-head {
  color: var(--white);
}
.alt-calculator .s-head em {
  color: var(--mint);
}
.alt-calculator .rule {
  background: var(--mint);
}

.calc-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(5, 150, 105, 0.4);
  box-shadow: 6px 6px 0 rgba(16, 185, 129, 0.25);
}

/* LEFT — inputs */
.calc-inputs {
  padding: 56px 52px;
  border-right: 1px solid rgba(5, 150, 105, 0.25);
  background: rgba(2, 44, 34, 0.6);
}
.calc-inputs h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
}
.calc-inputs .calc-sub {
  font-size: var(--body-sz);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 44px;
}

/* Slider group */
.slider-group {
  margin-bottom: 36px;
}
.slider-label-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}
.slider-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
}
.slider-val {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--mint);
  line-height: 1;
  min-width: 90px;
  text-align: right;
  transition: color 0.2s ease;
}

/* Custom track with emerald fill */
.slider-track-wrap {
  position: relative;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 8px;
}
.slider-track-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(to right, var(--emerald), var(--mint));
  box-shadow: 0 0 8px var(--mint-glow);
  pointer-events: none;
  transition: width 0.05s linear;
}
.calc-range {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: transparent;
  outline: none;
  cursor: pointer;
  transform: translateY(-50%);
}
.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  background: var(--mint);
  border: 3px solid var(--emerald-deep);
  box-shadow: 0 0 10px var(--mint-glow);
  cursor: pointer;
  transition: transform 0.2s;
}
.calc-range::-webkit-slider-thumb:hover {
  transform: scale(1.25);
}
.slider-limits {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.slider-limits span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* Dropdown */
.calc-select-group {
  margin-bottom: 32px;
}
.calc-select-label {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  margin-bottom: 10px;
}
.calc-select {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--body-sz);
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(5, 150, 105, 0.35);
  border-radius: 0;
  padding: 13px 16px;
  outline: none;
  cursor: pointer;
  appearance: none;
  transition: var(--tr);
}
.calc-select:focus {
  border-color: var(--mint);
  box-shadow: 3px 3px 0 var(--mint-glow);
}
.calc-select option {
  background: var(--emerald-deep);
  color: var(--white);
}

.calc-note {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.25);
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* RIGHT — outputs */
.calc-outputs {
  padding: 56px 52px;
  background: #021a10;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.calc-outputs-hdr {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 36px;
}
.calc-metric {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.calc-metric:first-of-type {
  padding-top: 0;
}
.calc-metric:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.calc-metric-val {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
  transition:
    transform 0.15s ease,
    opacity 0.15s ease;
}
.calc-metric-val.mint-glow {
  color: var(--mint);
  text-shadow: 0 0 28px rgba(16, 185, 129, 0.6);
}
.calc-metric-val.white {
  color: rgba(255, 255, 255, 0.88);
}
.calc-metric-desc {
  font-size: var(--body-sz);
  color: rgba(255, 255, 255, 0.4);
}
@keyframes flashPop {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  40% {
    transform: scale(1.06);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.calc-flash {
  animation: flashPop 0.35s ease forwards;
}

.calc-disclaimer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
  line-height: 1.6;
  color: rgb(255, 255, 255);
}
.calc-disclaimer a {
  color: var(--mint);
}

/* ================================================================
   TRUST SECTION
   ================================================================ */
.alt-trust {
  padding: 100px 0;
  background: var(--mint-pale);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-mid);
  box-shadow: var(--shadow-deep);
}
.trust-item {
  padding: 40px 30px;
  border-right: 1px solid var(--border-mid);
  border-bottom: 1px solid var(--border-mid);
  background: var(--white);
  transition: var(--tr);
}
.trust-item:nth-child(3n) {
  border-right: none;
}
.trust-item:nth-child(n + 4) {
  border-bottom: none;
}
.trust-item:hover {
  background: var(--emerald-deep);
}
.trust-item:hover h5,
.trust-item:hover .trust-desc {
  color: var(--white);
}
.trust-item:hover .trust-icon {
  background: rgba(255, 255, 255, 0.08);
  color: var(--mint);
  border-color: rgba(16, 185, 129, 0.3);
}
.trust-icon {
  width: 52px;
  height: 52px;
  background: var(--mint-pale);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--emerald);
  margin-bottom: 18px;
  transition: var(--tr);
}
.trust-item h5 {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--emerald-deep);
  margin-bottom: 7px;
  transition: var(--tr);
}
.trust-desc {
  font-size: var(--body-sz);
  color: var(--ink-muted);
  transition: var(--tr);
}

/* Partners marquee */
.partners-bar {
  background: var(--emerald-deep);
  padding: 28px 0;
  overflow: hidden;
  margin-top: 80px;
}
.partners-track {
  display: flex;
  gap: 64px;
  align-items: center;
  animation: marqueePartners 32s linear infinite;
  width: max-content;
}
.partner-tag {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}
.partner-tag:hover {
  color: var(--mint);
}
.partner-tag i {
  color: var(--emerald);
}
@keyframes marqueePartners {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ================================================================
   PROJECTS — Editorial Staggered List
   ================================================================ */
.alt-projects {
  padding: 100px 0;
  background: var(--white);
}
.proj-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  padding-bottom: 28px;
  border-bottom: 2px solid var(--emerald-deep);
}
.proj-list {
  display: flex;
  flex-direction: column;
}
.proj-row {
  display: grid;
  grid-template-columns: 100px 1fr 220px 150px;
  align-items: center;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--border-mid);
  transition: var(--tr);
  cursor: pointer;
  position: relative;
}
.proj-row::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--emerald);
  transition: width 0.3s ease;
}
.proj-row:hover {
  padding-left: 16px;
}
.proj-row:hover::before {
  width: 4px;
}
.proj-row:hover .proj-name {
  color: var(--emerald);
}
.proj-n {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--border-mid);
  line-height: 1;
  transition: var(--tr);
}
.proj-row:hover .proj-n {
  color: var(--mint-pale);
}
.proj-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--emerald-deep);
  transition: var(--tr);
}
.proj-loc {
  font-size: var(--body-sz);
  color: var(--ink-light);
  margin-top: 4px;
}
.proj-pill {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 9px;
  border: 1px solid var(--emerald);
  color: var(--emerald);
  margin-top: 8px;
}
.proj-thumb {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border: 1px solid var(--border-mid);
  filter: grayscale(40%);
  transition: var(--tr);
}
.proj-row:hover .proj-thumb {
  filter: grayscale(0%);
  box-shadow: 4px 4px 0 var(--emerald);
}
.proj-cap {
  text-align: right;
}
.proj-cap-n {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--emerald);
  line-height: 1;
}
.proj-cap-l {
  font-size: 12px;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ================================================================
   TESTIMONIALS — Single full-width quote
   ================================================================ */
.alt-testimonials {
  padding: 100px 0;
  background: var(--emerald-deep);
  position: relative;
  overflow: hidden;
}
.alt-testimonials::before {
  content: "\201C";
  position: absolute;
  top: -60px;
  left: -10px;
  font-family: var(--font-display);
  font-size: 40rem;
  font-weight: 700;
  color: rgba(5, 150, 105, 0.05);
  line-height: 1;
  pointer-events: none;
}
.testi-wrap {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.testi-slide {
  display: none;
  animation: testiIn 0.5s ease;
}
.testi-slide.active {
  display: block;
}
@keyframes testiIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.testi-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 30px;
}
.testi-stars i {
  color: var(--mint);
  font-size: 17px;
}
.testi-quote {
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 44px;
}
.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.testi-avatar {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border: 2px solid var(--emerald);
  filter: grayscale(25%);
}
.testi-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  text-align: left;
}
.testi-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-align: left;
}
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 56px;
}
.testi-btn {
  width: 46px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr);
}
.testi-btn:hover {
  border-color: var(--emerald);
  background: var(--emerald);
  color: var(--white);
}
.testi-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.testi-dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: var(--tr);
}
.testi-dot.active {
  background: var(--emerald);
  width: 26px;
}

/* ================================================================
   NEWS — Sharp horizontal editorial rows
   ================================================================ */
.alt-news {
  padding: 100px 0;
  background: var(--mint-pale);
}
.news-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  padding-bottom: 28px;
  border-bottom: 2px solid var(--emerald-deep);
}
.news-list {
  display: flex;
  flex-direction: column;
}
.news-row {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border-mid);
  align-items: start;
  transition: var(--tr);
}
.news-row:first-child {
  border-top: 1px solid var(--border-mid);
}
.news-row:hover {
  padding-left: 14px;
}
.news-thumb {
  width: 100%;
  height: 145px;
  object-fit: cover;
  border: 1px solid var(--border-mid);
  filter: grayscale(15%);
  transition: var(--tr);
}
.news-row:hover .news-thumb {
  filter: grayscale(0%);
  box-shadow: 4px 4px 0 var(--emerald);
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.news-tag {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--emerald);
  border: 1px solid var(--emerald);
  padding: 3px 9px;
}
.news-date {
  font-size: 13px;
  color: var(--ink-light);
  display: flex;
  align-items: center;
  gap: 4px;
}
.news-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--emerald-deep);
  margin-bottom: 8px;
  line-height: 1.15;
  transition: var(--tr);
}
.news-row:hover .news-title {
  color: var(--emerald);
}
.news-excerpt {
  font-size: var(--body-sz);
  line-height: var(--body-lh);
  color: var(--ink-muted);
}
.news-arrow {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: 2px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  font-size: 20px;
  margin-top: 4px;
  transition: var(--tr);
  align-self: center;
}
.news-row:hover .news-arrow {
  border-color: var(--emerald);
  background: var(--emerald);
  color: var(--white);
  transform: translateX(4px);
}

/* ================================================================
   SEO SECTION
   ================================================================ */
.alt-seo {
  padding: 80px 0;
  background: var(--emerald-deep);
}
.seo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.seo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.seo-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  transition: var(--tr);
}
.seo-tag:hover {
  color: var(--mint);
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.05);
}
.seo-copy p {
  font-size: var(--body-sz);
  line-height: var(--body-lh);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 18px;
}

/* ================================================================
   CTA SECTION
   ================================================================ */
.alt-cta {
  padding: 120px 0;
  background: var(--white);
  text-align: center;
  border-top: 1px solid var(--border-mid);
}
.cta-inner {
  max-width: 780px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  color: var(--emerald-deep);
  margin-bottom: 20px;
}
.cta-inner h2 em {
  font-style: normal;
  color: var(--emerald);
}
.cta-inner p {
  font-size: var(--body-sz);
  line-height: var(--body-lh);
  color: var(--ink-muted);
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.cta-tagline {
  margin-top: 48px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
}
.cta-tagline em {
  font-style: normal;
  color: var(--emerald);
}

/* ================================================================
   FOOTER
   ================================================================ */
.alt-footer {
  background: #011c15;
  padding: 72px 0 0;
  border-top: 1px solid rgba(16, 185, 129, 0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand .brand-icon {
  width: 30px;
  height: 30px;
  background: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--white);
}
.footer-brand .brand-desc {
  font-size: var(--body-sz);
  line-height: var(--body-lh);
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.f-soc {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 14px;
  transition: var(--tr);
}
.f-soc:hover {
  border-color: var(--emerald);
  background: var(--emerald);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-col h6 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.f-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0px;
}
.f-links a {
  font-size: 15px;
  color: #ffffff96;
  transition: var(--tr);
}
.f-links a:hover {
  color: var(--white);
  padding-left: 6px;
}
.f-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.f-ci {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: var(--body-sz);
  color: rgba(255, 255, 255, 0.35);
}
.f-ci i {
  color: var(--emerald);
  font-size: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgb(255, 255, 255);
}

.footer-credits{
  color: #fff !important;
}

.footer-credits a{
  color: #fff !important;
}
.footer-bottom-links {
  display: flex;
  gap: 22px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.2);
  transition: var(--tr);
}
.footer-bottom-links a:hover {
  color: var(--mint);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1199px) {
  .hero-panel-1 .hp1-left {
    padding: 140px 48px 80px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .proj-row {
    grid-template-columns: 80px 1fr;
    gap: 18px;
  }
  .proj-thumb,
  .proj-cap {
    display: none;
  }
}
@media (max-width: 991px) {
  #heroCanvas {
    height: 100svh;
  }
  .hero-panel {
    height: 100svh;
  }
  .hero-panel-1 {
    flex-direction: column;
  }
  .hero-panel-1 .hp1-left {
    width: 100%;
    padding: 140px 36px 56px;
  }
  .hero-panel-1 .hp1-right {
    width: 100%;
    height: 40vw;
  }
  .about-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .stat-stack {
    flex-direction: row;
    flex-wrap: wrap;
    border-left: none;
  }
  .stat-item {
    width: 45%;
    padding-left: 0;
    border-left: 3px solid var(--emerald);
    padding-left: 18px;
  }
  .svc-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .svc-grid {
    grid-template-columns: 1fr 1fr;
  }
  .svc-item:nth-child(3n) {
    border-right: 1px solid var(--border-mid);
  }
  .svc-item:nth-child(2n) {
    border-right: none;
  }
  .zz-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .zz-row.rev {
    direction: ltr;
  }
  .zz-img-col {
    height: 260px;
  }
  .zz-content-col {
    padding: 40px 32px;
  }
  .marquee-card {
    width: 280px;
    height: 220px;
  }
  .lead-wrap {
    grid-template-columns: 1fr;
  }
  .lead-left,
  .lead-right {
    padding: 60px 40px;
  }
  .calc-shell {
    grid-template-columns: 1fr;
  }
  .calc-inputs {
    border-right: none;
    border-bottom: 1px solid rgba(5, 150, 105, 0.25);
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-item:nth-child(2n) {
    border-right: none;
  }
  .trust-item:nth-child(n + 5) {
    border-bottom: none;
  }
  .seo-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .news-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .news-thumb {
    height: 180px;
  }
  .news-arrow {
    display: none;
  }
  .proj-hdr,
  .news-hdr {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .hero-scroll-indicator {
    right: 16px;
  }
}
@media (max-width: 767px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-panel-1 .hp1-left {
    padding: 120px 22px 56px;
  }
  .hero-panel-1 .hp1-right {
    height: 50vw;
  }
  .hero-panel-overlay {
    margin: 0 22px;
  }
  .hp1-ctas {
    flex-direction: column;
  }
  .hp1-ctas .btn-em,
  .hp1-ctas .btn-ghost-light {
    width: 100%;
    justify-content: center;
  }
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .svc-item {
    border-right: none;
  }
  .svc-item:nth-child(n + 6) {
    border-bottom: none;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-item {
    border-right: none;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .lead-left,
  .lead-right {
    padding: 44px 22px;
  }
  .calc-inputs,
  .calc-outputs {
    padding: 36px 26px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .container {
    padding: 0 20px;
  }
  .hero-scroll-line-wrap {
    display: none;
  }
  .hero-scroll-indicator {
    right: 12px;
  }
  .stat-stack {
    flex-direction: column;
  }
  .stat-item {
    width: 100%;
  }
}


.hariya-logo{
  width: 80px;
  height: 80px;
  border-radius: 40px;
}



/* ══════════════════════════════════════
   WHATSAPP BUTTON
══════════════════════════════════════ */
.hs-wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .45), 0 2px 8px rgba(0, 0, 0, .2);
  transition: transform .3s, box-shadow .3s;
  outline: none;
}

.hs-wa-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 35px rgba(37, 211, 102, .6);
}

.hs-wa-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.hs-wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .6);
  animation: hsWaPulse 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes hsWaPulse {
  0% {
    transform: scale(1);
    opacity: .8
  }

  70% {
    transform: scale(1.6);
    opacity: 0
  }

  100% {
    transform: scale(1.6);
    opacity: 0
  }
}


/* ================================================================
   ELITE CHRONOLOGY LIST STYLING
   ================================================================ */
.timeline-row-item {
  display: grid;
  grid-template-columns: 220px 320px 1fr;
  gap: 40px;
  padding: 44px 20px;
  border-bottom: 1px solid var(--border-mid);
  background: transparent;
  transition: var(--tr);
  align-items: start;
}

.timeline-row-item:hover {
  background: var(--mint-pale);
  padding-left: 32px;
  border-left: 4px solid var(--emerald);
}

.tl-year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--emerald);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}

.timeline-row-item:hover .tl-year {
  color: var(--mint);
}

.tl-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--emerald-deep);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.tl-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-muted);
}

/* Timeline Responsiveness */
@media (max-width: 991px) {
  .timeline-row-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 36px 15px;
  }
  .tl-year {
    font-size: 1.3rem;
  }
  .tl-title {
    font-size: 1.15rem;
  }
}

/*  Bess Specific page */
/* ================================================================
   BESPOKE EDITORIAL BESS SECTION ENGINE
   ================================================================ */

/* Section 2 Engine: The Tactical Process Track */
.track-step {
  padding: 50px 30px;
  position: relative;
  transition: var(--tr);
}
.track-indicator-node {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--emerald);
  background: var(--white);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--emerald);
  position: absolute;
  top: -19px;
  left: 0;
  z-index: 5;
  transition: var(--tr);
}
.track-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--ink-light);
  margin-bottom: 16px;
}
.track-step h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--emerald-deep);
  line-height: 1.2;
  margin-bottom: 18px;
}
.track-spec-sheet {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed var(--border-mid);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.track-spec-sheet span {
  font-size: 13px;
  font-weight: 600;
  color: var(--emerald-deep);
}
/* Section 2 Interaction States */
.track-step:hover,
.track-step.active {
  background: var(--mint-pale);
  padding-left: 40px;
}
.track-step:hover .track-indicator-node,
.track-step.active .track-indicator-node {
  background: var(--emerald);
  color: var(--white);
  transform: scale(1.15);
}

/* Section 3 Engine: Hardware Topology Dossier */
.dossier-row-item {
  display: grid;
  grid-template-columns: 180px 320px 1fr;
  gap: 40px;
  padding: 44px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: start;
  transition: var(--tr);
}
.dossier-row-item:hover {
  background: rgba(16, 185, 129, 0.04);
  padding-left: 36px;
  border-left: 4px solid var(--mint);
}
.dossier-index {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(16, 185, 129, 0.3);
  display: block;
  line-height: 1;
}
.dossier-sub-tag {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  color: var(--mint);
  letter-spacing: 0.12em;
}
.dossier-title h3 {
  font-size: 1.35rem;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.dossier-row-item:hover .dossier-title h3 {
  color: var(--mint);
}

/* Section 4 Engine: Brutalist Data Cards */
.brutalist-data-card {
  /* background: #0f1916; */
  border: 1px solid #033528;
  padding: 40px 32px;
  height: 100%;
  transition: var(--tr);
}
.card-metric-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  color: var(--emerald);
  letter-spacing: 0.15em;
  margin-bottom: 14px;
}
.brutalist-data-card h3 {
  font-size: 1.4rem;
  color:#033528 ;
  margin-bottom: 30px;
  font-weight: 700;
}
.comparison-split-metric {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.side-bess h4 {
  font-size: 11px;
  color: var(--mint);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.side-bess p {
  font-size: 14px;
  line-height: 1.5;
  color: #033528;
  margin: 0;
}
.side-genset h4 {
  font-size: 11px;
  color: var(--ink-light);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.side-genset p {
  font-size: 14px;
  line-height: 1.5;
  color: #033528;
  margin: 0;
}
/* Section 4 Interactive States */
.brutalist-data-card:hover,
.brutalist-data-card.active {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 5px 5px 0 var(--emerald);
  transform: translateY(-4px);
}

/* Responsive Adaptations */
@media (max-width: 991px) {
  .track-step {
    padding: 40px 15px;
    border-left: 2px solid var(--border-mid);
    border-top: none !important;
  }
  .track-indicator-node {
    top: 0;
    left: -19px;
  }
  .dossier-row-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 30px 15px;
  }
  .brutalist-data-card {
    padding: 30px 20px;
  }
}

/* ================================================================
   IMAGE-HEAVY GRAPHIC ENGINE ADDITIONS
   ================================================================ */

/* Topology Image Cards (BESS Page Section 3) */
.topology-image-card {
  background: #0f1916;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--tr);
  height: 100%;
}
.topo-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.topo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.8);
  transition: var(--tr);
}
.topo-content {
  padding: 30px 24px;
  position: relative;
}
.topo-index {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--mint);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 8px;
}
.topology-image-card h3 {
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.topology-image-card p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
/* Topology Card Interactions */
.topology-image-card:hover {
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}
.topology-image-card:hover .topo-img-wrap img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.06);
}
.topology-image-card:hover h3 {
  color: var(--mint);
}

/* Investor Visual Cards (Investor Page Section 3) */
.investor-visual-card {
  background: var(--white);
  border: 1px solid var(--border-mid);
  transition: var(--tr);
  height: 100%;
  box-shadow: 4px 4px 0 var(--border-mid);
}
.card-img-holder {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}
.card-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
  transition: var(--tr);
}
.card-img-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--emerald-deep);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 6px 12px;
}
.card-img-badge.active {
  background: var(--mint);
  color: var(--emerald-deep);
}
.card-body-wrap {
  padding: 35px 24px;
}
.investor-visual-card h3 {
  font-size: 1.35rem;
  color: var(--emerald-deep);
  margin-bottom: 14px;
}
.investor-visual-card .bt {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}
/* Card Variations & Hover Interactions */
.investor-visual-card.featured-border {
  border: 2px solid var(--emerald-deep);
  box-shadow: var(--shadow-deep);
}
.investor-visual-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
  border-color: var(--emerald);
}
.investor-visual-card:hover .card-img-holder img {
  transform: scale(1.04);
  filter: saturate(1);
}


/* ================================================================
   TECHNICAL DATA SHEET HARDENED INPUT FIELD ENGINES
   ================================================================ */
.appraisal-brutalist-form {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.form-segment-block {
  display: flex;
  flex-direction: column;
}

.segment-legend {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--emerald-deep);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--emerald-deep);
}

.segment-legend span {
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  background: var(--emerald);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brutalist-field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brutalist-field-group label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-deep);
}

.brutalist-field-group input,
.brutalist-field-group select,
.brutalist-field-group textarea {
  width: 100%;
  border: 1px solid var(--border-mid);
  border-radius: 0px !important; /* Enforces crisp brutalist geometry */
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: #fafafa;
  outline: none;
  transition: var(--tr);
}

/* Hardened Focus Interface Animations */
.brutalist-field-group input:focus,
.brutalist-field-group select:focus,
.brutalist-field-group textarea:focus {
  background: var(--white);
  border-color: var(--emerald);
  box-shadow: 4px 4px 0 var(--emerald);
}

.brutalist-field-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Custom Dropdown Field Optimization */
.brutalist-field-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23022c22' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px;
  padding-right: 44px;
}

@media (max-width: 767px) {
  .appraisal-brutalist-form {
    gap: 40px;
  }
  .segment-legend {
    font-size: 1.2rem;
    margin-bottom: 24px;
  }
}

/* ================================================================
   HARIYA ENQUIRY GRID EXTENSIONS & CRISP ACCORDIONS
   ================================================================ */

/* Advantage Blocks */
.enquiry-perk-box {
  background: var(--mint-pale);
  border: 1px solid var(--border-mid);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  height: 100%;
  transition: var(--tr);
}
.enquiry-perk-box i {
  color: var(--emerald);
  font-size: 20px;
  line-height: 1;
}
.enquiry-perk-box span {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-muted);
  font-weight: 500;
}
.enquiry-perk-box:hover {
  background: var(--white);
  border-color: var(--emerald);
  box-shadow: 4px 4px 0 var(--emerald);
  transform: translateY(-2px);
}

/* Hardened Accordion UI Engine */
.custom-brutalist-accordion .accordion-item {
  background: #0f1916 !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 0px !important; /* Force raw alignment */
  margin-bottom: 16px;
  transition: var(--tr);
}
.custom-brutalist-accordion .accordion-button {
  background: transparent !important;
  font-family: var(--font-display) !important;
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  color: var(--white) !important;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 24px 30px !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}
.custom-brutalist-accordion .accordion-button::after {
  filter: invert(1) brightness(2); /* Adapt arrow icon on dark base */
}
.custom-brutalist-accordion .accordion-button:not(.collapsed) {
  color: var(--mint) !important;
}
.custom-brutalist-accordion .accordion-body {
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  padding: 0 30px 30px !important;
}
.custom-brutalist-accordion .accordion-item:hover {
  border-color: rgba(16, 185, 129, 0.25) !important;
  box-shadow: 4px 4px 0 var(--emerald);
}

/* Form Structural Core Settings Reuse Validation */
.appraisal-brutalist-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.brutalist-field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.brutalist-field-group label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-deep);
}
.brutalist-field-group input,
.brutalist-field-group textarea {
  width: 100%;
  border: 1px solid var(--border-mid);
  border-radius: 0px !important;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: #fafafa;
  outline: none;
  transition: var(--tr);
}
.brutalist-field-group input:focus,
.brutalist-field-group textarea:focus {
  background: var(--white);
  border-color: var(--emerald);
  box-shadow: 4px 4px 0 var(--emerald);
}
.brutalist-field-group textarea {
  resize: vertical;
  min-height: 80px;
}


/* ================================================================
   IMAGE-DRIVEN O&M CAPABILITY MATRICES STYLING
   ================================================================ */
.om-visual-card {
  background: var(--white);
  border: 1px solid var(--border-mid);
  transition: var(--tr);
  height: 100%;
  box-shadow: 4px 4px 0 var(--border-mid);
  display: flex;
  flex-direction: column;
}

.om-visual-card .card-img-holder {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.om-visual-card .card-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
  transition: var(--tr);
}

.om-visual-card .card-img-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--emerald-deep);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 6px 12px;
}

.om-visual-card .card-img-badge.active {
  background: var(--mint);
  color: var(--emerald-deep);
}

.om-visual-card .card-body-wrap {
  padding: 35px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.om-visual-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--emerald-deep);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.om-visual-card .bt {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Micro Specification Metas inside Visual Cards */
.om-spec-box {
  border-top: 1px solid var(--border-mid);
  padding-top: 20px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.om-spec-box .spec-line {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.om-spec-box .spec-line strong {
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.om-spec-box .spec-line span {
  font-weight: 600;
  color: var(--emerald-deep);
}

.om-visual-card.featured-border {
  border: 2px solid var(--emerald-deep);
  box-shadow: var(--shadow-deep);
}

/* Hardened Geometric Hover States */
.om-visual-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
  border-color: var(--emerald);
}

.om-visual-card:hover .card-img-holder img {
  transform: scale(1.04);
  filter: saturate(1);
}

 /* ================================================================
       LOCAL COMPONENT INJECTION — DIVISIONAL MATRIX CARDS
       ================================================================ */
    .team-division-card {
      background: var(--white);
      border: 1px solid var(--border-mid);
      transition: var(--tr);
      height: 100%;
      box-shadow: 4px 4px 0 var(--border-mid);
      display: flex;
      flex-direction: column;
    }

    .team-division-card .card-img-holder {
      width: 100%;
      height: 260px;
      overflow: hidden;
      position: relative;
      border-bottom: 2px solid var(--emerald);
    }

    .team-division-card .card-img-holder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(0.8) contrast(1.1);
      transition: var(--tr);
    }

    .team-division-card .card-img-badge {
      position: absolute;
      bottom: 0;
      left: 0;
      background: var(--emerald-deep);
      color: var(--mint);
      font-family: var(--font-display);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 10px 18px;
    }

    .team-division-card .card-body-wrap {
      padding: 40px 32px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .team-division-card h3 {
      font-family: var(--font-display);
      font-size: 1.45rem;
      font-weight: 700;
      color: var(--emerald-deep);
      text-transform: uppercase;
      letter-spacing: 0.02em;
      line-height: 1.2;
      margin-bottom: 16px;
      transition: var(--tr);
    }

    .team-division-card .bt {
      font-size: 14.5px;
      line-height: 1.65;
      color: var(--ink-muted);
      margin-bottom: 0;
    }

    .team-division-card:hover {
      transform: translateY(-5px);
      box-shadow: 6px 6px 0 var(--emerald);
      border-color: var(--emerald);
    }

    .team-division-card:hover .card-img-holder img {
      transform: scale(1.05);
      filter: saturate(1) contrast(1);
    }

    .team-division-card:hover h3 {
      color: var(--emerald);
    }

    @media (max-width: 991px) {
      .team-division-card .card-body-wrap {
        padding: 30px 24px;
      }
    }
 
     /* ================================================================
       LOCAL INJECTION — SERVICE MATRIX & DOSSIER LIST STYLING
       ================================================================ */
    .om-visual-card {
      background: var(--white);
      border: 1px solid var(--border-mid);
      transition: var(--tr);
      height: 100%;
      box-shadow: 4px 4px 0 var(--border-mid);
      display: flex;
      flex-direction: column;
    }
    .om-visual-card .card-img-holder {
      width: 100%;
      height: 220px;
      overflow: hidden;
      position: relative;
    }
    .om-visual-card .card-img-holder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(0.85);
      transition: var(--tr);
    }
    .om-visual-card .card-img-badge {
      position: absolute;
      top: 15px;
      left: 15px;
      background: var(--emerald-deep);
      color: var(--white);
      font-family: var(--font-display);
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.1em;
      padding: 6px 12px;
    }
    .om-visual-card .card-body-wrap {
      padding: 35px 24px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .om-visual-card h3 {
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--emerald-deep);
      text-transform: uppercase;
      letter-spacing: 0.02em;
      line-height: 1.2;
      margin-bottom: 14px;
    }
    .om-visual-card .bt {
      font-size: 14px;
      line-height: 1.6;
    }
    .om-visual-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-deep);
      border-color: var(--emerald);
    }
    .om-visual-card:hover .card-img-holder img {
      transform: scale(1.04);
      filter: saturate(1);
    }

    /* Analytical Dossier Row List */
    .structural-dossier-list {
      border-top: 1px solid var(--border-mid);
    }
    .dossier-row-item {
      display: grid;
      grid-template-columns: 180px 320px 1fr;
      gap: 40px;
      padding: 44px 20px;
      border-bottom: 1px solid var(--border-mid);
      align-items: start;
      transition: var(--tr);
      background: var(--white);
    }
    .dossier-row-item:hover {
      background: var(--mint-pale);
      padding-left: 36px;
      border-left: 4px solid var(--mint);
    }
    .dossier-index {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 700;
      color: rgba(16, 185, 129, 0.2);
      display: block;
      line-height: 1;
    }
    .dossier-sub-tag {
      font-family: var(--font-display);
      font-size: 10px;
      font-weight: 600;
      color: var(--emerald);
      letter-spacing: 0.12em;
    }
    .dossier-title h3 {
      font-family: var(--font-display);
      font-size: 1.35rem;
      color: var(--emerald-deep);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      margin: 0;
      transition: var(--tr);
    }
    .dossier-row-item:hover .dossier-title h3 {
      color: var(--emerald);
    }
    .dossier-body .bt {
      font-size: 15px;
      line-height: 1.6;
      margin: 0;
      color: var(--emerald-deep);
      
    }

    @media (max-width: 991px) {
      .dossier-row-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 30px 15px;
      }
    }


    /* contact us */

       .contact-info-block {
      background: var(--white);
      border: 1px solid var(--border-mid);
      padding: 30px 24px;
      display: flex;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 20px;
      transition: var(--tr);
      box-shadow: 4px 4px 0 var(--border-mid);
    }
    .contact-info-block:hover {
      border-color: var(--emerald);
      box-shadow: 6px 6px 0 var(--emerald);
      transform: translateY(-4px);
    }
    .contact-icon {
      width: 50px;
      height: 50px;
      flex-shrink: 0;
      background: var(--mint-pale);
      border: 1px solid var(--emerald);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--emerald-deep);
      font-size: 20px;
    }
    .contact-info-block h4 {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--emerald-deep);
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 6px;
    }
    .contact-info-block p, 
    .contact-info-block a {
      font-family: var(--font-body);
      font-size: 15px;
      line-height: 1.6;
      color: var(--ink-muted);
      margin: 0;
      text-decoration: none;
      transition: var(--tr);
    }
    .contact-info-block a:hover {
      color: var(--emerald);
    }

    .map-container {
      border: 1px solid var(--border-mid);
      box-shadow: var(--shadow-deep);
      height: 450px;
      width: 100%;
      background: #eee;
    }
    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
      filter: grayscale(80%) contrast(1.1);
    }



   
    /* ================================================================
       LOCAL INJECTION — HYBRID SPECIFIC MODULES & DOSSIER
       ================================================================ */
    .om-visual-card {
      background: var(--white);
      border: 1px solid var(--border-mid);
      transition: var(--tr);
      height: 100%;
      box-shadow: 4px 4px 0 var(--border-mid);
      display: flex;
      flex-direction: column;
    }
    .om-visual-card .card-img-holder {
      width: 100%;
      height: 220px;
      overflow: hidden;
      position: relative;
      background: var(--emerald-deep);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .om-visual-card .card-img-holder i {
      font-size: 80px;
      color: var(--mint);
      opacity: 0.8;
      transition: var(--tr);
    }
    .om-visual-card .card-img-badge {
      position: absolute;
      top: 15px;
      left: 15px;
      background: var(--mint);
      color: var(--emerald-deep);
      font-family: var(--font-display);
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.1em;
      padding: 6px 12px;
      text-transform: uppercase;
    }
    .om-visual-card .card-body-wrap {
      padding: 35px 24px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .om-visual-card h3 {
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--emerald-deep);
      text-transform: uppercase;
      letter-spacing: 0.02em;
      line-height: 1.2;
      margin-bottom: 14px;
    }
    .om-visual-card .bt {
      font-size: 14px;
      line-height: 1.6;
    }
    .om-visual-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-deep);
      border-color: var(--emerald);
    }
    .om-visual-card:hover .card-img-holder i {
      transform: scale(1.1);
      opacity: 1;
    }

    /* Analytical Dossier Row List */
    .structural-dossier-list {
      border-top: 1px solid var(--border-mid);
    }
    .dossier-row-item {
      display: grid;
      grid-template-columns: 200px 320px 1fr;
      gap: 40px;
      padding: 44px 20px;
      border-bottom: 1px solid var(--border-mid);
      align-items: start;
      transition: var(--tr);
      background: var(--white);
    }
    .dossier-row-item:hover {
      background: var(--mint-pale);
      padding-left: 36px;
      border-left: 4px solid var(--mint);
    }
    .dossier-index {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 700;
      color: rgba(16, 185, 129, 0.2);
      display: block;
      line-height: 1;
    }
    .dossier-sub-tag {
      font-family: var(--font-display);
      font-size: 10px;
      font-weight: 600;
      color: var(--emerald);
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .dossier-title h3 {
      font-family: var(--font-display);
      font-size: 1.35rem;
      color: var(--emerald-deep);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      margin: 0;
      transition: var(--tr);
    }
    .dossier-row-item:hover .dossier-title h3 {
      color: var(--emerald);
    }
    .dossier-body .bt {
      font-size: 15px;
      line-height: 1.6;
      margin: 0;
    }

    @media (max-width: 991px) {
      .dossier-row-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 30px 15px;
      }
    }

