/* ==========================================================================
   Saurabh Green Power — main stylesheet
   ========================================================================== */

:root {
  --green-dark: #104614;
  --green-mid: #1b6122;
  --green-darker: #0a330f;
  --green-light: #8bc63f;
  --green-light-hover: #9ed44f;
  --green-pale: #f3f8ee;
  --green-pale-2: #f6faf2;
  --green-pale-border: #e3ecda;
  --green-pale-border-2: #eaf1e3;
  --green-tint: #eaf7e3;
  --text-dark: #1c2b1c;
  --text-body: #4a5a4a;
  --text-muted: #5a6b5a;
  --text-faint: #9aab8a;
  --shadow-color: rgba(20, 60, 20, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: #ffffff;
  overflow-x: hidden;
}
img { max-width: 100%; }
a { text-decoration: none; }
button { font-family: inherit; }

@keyframes spinSlow { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.6; } 70% { transform: scale(1.7); opacity: 0; } 100% { transform: scale(1.7); opacity: 0; } }
@keyframes offerGlow { 0%, 100% { box-shadow: 0 0 0 0 rgba(139, 198, 63, 0.55); } 50% { box-shadow: 0 0 0 12px rgba(139, 198, 63, 0); } }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--green-dark);
  color: #eafbe7;
  font-size: 13.5px;
  font-weight: 500;
}
.topbar-inner {
  padding: 9px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-address { display: flex; align-items: center; gap: 8px; }
.topbar-right { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.topbar-link { display: flex; align-items: center; gap: 8px; color: #fff; font-weight: 600; }
.topbar-link.email { font-weight: 500; }
.lang-toggle { display: inline-flex; align-items: center; background: rgba(255, 255, 255, 0.12); border-radius: 30px; padding: 3px; gap: 2px; }
.lang-btn { border: none; cursor: pointer; font-family: inherit; font-weight: 600; font-size: 12.5px; padding: 5px 13px; border-radius: 30px; background: transparent; color: #eafbe7; }
.lang-btn.active { font-weight: 700; background: var(--green-light); color: #14431a; }

/* ---------- Header ---------- */
.site-header {
  background: #fff;
  box-shadow: 0 2px 14px rgba(20, 80, 30, 0.07);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 13px; }
.logo img { height: 56px; width: auto; flex-shrink: 0; display: block; }
.logo-text-1 { font-weight: 800; font-size: 25px; color: var(--green-dark); letter-spacing: 0.5px; line-height: 1; }
.logo-text-2 { font-weight: 700; font-size: 13.5px; color: #5e7a48; letter-spacing: 3.5px; line-height: 1; }
.logo-text-3 { font-weight: 600; font-size: 8px; color: var(--text-faint); letter-spacing: 2px; border-top: 1px solid #d7e6c9; margin-top: 3px; padding-top: 2px; line-height: 1; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { color: var(--text-dark); font-weight: 500; font-size: 15px; }
.main-nav a:hover { color: var(--green-dark); }
.main-nav a.active { color: var(--green-dark); font-weight: 600; padding-bottom: 4px; border-bottom: 2.5px solid var(--green-dark); }
.nav-services { position: relative; display: flex; align-items: center; gap: 5px; cursor: pointer; font-weight: 500; font-size: 15px; }
.nav-services a { color: var(--text-dark); }

.menu-btn {
  display: none;
  background: var(--green-dark);
  border: none;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.mobile-menu { display: none; background: #fff; border-top: 1px solid #eef3e9; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 13px 24px; color: var(--text-dark); font-weight: 500; border-bottom: 1px solid #eef3e9; }
.mobile-menu a.active { color: var(--green-dark); font-weight: 600; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 16px 30px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}
.btn-primary { background: var(--green-dark); color: #fff; box-shadow: 0 10px 24px rgba(31, 122, 30, 0.32); }
.btn-primary:hover { background: var(--green-darker); }
.btn-outline { background: #fff; color: var(--green-dark); border: 2px solid var(--green-dark); }
.btn-outline:hover { background: #f0f8eb; }
.btn-lime { background: var(--green-light); color: #14431a; font-weight: 700; }
.btn-lime:hover { background: var(--green-light-hover); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(105deg, #eaf4ff 0%, #fbf3df 42%, #f0f7e6 70%, #dff0cf 100%);
  overflow: hidden;
}
.hero-bg-1 { position: absolute; inset: 0; background: radial-gradient(900px 500px at 78% 30%, rgba(255, 221, 140, 0.55), transparent 60%), radial-gradient(700px 600px at 95% 85%, rgba(120, 180, 70, 0.35), transparent 60%); }
.hero-bg-2 { position: absolute; left: 0; top: 0; bottom: 0; width: 58%; background: linear-gradient(90deg, rgba(255, 255, 255, 0.82) 30%, rgba(255, 255, 255, 0) 100%); }
.hero-grid {
  position: relative;
  padding: 56px 24px 70px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: var(--green-dark);
  color: #fff;
  border-radius: 30px;
  padding: 9px 20px 9px 11px;
  box-shadow: 0 8px 22px rgba(31, 122, 30, 0.28);
}
.hero-badge .dot { width: 26px; height: 26px; border-radius: 50%; background: #fff; display: inline-flex; align-items: center; justify-content: center; }
.hero-badge .label { font-weight: 600; font-size: 13px; letter-spacing: 1px; }
.hero-title {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-weight: 800;
  font-size: 70px;
  line-height: 1.12;
  margin: 22px 0 0;
  letter-spacing: -1px;
}
.hero-title span { display: block; }
.hero-title .line-1 { color: var(--green-dark); }
.hero-title .line-2 { color: var(--green-light); }
.hero-sub { font-size: 21px; font-weight: 500; color: #2f4030; margin: 18px 0 26px; }
.hero-features { display: flex; gap: 30px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-feature { display: flex; align-items: center; gap: 11px; }
.hero-feature .icon { width: 44px; height: 44px; border-radius: 50%; background: var(--green-dark); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-feature .text { line-height: 1.25; }
.hero-feature .text b { font-size: 15px; }
.hero-feature .text span { font-size: 13px; color: var(--text-muted); }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual { position: relative; height: 440px; }
.hero-visual-frame { position: absolute; inset: 0; border-radius: 20px; overflow: hidden; box-shadow: 0 26px 60px rgba(20, 60, 20, 0.22); }
.hero-visual-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-visual-tag { position: absolute; left: 5%; top: 6%; font-size: 11px; font-weight: 600; color: rgba(255, 255, 255, 0.95); letter-spacing: 1px; text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4); }
.go-solar-badge {
  position: absolute; right: -6px; bottom: 24px;
  width: 132px; height: 132px; border-radius: 50%;
  background: #fff; box-shadow: 0 14px 30px rgba(20, 60, 20, 0.22);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  overflow: hidden;
}
.go-solar-badge .watermark { position: absolute; inset: 0; margin: auto; width: 122px; height: 122px; object-fit: contain; opacity: 0.6; pointer-events: none; }
.go-solar-badge .icon-circle { position: relative; width: 38px; height: 38px; border-radius: 50%; background: var(--green-tint); display: inline-flex; align-items: center; justify-content: center; }
.go-solar-badge .label { position: relative; font-weight: 700; font-size: 14px; color: #000; line-height: 1.15; text-align: center; top: 14px; left: 22px; }

/* ---------- Services strip ---------- */
.services-strip-wrap { position: relative; z-index: 20; margin: -55px auto 0; padding: 0 24px; max-width: 1240px; }
.services-strip {
  background: #fff; border-radius: 16px; box-shadow: 0 20px 50px rgba(20, 60, 20, 0.16);
  padding: 22px 10px; display: grid; grid-template-columns: repeat(6, 1fr);
}
.strip-item { display: flex; align-items: center; gap: 12px; padding: 6px 18px; border-right: 1px solid #e9efe3; }
.strip-item:last-child { border-right: none; }
.strip-item span { font-weight: 700; font-size: 13.5px; line-height: 1.25; }

/* ---------- Features bar ---------- */
.features-bar { position: relative; z-index: 1; background: linear-gradient(90deg, var(--green-dark), var(--green-mid)); padding: 78px 24px 38px; margin-top: -45px; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.feature-card { display: flex; align-items: center; gap: 16px; padding: 10px 26px; border-right: 1px solid rgba(255, 255, 255, 0.18); }
.feature-card:last-child { border-right: none; }
.feature-card b { font-size: 17px; color: #fff; }
.feature-card span.desc { font-size: 13.5px; color: #cfe9c4; display: block; }

/* ---------- Generic section ---------- */
.section { padding: 86px 24px; background: #fff; }
.section.pale { background: var(--green-pale); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 50px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--green-dark); font-weight: 700; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; }
.eyebrow .bar { width: 28px; height: 2px; background: var(--green-light); display: inline-block; }
.section-head h2 { font-size: 40px; font-weight: 700; margin: 14px 0 12px; }
.section-head p { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image { height: 420px; border-radius: 18px; box-shadow: 0 22px 50px rgba(20, 60, 20, 0.18); position: relative; overflow: hidden; }
.about-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.about-badge { position: absolute; right: -14px; bottom: -22px; background: var(--green-dark); color: #fff; border-radius: 14px; padding: 20px 26px; box-shadow: 0 14px 30px rgba(20, 60, 20, 0.25); text-align: center; }
.about-badge .num { font-size: 34px; font-weight: 800; line-height: 1; }
.about-badge .label { font-size: 13px; color: #d6efca; margin-top: 4px; }
.about-copy .eyebrow { margin-bottom: 0; }
.about-copy h2 { font-size: 40px; font-weight: 700; line-height: 1.2; margin: 16px 0 18px; }
.about-copy h2 span { color: var(--green-dark); }
.about-copy p { font-size: 16px; line-height: 1.75; color: var(--text-body); margin: 0 0 18px; }
.about-quote { border-left: 4px solid var(--green-light); background: var(--green-pale); padding: 16px 22px; border-radius: 0 12px 12px 0; margin: 0 0 22px; }
.about-quote p { font-size: 16px; line-height: 1.7; color: #2f4030; font-style: italic; margin: 0; }
.about-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 26px; margin-bottom: 30px; }
.about-checklist div { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; }

.pillars-head { text-align: center; margin-bottom: 40px; }
.pillars-head h3 { font-size: 30px; font-weight: 700; margin: 0; }
.pillars-head p { font-size: 16px; color: var(--text-muted); margin: 12px 0 0; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pillar-card { background: var(--green-pale); border: 1px solid var(--green-pale-border); border-radius: 16px; padding: 32px 28px; }
.pillar-card .icon { width: 58px; height: 58px; border-radius: 14px; background: var(--green-dark); display: inline-flex; align-items: center; justify-content: center; }
.pillar-card h4 { font-size: 19px; font-weight: 700; margin: 18px 0 8px; }
.pillar-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.7; margin: 0; }

.mission-vision-grid { margin: 34px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.mission-card { background: linear-gradient(150deg, var(--green-dark), var(--green-mid)); border-radius: 18px; padding: 38px; color: #fff; }
.mission-card .label { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #a9e07f; }
.mission-card p { font-size: 20px; line-height: 1.55; font-weight: 500; margin: 14px 0 0; }
.vision-card { background: var(--green-pale); border: 1px solid var(--green-pale-border); border-radius: 18px; padding: 38px; }
.vision-card .label { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green-dark); }
.vision-card p { font-size: 17px; line-height: 1.65; color: #2f4030; margin: 14px 0 0; }
.vision-card b { color: var(--green-dark); }

.closing-statement { max-width: 1000px; margin: 40px auto 0; text-align: center; }
.closing-statement p { font-size: 22px; line-height: 1.55; font-weight: 500; color: var(--text-dark); margin: 12px 0 0; }
.closing-statement span { color: var(--green-dark); }

/* ---------- Services grid ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card { background: #fff; border-radius: 16px; padding: 32px 28px; box-shadow: 0 12px 30px rgba(20, 60, 20, 0.07); border: 1px solid var(--green-pale-border-2); transition: box-shadow .2s, transform .2s; }
.service-card:hover { box-shadow: 0 18px 40px rgba(20, 60, 20, 0.14); transform: translateY(-4px); }
.service-card .icon { width: 62px; height: 62px; border-radius: 14px; background: var(--green-tint); display: inline-flex; align-items: center; justify-content: center; }
.service-card h3 { font-size: 20px; font-weight: 700; margin: 20px 0 10px; }
.service-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ---------- How it works ---------- */
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; position: relative; }
.process-connector { position: absolute; top: 34px; left: 10%; right: 10%; height: 2px; background: repeating-linear-gradient(90deg, #cfe0bd 0 10px, transparent 10px 20px); z-index: 0; }
.process-step { position: relative; z-index: 1; text-align: center; }
.process-step .num { width: 68px; height: 68px; border-radius: 50%; background: var(--green-dark); color: #fff; font-size: 24px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; box-shadow: 0 10px 22px rgba(16, 70, 20, 0.25); }
.process-step.final .num { background: var(--green-light); color: #14431a; box-shadow: 0 10px 22px rgba(139, 198, 63, 0.4); }
.process-step h3 { font-size: 17px; font-weight: 700; margin: 0 0 6px; }
.process-step p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ---------- Brands ---------- */
.brands-section { text-align: center; }
.brands-section h3 { font-size: 26px; font-weight: 700; margin: 0 0 8px; }
.brands-section > p { font-size: 15px; color: var(--text-muted); margin: 0 0 34px; }
.brands-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.brand-card { background: #fff; border: 1px solid var(--green-pale-border); border-radius: 12px; padding: 20px 12px; display: flex; align-items: center; justify-content: center; gap: 7px; min-height: 74px; }
.brand-note { font-size: 12px; color: var(--text-faint); margin: 22px 0 0; }

/* ---------- Projects ---------- */
.projects-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 44px; }
.projects-head h2 { font-size: 40px; font-weight: 700; margin: 14px 0 0; }
.projects-head p { font-size: 16px; color: var(--text-muted); max-width: 420px; line-height: 1.7; margin: 0; }
.project-featured {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 0; border-radius: 20px; overflow: hidden;
  box-shadow: 0 18px 44px rgba(20, 60, 20, 0.14); border: 1px solid var(--green-pale-border-2); background: #fff;
}
.project-featured-image { position: relative; min-height: 380px; }
.project-featured-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.project-tag { position: absolute; top: 18px; left: 18px; background: var(--green-light); color: #14431a; font-size: 11.5px; font-weight: 700; padding: 5px 12px; border-radius: 20px; letter-spacing: 0.5px; }
.project-featured-body { padding: 44px 42px; display: flex; flex-direction: column; justify-content: center; }
.project-loc { display: inline-flex; align-items: center; gap: 8px; color: var(--green-dark); font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.project-featured-body h3 { font-size: 28px; font-weight: 700; margin: 0 0 14px; line-height: 1.25; }
.project-featured-body p { font-size: 15.5px; color: var(--text-muted); line-height: 1.75; margin: 0 0 24px; }
.project-stats { display: flex; gap: 30px; flex-wrap: wrap; }
.project-stats > div { border-left: 1px solid var(--green-pale-border-2); padding-left: 30px; }
.project-stats > div:first-child { border-left: none; padding-left: 0; }
.project-stats .val { font-size: 22px; font-weight: 800; color: var(--green-dark); }
.project-stats .lbl { font-size: 13px; color: var(--text-muted); }

.projects-more { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
.project-card-sm { border-radius: 18px; overflow: hidden; box-shadow: 0 12px 30px rgba(20, 60, 20, 0.1); border: 1px solid var(--green-pale-border-2); background: #fff; display: flex; flex-direction: column; }
.project-card-sm-media { position: relative; height: 210px; }
.project-card-sm-media.grad-1 { background: linear-gradient(160deg, #bfe6c2, #e6f6d8 45%, #cfe39a 70%, #4f8a32); }
.project-card-sm-media.grad-2 { background: linear-gradient(160deg, #a9d8ff, #dcefff 45%, #f0e2a6 70%, #5f9a3a); }
.kw-tag { position: absolute; top: 16px; right: 16px; background: rgba(16, 70, 20, 0.9); color: #fff; font-size: 13px; font-weight: 700; padding: 5px 12px; border-radius: 20px; }
.project-card-sm-body { padding: 24px 26px; }
.project-card-sm-body h3 { font-size: 20px; font-weight: 700; margin: 0 0 6px; }
.project-card-sm-body p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin: 0; }
.project-card-sm-body p b { color: #2f4030; }

/* ---------- Subsidy ---------- */
.subsidy-section { padding: 86px 24px; background: linear-gradient(120deg, var(--green-dark), var(--green-mid)); }
.subsidy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.subsidy-grid .eyebrow { color: var(--green-light); }
.subsidy-grid h2 { font-size: 40px; font-weight: 700; color: #fff; line-height: 1.2; margin: 16px 0 18px; }
.subsidy-grid > div:first-child > p { font-size: 16px; line-height: 1.75; color: #d6efca; margin: 0 0 28px; }
.subsidy-grid > div:first-child > p b { color: #fff; }
.subsidy-benefits { display: grid; gap: 14px; margin-bottom: 30px; }
.subsidy-benefit { display: flex; gap: 14px; align-items: flex-start; background: rgba(255, 255, 255, 0.08); border-radius: 12px; padding: 16px 18px; }
.subsidy-benefit .icon { width: 40px; height: 40px; border-radius: 50%; background: var(--green-light); color: #14431a; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.subsidy-benefit b { font-size: 15.5px; color: #fff; }
.subsidy-benefit span { font-size: 13.5px; color: #cfe9c4; }
.subsidy-card { background: #fff; border-radius: 20px; padding: 36px; box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25); }
.subsidy-card h3 { font-size: 22px; font-weight: 700; margin: 0 0 6px; }
.subsidy-card > p { font-size: 13.5px; color: var(--text-muted); margin: 0 0 22px; }
.subsidy-rows { display: grid; gap: 14px; }
.subsidy-row { display: flex; justify-content: space-between; align-items: center; padding: 16px 18px; border: 1px solid #e7efe0; border-radius: 12px; }
.subsidy-row.highlight { border: 1.5px solid var(--green-light); background: #f3faec; }
.subsidy-row .kw { font-size: 16px; font-weight: 700; }
.subsidy-row .units { font-size: 12.5px; color: var(--text-muted); }
.subsidy-row .amount { color: var(--green-dark); font-weight: 800; font-size: 17px; text-align: right; }
.subsidy-row .amount-lbl { font-size: 12px; color: var(--text-muted); text-align: right; }
.subsidy-footnote { font-size: 11.5px; color: var(--text-faint); margin: 18px 0 0; line-height: 1.5; }

/* ---------- Calculator ---------- */
.calc-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 34px; align-items: stretch; }
.calc-input-card { background: var(--green-pale); border: 1px solid var(--green-pale-border); border-radius: 20px; padding: 38px; }
.calc-input-card label { display: block; font-size: 14px; font-weight: 600; color: #2f4030; margin-bottom: 6px; }
.bill-display { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.bill-display .rupee { font-size: 34px; font-weight: 800; color: var(--green-dark); }
.bill-display .amount { font-size: 46px; font-weight: 800; color: var(--green-dark); line-height: 1; }
.bill-display .per { font-size: 15px; color: var(--text-muted); margin-left: 6px; }
.bill-slider { width: 100%; margin: 18px 0 8px; accent-color: var(--green-dark); height: 6px; cursor: pointer; }
.bill-range-labels { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--text-faint); margin-bottom: 26px; }
.calc-input-card .quick-label { font-size: 13px; font-weight: 600; color: #2f4030; margin-bottom: 12px; }
.chip-row { display: flex; gap: 10px; flex-wrap: wrap; }
.chip { border: 1.5px solid #cfe0bd; background: #fff; color: var(--green-dark); font-weight: 600; font-size: 13.5px; padding: 9px 16px; border-radius: 30px; cursor: pointer; }
.chip:hover, .chip.active { border-color: var(--green-dark); }
.calc-summary { margin-top: 30px; padding-top: 26px; border-top: 1px dashed #cfe0bd; display: grid; gap: 14px; }
.calc-summary-row { display: flex; justify-content: space-between; align-items: center; }
.calc-summary-row span { font-size: 14.5px; color: var(--text-muted); }
.calc-summary-row b { font-size: 15.5px; color: #2f4030; }

.calc-result-card {
  background: linear-gradient(150deg, var(--green-dark), var(--green-mid)); border-radius: 20px; padding: 38px; color: #fff;
  box-shadow: 0 24px 60px rgba(16, 70, 20, 0.28); position: relative; overflow: hidden;
}
.calc-result-card .blob { position: absolute; right: -40px; top: -40px; width: 180px; height: 180px; border-radius: 50%; background: rgba(139, 198, 63, 0.16); }
.calc-result-inner { position: relative; }
.calc-result-inner .label { font-size: 13.5px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: #a9e07f; }
.calc-kw { display: flex; align-items: baseline; gap: 10px; margin: 8px 0 4px; }
.calc-kw .num { font-size: 68px; font-weight: 800; line-height: 1; }
.calc-kw .unit { font-size: 26px; font-weight: 700; color: #d6efca; }
.calc-result-inner .rec-type { font-size: 14px; color: #cfe9c4; margin-bottom: 26px; }
.calc-cost-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 22px; }
.calc-cost-box { background: rgba(255, 255, 255, 0.09); border-radius: 14px; padding: 18px; }
.calc-cost-box.subsidy { background: rgba(139, 198, 63, 0.22); }
.calc-cost-box .cap { font-size: 12.5px; color: #cfe9c4; margin-bottom: 4px; }
.calc-cost-box.subsidy .cap { color: #dff0cf; }
.calc-cost-box .val { font-size: 22px; font-weight: 800; }
.calc-cost-box.subsidy .val { color: #c6f094; }
.calc-net-cost { background: #fff; color: var(--green-dark); border-radius: 14px; padding: 20px 22px; display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.calc-net-cost .cap { font-size: 12.5px; color: var(--text-muted); }
.calc-net-cost .sub { font-size: 12px; color: var(--text-faint); }
.calc-net-cost .val { font-size: 30px; font-weight: 800; }
.calc-savings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; text-align: center; }
.calc-savings-box { background: rgba(255, 255, 255, 0.09); border-radius: 12px; padding: 14px 8px; }
.calc-savings-box .val { font-size: 20px; font-weight: 800; color: #c6f094; }
.calc-savings-box .lbl { font-size: 11.5px; color: #cfe9c4; margin-top: 2px; }
.calc-cta { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 24px; padding: 15px; border-radius: 10px; }
.calc-footnote { text-align: center; font-size: 12px; color: var(--text-faint); margin: 22px auto 0; max-width: 720px; line-height: 1.6; }

/* ---------- Financing ---------- */
.financing-box { background: var(--green-pale); border: 1px solid var(--green-pale-border); border-radius: 22px; padding: 48px; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 44px; align-items: center; }
.financing-box h2 { font-size: 36px; font-weight: 700; line-height: 1.2; margin: 14px 0 14px; }
.financing-box h2 span { color: var(--green-dark); }
.loan-badge { display: inline-flex; align-items: center; gap: 11px; background: var(--green-dark); color: #fff; font-weight: 800; font-size: 20px; letter-spacing: 1px; padding: 13px 26px; border-radius: 10px; margin: 0 0 22px; animation: offerGlow 2.2s ease-out infinite; }
.loan-badge .check { width: 30px; height: 30px; border-radius: 50%; background: var(--green-light); display: inline-flex; align-items: center; justify-content: center; }
.financing-box > div:first-child > p { font-size: 16px; line-height: 1.75; color: var(--text-body); margin: 0 0 26px; }
.financing-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 26px; margin-bottom: 30px; }
.financing-checklist div { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; }
.financing-card { background: #fff; border-radius: 18px; padding: 34px; box-shadow: 0 16px 40px rgba(20, 60, 20, 0.1); text-align: center; }
.financing-card .icon { width: 64px; height: 64px; border-radius: 16px; background: var(--green-tint); display: inline-flex; align-items: center; justify-content: center; }
.financing-card .cap { font-size: 14px; color: var(--text-muted); margin: 18px 0 2px; }
.financing-amount { display: flex; align-items: baseline; justify-content: center; gap: 4px; }
.financing-amount .rupee { font-size: 26px; font-weight: 800; color: var(--green-dark); }
.financing-amount .num { font-size: 46px; font-weight: 800; color: var(--green-dark); line-height: 1; }
.financing-card .per { font-size: 14px; color: var(--text-muted); margin-top: 2px; }
.financing-tenure { border-top: 1px dashed #cfe0bd; margin: 22px 0; padding-top: 18px; font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.financing-tenure b { color: var(--green-dark); }
.financing-partner { display: inline-flex; align-items: center; gap: 8px; background: var(--green-pale); border-radius: 30px; padding: 8px 16px; font-size: 12.5px; font-weight: 600; color: var(--green-dark); }
.financing-footnote { text-align: center; font-size: 12px; color: var(--text-faint); margin: 20px auto 0; max-width: 720px; line-height: 1.6; }

/* ---------- Stats ---------- */
.stats-section { padding: 64px 24px; background: var(--green-pale); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat-item { text-align: center; }
.stat-item.bordered { border-left: 1px solid #d9e6cd; }
.stat-item .num { font-size: 48px; font-weight: 800; color: var(--green-dark); }
.stat-item .lbl { font-size: 15px; color: var(--text-body); font-weight: 500; }

/* ---------- Testimonials ---------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial-card { background: var(--green-pale-2); border-radius: 16px; padding: 30px; border: 1px solid var(--green-pale-border-2); }
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial-card > p { font-size: 15px; line-height: 1.75; color: #3a4a3a; margin: 0 0 22px; }
.testimonial-person { display: flex; align-items: center; gap: 13px; }
.avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--green-dark), var(--green-light)); color: #fff; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testimonial-person b { font-size: 15px; }
.testimonial-person span { font-size: 13px; color: var(--text-muted); }

/* ---------- FAQ ---------- */
.faq-section .container { max-width: 900px; }
.faq-list { display: grid; gap: 14px; }
.faq-item { background: var(--green-pale-2); border: 1px solid var(--green-pale-border); border-radius: 14px; overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 24px; font-family: inherit; }
.faq-question span.q { font-size: 16.5px; font-weight: 600; color: var(--text-dark); }
.faq-icon { width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%; background: var(--green-tint); color: var(--green-dark); display: inline-flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; line-height: 1; }
.faq-item.open .faq-icon { background: var(--green-dark); color: #fff; }
.faq-answer { overflow: hidden; max-height: 0; opacity: 0; transition: max-height .3s ease, opacity .3s ease; }
.faq-item.open .faq-answer { max-height: 320px; opacity: 1; }
.faq-answer p { font-size: 15px; line-height: 1.75; color: var(--text-body); margin: 0; padding: 0 24px 22px; }
.faq-footer { text-align: center; margin-top: 34px; }
.faq-footer span { font-size: 15px; color: var(--text-muted); }
.faq-footer a { display: inline-flex; align-items: center; gap: 8px; margin-left: 10px; color: var(--green-dark); font-weight: 700; }
.faq-footer a:hover { text-decoration: underline; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 20px; max-width: 1100px; margin: 0 auto; }
.team-card { background: var(--green-pale-2); border: 1px solid var(--green-pale-border-2); border-radius: 16px; padding: 22px 18px; text-align: center; }
.team-photo { width: 140px; height: 140px; margin: 0 auto 16px; border-radius: 50%; overflow: hidden; box-shadow: 0 10px 26px rgba(20, 60, 20, 0.14); border: 4px solid #fff; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-card h3 { font-size: 18px; font-weight: 700; margin: 0 0 3px; }
.team-role { font-size: 13px; color: var(--green-dark); font-weight: 600; }
.team-credentials { font-size: 11.5px; color: #7a8a76; margin-top: 5px; line-height: 1.45; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: stretch; }
.contact-grid h2 { font-size: 40px; font-weight: 700; margin: 14px 0 14px; }
.contact-grid > div:first-child > p { font-size: 16px; color: var(--text-muted); line-height: 1.75; margin: 0 0 30px; }
.contact-details { display: grid; gap: 16px; margin-bottom: 30px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-item .icon { width: 50px; height: 50px; border-radius: 12px; background: var(--green-dark); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item .cap { font-size: 13px; color: var(--text-muted); }
.contact-item b { font-size: 15.5px; }
.map-frame { height: 240px; border-radius: 16px; overflow: hidden; box-shadow: 0 12px 30px rgba(20, 60, 20, 0.1); position: relative; }
.map-frame iframe { border: 0; width: 100%; height: 100%; display: block; }
.directions-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; color: var(--green-dark); font-weight: 600; font-size: 14px; }
.directions-link:hover { text-decoration: underline; }

.contact-form-card { background: #fff; border-radius: 20px; padding: 38px; box-shadow: 0 20px 50px rgba(20, 60, 20, 0.12); }
.contact-form-card h3 { font-size: 24px; font-weight: 700; margin: 0 0 22px; }
.form-fields { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; }
.form-group input, .form-group select {
  width: 100%; padding: 13px 15px; border: 1.5px solid #dde7d4; border-radius: 10px;
  font-size: 14.5px; font-family: inherit; outline: none; background: #fff;
}
.form-group input:focus, .form-group select:focus { border-color: var(--green-dark); }
.form-submit { width: 100%; background: var(--green-dark); color: #fff; border: none; border-radius: 10px; padding: 16px; font-size: 16px; font-weight: 600; cursor: pointer; box-shadow: 0 10px 24px rgba(31, 122, 30, 0.3); }
.form-submit:hover { background: var(--green-darker); }
.form-privacy { font-size: 12px; color: var(--text-faint); text-align: center; margin: 2px 0 0; }
.thank-you { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; height: 100%; min-height: 420px; }
.thank-you .icon { width: 76px; height: 76px; border-radius: 50%; background: var(--green-tint); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.thank-you h3 { font-size: 24px; font-weight: 700; margin: 0 0 10px; }
.thank-you p { font-size: 15px; color: var(--text-muted); line-height: 1.7; max-width: 320px; }
.contact-form-card.hidden { display: none; }

/* ---------- Footer ---------- */
.site-footer { background: #0c3a12; color: #cfe0c4; padding: 64px 24px 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer-logo { background: #fff; border-radius: 12px; padding: 12px 16px; display: inline-flex; margin-bottom: 18px; }
.footer-logo img { height: 72px; width: auto; display: block; }
.footer-col p { font-size: 14px; line-height: 1.75; color: #b8cbac; margin: 0 0 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255, 255, 255, 0.1); display: inline-flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--green-light); }
.footer-col h4 { color: #fff; font-size: 16px; font-weight: 700; margin: 0 0 18px; }
.footer-links { display: grid; gap: 11px; font-size: 14px; }
.footer-links a { color: #b8cbac; }
.footer-links a:hover { color: var(--green-light); }
.footer-contact { display: grid; gap: 14px; font-size: 14px; }
.footer-contact-item { display: flex; gap: 11px; color: #b8cbac; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); }
.footer-bottom-inner { padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13px; color: #9fb593; }
.footer-bottom-inner a { color: var(--green-light); font-weight: 600; }

/* ---------- WhatsApp button ---------- */
.whatsapp-btn { position: fixed; right: 22px; bottom: 22px; z-index: 200; display: flex; align-items: center; gap: 12px; font-family: 'Noto Sans Devanagari', sans-serif; }
.whatsapp-btn .bubble { max-width: 250px; background: #fff; color: var(--green-dark); font-weight: 600; font-size: 14px; line-height: 1.4; padding: 12px 16px; border-radius: 14px 14px 4px 14px; box-shadow: 0 10px 30px rgba(20, 60, 20, 0.22); border: 1px solid var(--green-pale-border-2); }
.whatsapp-btn .circle { position: relative; width: 62px; height: 62px; border-radius: 50%; background: #25D366; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5); flex-shrink: 0; }
.whatsapp-btn .pulse { position: absolute; inset: 0; border-radius: 50%; background: #25D366; animation: waPulse 2s ease-out infinite; z-index: -1; }

/* ---------- Gallery page ---------- */
.gallery-header-inner { padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.gallery-hero { background: linear-gradient(120deg, var(--green-dark), var(--green-mid)); padding: 62px 24px; text-align: center; color: #fff; }
.gallery-hero .eyebrow { color: #a9e07f; justify-content: center; }
.gallery-hero h1 { font-size: 46px; font-weight: 800; margin: 16px 0 8px; }
.gallery-hero p { font-size: 17px; color: #d6efca; max-width: 620px; margin: 0 auto; line-height: 1.6; }
.gallery-section { padding: 64px 24px 86px; background: var(--green-pale); }
.gallery-grid { column-count: 3; column-gap: 22px; }
.gallery-tile { break-inside: avoid; margin-bottom: 22px; border-radius: 16px; overflow: hidden; box-shadow: 0 12px 30px rgba(20, 60, 20, 0.12); background: #fff; }
.gallery-tile .media { position: relative; width: 100%; }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-note { text-align: center; font-size: 13px; color: var(--text-faint); margin: 10px auto 0; max-width: 620px; }
.gallery-cta-footer { background: #0c4d18; color: #cfe0c4; padding: 44px 24px; text-align: center; }
.gallery-cta-footer .heading { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.gallery-cta-footer p { font-size: 14.5px; color: #b8cbac; margin: 0 0 20px; }
.gallery-cta-btns { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.gallery-cta-btns .btn-ghost { background: rgba(255, 255, 255, 0.12); color: #fff; font-weight: 600; padding: 13px 26px; border-radius: 8px; display: inline-flex; align-items: center; gap: 9px; }
.gallery-back-link { display: inline-flex; align-items: center; gap: 9px; color: var(--green-dark); font-weight: 600; font-size: 15px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .menu-btn { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 320px; margin-top: 24px; }
  .hero-title { font-size: 48px; }
  .services-strip { grid-template-columns: repeat(3, 1fr); }
  .strip-item { border-right: none !important; border-bottom: 1px solid #e9efe3; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card { border-right: none !important; border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
  .about-grid, .subsidy-grid, .calc-grid, .financing-box, .contact-grid { grid-template-columns: 1fr; }
  .pillars-grid, .services-grid, .brands-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-connector { display: none; }
  .mission-vision-grid, .projects-more, .testimonials-grid { grid-template-columns: 1fr; }
  .project-featured { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .stat-item.bordered { border-left: none; border-top: 1px solid #d9e6cd; padding-top: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { column-count: 2; }
}

@media (max-width: 640px) {
  .topbar-address { display: none; }
  .topbar-link.email { display: none; }
  .topbar-right { width: 100%; justify-content: space-between; gap: 10px; }
  .hero-title { font-size: 36px; }
  .hero-sub { font-size: 17px; }
  .services-strip, .features-grid, .pillars-grid, .services-grid, .brands-grid, .process-grid, .about-checklist, .form-row, .financing-checklist { grid-template-columns: 1fr; }
  .feature-card { justify-content: flex-start; padding: 12px 20px; }
  .section, .section.pale { padding: 56px 20px; }
  .container { padding: 0 16px; }
  body { overflow-wrap: break-word; }
  .section-head h2, .about-copy h2 { font-size: 30px; }
  .footer-grid { grid-template-columns: 1fr; }
  .whatsapp-btn .bubble { display: none; }
  .gallery-grid { column-count: 1; }
}
