<!-- ============================================================
  ENERGYHUB365 — ZOHO SITES
  SECTION 00: GLOBAL CSS — COLOR CORRECTED VERSION
  
  PROBLEM: Zoho Sites ka apna CSS tha jo colors override kar raha tha
  FIX: Exact client colors + !important overrides where needed
  
  HOW TO USE:
  Settings → Custom Code → Head Tag → Poora yeh paste karein
  (Pehle wala CSS hata dein, phir yeh lagayen)
============================================================ -->

<style>

/* ══════════════════════════════════════════════════════════
   EXACT CLIENT COLOR PALETTE
   Yeh hain wo sahi colors jo client ne bheje hain
   ══════════════════════════════════════════════════════════ */
:root {
  --offwhite:   #F7F6F2;   /* Body background — warm off-white */
  --steel:      #4A5A6A;   /* Primary dark blue-grey */
  --steel-dark: #323f4b;   /* Darker steel — hover states */
  --steel-deep: #1e2830;   /* Deepest navy — Nav, Hero, dark sections */
  --pale:       #C9DDEB;   /* Light blue accent */
  --pale-light: #e8f2f8;   /* Very light blue — card backgrounds */
  --tan:        #C8A27D;   /* Golden/tan accent — CTA buttons */
  --tan-light:  #f2ebe0;   /* Light tan — card backgrounds */
  --tan-dark:   #a07d55;   /* Darker tan — hover */
  --charcoal:   #333333;   /* Primary dark text */
  --charcoal-lt:#555555;   /* Secondary lighter text */
  --white:      #ffffff;
  --border:     #dddbd4;
  --border-mid: #c5c3bc;
}

/* ══════════════════════════════════════════════════════════
   GLOBAL RESETS
   ══════════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }
body {
  font-family: Verdana, Geneva, Tahoma, sans-serif !important;
  font-size: 14px !important;
  color: #333333 !important;
  background: #F7F6F2 !important;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   ZOHO SITES OVERRIDE — Body/Page background fix
   ══════════════════════════════════════════════════════════ */
.zs-page-wrapper,
.zs-page,
.zs-layout,
[class*="zs-"],
[class*="sqs-"],
.page-section {
  background-color: #F7F6F2 !important;
}

/* ══════════════════════════════════════════════════════════
   ZOHO SITES HEADER/NAV OVERRIDE
   Zoho ka header apna color rakhta hai — yeh usse fix karta hai
   ══════════════════════════════════════════════════════════ */
header,
.zs-header,
.zs-nav,
nav,
[class*="header"],
[class*="navbar"],
[class*="nav-wrapper"],
[class*="site-header"] {
  background-color: rgba(30, 40, 48, 0.97) !important;
  background: rgba(30, 40, 48, 0.97) !important;
  border-bottom: 1px solid rgba(201, 221, 235, 0.1) !important;
}

/* Nav links color */
header a,
nav a,
.zs-header a,
[class*="nav"] a {
  color: rgba(255, 255, 255, 0.55) !important;
  font-family: Verdana, Geneva, Tahoma, sans-serif !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}
header a:hover,
nav a:hover,
.zs-header a:hover {
  color: #C9DDEB !important;
}

/* Nav logo text */
.zs-site-name,
[class*="logo"] span,
[class*="brand"] {
  color: #ffffff !important;
  font-weight: 700 !important;
}

/* ══════════════════════════════════════════════════════════
   TAGS
   ══════════════════════════════════════════════════════════ */
.eh-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4A5A6A;
  margin-bottom: 18px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.eh-tag::before {
  content: '';
  width: 20px;
  height: 2px;
  background: #C8A27D;
}
.eh-tag.light { color: #C9DDEB; }
.eh-tag.light::before { background: #C9DDEB; }
.eh-tag.tan { color: #C8A27D; }
.eh-tag.tan::before { background: #C8A27D; }

/* ══════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════ */
.eh-btn {
  font-family: Verdana, Geneva, Tahoma, sans-serif !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  display: inline-block;
  transition: all 0.2s;
}
.eh-btn-primary {
  background: #4A5A6A !important;
  color: #ffffff !important;
}
.eh-btn-primary:hover {
  background: #323f4b !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 90, 106, 0.3);
}
.eh-btn-tan {
  background: #C8A27D !important;
  color: #ffffff !important;
}
.eh-btn-tan:hover {
  background: #a07d55 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 162, 125, 0.35);
}
.eh-btn-outline {
  background: transparent !important;
  color: #4A5A6A !important;
  border: 2px solid #4A5A6A !important;
}
.eh-btn-outline:hover {
  background: #4A5A6A !important;
  color: #ffffff !important;
}
.eh-btn-outline-white {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.35) !important;
}
.eh-btn-outline-white:hover {
  border-color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

/* ══════════════════════════════════════════════════════════
   TYPOGRAPHY
   ══════════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: Verdana, Geneva, Tahoma, sans-serif !important;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.eh-display {
  font-size: clamp(1.9rem, 4.2vw, 3.4rem);
  font-weight: 700;
  color: #333333;
}
.eh-display em { font-style: normal; color: #4A5A6A; }
.eh-display.light { color: #ffffff; }
.eh-display.light em { color: #C9DDEB; }

.eh-section-h {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 700;
  color: #333333;
  margin-bottom: 14px;
}
.eh-section-h em { font-style: normal; color: #C8A27D; }
.eh-section-h.light { color: #ffffff; }
.eh-section-h.light em { color: #C9DDEB; }

.eh-divider {
  width: 36px;
  height: 3px;
  background: #C8A27D;
  margin: 18px 0 24px;
}
.eh-divider.steel { background: #4A5A6A; }
.eh-divider.pale  { background: #C9DDEB; }

/* ══════════════════════════════════════════════════════════
   CHECKLIST
   ══════════════════════════════════════════════════════════ */
.eh-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 20px 0 28px;
}
.eh-checks li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.8rem;
  line-height: 1.6;
  color: #555555;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.eh-checks li::before {
  content: '✓';
  flex-shrink: 0;
  width: 19px;
  height: 19px;
  border-radius: 2px;
  background: #4A5A6A;
  color: #ffffff;
  font-size: 0.58rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.eh-checks.light li { color: rgba(255, 255, 255, 0.65); }
.eh-checks.light li::before {
  background: #C9DDEB;
  color: #1e2830;
}

/* ══════════════════════════════════════════════════════════
   IMAGE PLACEHOLDER
   ══════════════════════════════════════════════════════════ */
.eh-img-ph {
  width: 100%;
  height: 100%;
  min-height: 440px;
  background: linear-gradient(160deg, #2a3540 0%, #1e2a33 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.eh-img-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 221, 235, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 221, 235, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
}
.eh-img-ph-inner {
  position: relative;
  text-align: center;
  color: rgba(255, 255, 255, 0.18);
}
.eh-img-ph-inner svg { width: 44px; height: 44px; opacity: 0.2; display: block; margin: 0 auto 10px; }
.eh-img-ph-inner p { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; }

/* ══════════════════════════════════════════════════════════
   SPLIT LAYOUT
   ══════════════════════════════════════════════════════════ */
.eh-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.eh-split-content {
  padding: 80px 7%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eh-split-img {
  position: relative;
  overflow: hidden;
  min-height: 440px;
}
.eh-split-img .eh-img-ph { min-height: 440px; }

/* ══════════════════════════════════════════════════════════
   PLATFORM CARDS
   ══════════════════════════════════════════════════════════ */
.eh-cards-section {
  background: #F7F6F2;
  padding: 88px 6%;
}
.eh-cards-section.pale-bg { background: #eaf3f9; }
.eh-cards-header { margin-bottom: 48px; max-width: 500px; }
.eh-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.eh-card {
  background: #ffffff;
  border: 1px solid #dddbd4;
  border-radius: 3px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
}
.eh-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #4A5A6A;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.eh-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(74, 90, 106, 0.1);
  border-color: #C9DDEB;
}
.eh-card:hover::before { transform: scaleX(1); }
.eh-card.tan-top::before { background: #C8A27D; }
.eh-card-icon { font-size: 1.4rem; margin-bottom: 14px; display: block; }
.eh-card-title {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  margin-bottom: 9px;
  color: #333333;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.eh-card-body {
  font-size: 0.76rem;
  line-height: 1.7;
  color: #555555;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* ══════════════════════════════════════════════════════════
   SUPPLIER TIERS
   ══════════════════════════════════════════════════════════ */
.eh-tiers-section {
  background: #F7F6F2;
  padding: 88px 6%;
}
.eh-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.eh-tier {
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid #dddbd4;
  transition: transform 0.25s, box-shadow 0.25s;
}
.eh-tier:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}
.eh-tier-head { padding: 24px 24px 16px; }
.eh-tier-name {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.eh-tier-price {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.eh-tier-price span { font-size: 0.72rem; font-weight: 400; opacity: 0.55; }
.eh-tier-save { font-size: 0.68rem; font-weight: 700; margin-top: 3px; opacity: 0.65; font-family: Verdana, Geneva, Tahoma, sans-serif; }
.eh-tier-body { padding: 0 24px 24px; }
.eh-tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.eh-tier-features li {
  font-size: 0.76rem;
  line-height: 1.55;
  padding-left: 14px;
  position: relative;
  color: #555555;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.eh-tier-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #c5c3bc;
}
/* Bronze */
.eh-tier-bronze .eh-tier-head {
  background: #fdf6ee;
  border-top: 3px solid #C8A27D;
}
.eh-tier-bronze .eh-tier-name { color: #7a5a35; }
/* Silver */
.eh-tier-silver .eh-tier-head {
  background: #f1f5f8;
  border-top: 3px solid #4A5A6A;
}
.eh-tier-silver .eh-tier-name { color: #4A5A6A; }
/* Gold */
.eh-tier-gold .eh-tier-head {
  background: #fefce8;
  border-top: 3px solid #b8960c;
}
.eh-tier-gold .eh-tier-name { color: #7a6000; }

/* ══════════════════════════════════════════════════════════
   MISSION BANNER — Dark steel background
   ══════════════════════════════════════════════════════════ */
.eh-mission {
  background: #4A5A6A !important;
  padding: 88px 6%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.eh-mission::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201, 221, 235, 0.1) 0%, transparent 70%);
}
.eh-mission-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.eh-mission-quote {
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 20px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.eh-mission-quote em { font-style: normal; color: #C9DDEB; }
.eh-mission-body {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* ══════════════════════════════════════════════════════════
   WOMEN IN CLEAN TECH — Dark steel-dark background
   ══════════════════════════════════════════════════════════ */
.eh-wit-section {
  background: #323f4b !important;
  position: relative;
  overflow: hidden;
}
.eh-wit-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(201, 221, 235, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 221, 235, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.eh-wit-glow {
  position: absolute;
  pointer-events: none;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 162, 125, 0.1) 0%, transparent 65%);
  bottom: -200px;
  right: -100px;
}

/* ══════════════════════════════════════════════════════════
   CSR STRIP
   ══════════════════════════════════════════════════════════ */
.eh-csr-strip {
  background: #F7F6F2;
  padding: 52px 6%;
  position: relative;
  z-index: 1;
}
.eh-csr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.eh-csr-card {
  background: #ffffff;
  border: 1px solid #dddbd4;
  border-radius: 3px;
  padding: 26px;
  border-top: 3px solid #C8A27D;
}
.eh-csr-icon { font-size: 1.3rem; margin-bottom: 12px; }
.eh-csr-title {
  font-weight: 700;
  font-size: 0.8rem;
  color: #333333;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.eh-csr-body {
  font-size: 0.76rem;
  color: #555555;
  line-height: 1.65;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* ══════════════════════════════════════════════════════════
   JOBS STRIP
   ══════════════════════════════════════════════════════════ */
.eh-jobs-strip {
  background: #e8f2f8 !important;
  padding: 88px 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ══════════════════════════════════════════════════════════
   CTA STRIP — Dark charcoal
   ══════════════════════════════════════════════════════════ */
.eh-cta-strip {
  background: #333333 !important;
  padding: 88px 6%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.eh-cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(74, 90, 106, 0.25) 0%, transparent 50%);
}
.eh-cta-inner { position: relative; z-index: 1; }
.eh-cta-h {
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 9px;
  line-height: 1.2;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.eh-cta-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.eh-cta-btns {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* ══════════════════════════════════════════════════════════
   FOOTER — Deepest navy
   ══════════════════════════════════════════════════════════ */
.eh-footer {
  background: #1e2830 !important;
  border-top: 1px solid rgba(201, 221, 235, 0.07);
  padding: 60px 6% 36px;
}
.eh-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}
.eh-footer-brand-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: #ffffff;
  display: block;
  margin-bottom: 10px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.eh-footer-brand-name span { color: #C9DDEB; }
.eh-footer-tagline {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.65;
  max-width: 230px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.eh-footer-col h4 {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 14px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.eh-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.eh-footer-col a {
  color: rgba(255, 255, 255, 0.4) !important;
  text-decoration: none !important;
  font-size: 0.72rem;
  transition: color 0.2s;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.eh-footer-col a:hover { color: #C9DDEB !important; }
.eh-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.eh-footer-legal {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.2);
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.eh-footer-legal a {
  color: rgba(255, 255, 255, 0.28) !important;
  text-decoration: none !important;
}
.eh-footer-legal a:hover { color: #C9DDEB !important; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .eh-split { grid-template-columns: 1fr !important; }
  .eh-split-img { min-height: 280px; }
  .eh-split-img .eh-img-ph { min-height: 280px; }
  .eh-cards-grid,
  .eh-tiers-grid,
  .eh-csr-grid { grid-template-columns: 1fr !important; }
  .eh-cta-strip,
  .eh-jobs-strip { grid-template-columns: 1fr !important; }
  .eh-footer-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 560px) {
  .eh-footer-grid { grid-template-columns: 1fr !important; }
}

/* ══════════════════════════════════════════════════════════
   ZOHO NATIVE BLOCKS — Button color overrides
   Agar Zoho ke apne buttons use kiye hain
   ══════════════════════════════════════════════════════════ */
[class*="zs-btn"],
[class*="zs-button"],
button.primary,
.btn-primary,
a.button {
  background-color: #4A5A6A !important;
  color: #ffffff !important;
  border-radius: 4px !important;
  font-family: Verdana, Geneva, Tahoma, sans-serif !important;
}
[class*="zs-btn"]:hover,
[class*="zs-button"]:hover {
  background-color: #323f4b !important;
}

/* Zoho section backgrounds */
[class*="zs-section"],
[class*="page-section"],
[class*="section-wrapper"] {
  background-color: #F7F6F2 !important;
}

/* Zoho heading text colors */
[class*="zs-title"],
[class*="zs-heading"],
[class*="section-title"] {
  color: #333333 !important;
  font-family: Verdana, Geneva, Tahoma, sans-serif !important;
}

</style>