:root {
  --bg: #f3f6fb;
  --surface: #ffffff;
  --surface-alt: #edf2f8;
  --surface-deep: #0d2f57;
  --surface-dark: #0b2240;
  --card: rgba(255, 255, 255, 0.94);
  --text: #1a2d45;
  --text-soft: #5f7186;
  --text-light: #f2f7ff;
  --line: rgba(16, 36, 59, 0.14);
  --primary: #f47920;
  --primary-deep: #e06800;
  --secondary: #1a4f8b;
  --secondary-soft: #eaf2fb;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --radius-lg: 4px;
  --radius-md: 4px;
  --radius-sm: 3px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Lato", "Nunito Sans", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    linear-gradient(rgba(238, 243, 249, 0.88), rgba(238, 243, 249, 0.92)),
    url("images/solar-panels-green-energy-concept.jpg") center / cover fixed no-repeat;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
li,
input,
select,
textarea,
button {
  font-size: 1rem;
  line-height: 1.7;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.12;
  letter-spacing: -0.015em;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

/* Top bar */
.top-bar {
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  font-size: 0.85rem;
  color: #555;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-item {
  color: #555;
}

.top-bar-item i {
  margin-right: 4px;
  color: #888;
}

.top-bar-divider {
  color: #ccc;
}

.button-cta-top {
  display: inline-block;
  padding: 6px 18px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  border: 2px solid var(--primary);
  border-radius: 3px;
  text-transform: none;
  transition: background 0.2s;
}

.button-cta-top:hover {
  background: var(--primary-deep);
  border-color: var(--primary-deep);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #d8dde3;
  border-radius: 8px;
  margin: 0.5rem auto;
  max-width: var(--container);
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.6rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.site-header .brand {
  gap: 0;
}

.brand-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 4px;
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
}

.site-header .brand-logo {
  width: 100px;
  height: 100px;
}

.brand-text {
  display: grid;
  gap: 0.15rem;
}

.brand-text strong {
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
}

.brand-text small {
  color: var(--text-soft);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  flex: 1;
  flex-wrap: wrap;
  gap: 0.2rem;
}

.site-nav a {
  color: #333;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  padding: 0.6rem 0.9rem;
  border-bottom: 3px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--secondary);
  border-color: var(--primary);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.7rem 1.2rem;
  border-radius: 3px;
  border: 1px solid transparent;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  opacity: 0.9;
}

.button-primary {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.button-secondary {
  background: #fff;
  border-color: #ccc;
  color: var(--text);
}

.button-light {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-light);
}

.button-secondary-dark {
  background: rgba(255, 255, 255, 0.88);
  color: var(--surface-dark);
}

.button-full {
  width: 100%;
}

.nav-toggle,
.menu-button {
  display: none;
}

.hero-section,
.page-hero {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.hero-section::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.hero-grid,
.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 2rem;
  align-items: center;
  padding: 3rem 0 2.5rem;
}

.hero-copy,
.page-hero-grid > div:first-child {
  display: grid;
  gap: 1.2rem;
}

.hero-grid-full {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: center;
  gap: 2rem;
}

.hero-grid-full .hero-copy h1 {
  max-width: 13ch;
  font-size: clamp(2.5rem, 4.8vw, 5rem);
}

.hero-grid-full .hero-copy,
.hero-grid-full .hero-copy h1,
.hero-grid-full .hero-copy .hero-lead,
.hero-grid-full .hero-copy .hero-points,
.hero-grid-full .hero-copy .hero-actions,
.hero-grid-full .hero-copy .eyebrow {
  font-family: "Lato", sans-serif;
}

.hero-grid-full .hero-panel {
  width: 100%;
  max-width: 520px;
  justify-self: end;
}

/* Hero ATF image */
.hero-atf-image {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}

/* Rupee zero headline */
.hero-rupee-line {
  font-family: "Lato", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--secondary);
  margin-bottom: 0.2rem;
  line-height: 1.4;
}

.rupee-zero {
  font-family: "Lato", sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  color: #1a2d45;
  vertical-align: middle;
  line-height: 1;
}

.asterisk {
  font-size: 1.2rem;
  vertical-align: super;
  color: #1a2d45;
}

/* CTA orange button */
.button-cta-orange {
  display: inline-block;
  padding: 14px 36px;
  background: var(--primary);
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.button-cta-orange:hover {
  background: var(--primary-deep);
}

/* Trust badges */
.trust-badges {
  display: flex;
  gap: 12px;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  min-width: 130px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.trust-badge-label {
  font-size: 0.78rem;
  color: #777;
  line-height: 1.3;
}

.trust-badge-number {
  font-size: 1.6rem;
  color: var(--secondary);
  line-height: 1.2;
}

.trust-badge-google {
  font-size: 1.1rem;
  background: linear-gradient(90deg, #4285F4, #EA4335, #FBBC05, #34A853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-badge-highlight {
  font-size: 1rem;
  color: var(--secondary);
  line-height: 1.2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  padding: 0.35rem 0.7rem;
  border-radius: 3px;
  background: rgba(26, 79, 139, 0.1);
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow-light {
  background: rgba(255, 255, 255, 0.12);
  color: #f4ede2;
}

.hero-copy h1,
.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  max-width: 11ch;
}

.hero-lead,
.page-hero p,
.section-heading p,
.detail-card p,
.feature-card p,
.service-preview-card p,
.info-card p,
.summary-panel p,
.cta-banner p,
.timeline-card p,
.faq-item p,
.trust-points p,
.form-note p {
  color: var(--text-soft);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-points {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.4rem;
}

.hero-points li,
.stack-list li,
.inline-stats span {
  position: relative;
  padding-left: 1.35rem;
}

.hero-points li::before,
.stack-list li::before,
.inline-stats span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.hero-panel,
.summary-panel {
  display: grid;
  gap: 1rem;
}

.hero-card,
.summary-panel,
.feature-card,
.service-preview-card,
.bento-card,
.detail-card,
.timeline-card,
.info-card,
.faq-item,
.form-shell,
.cta-banner,
.table-shell {
  border: 1px solid rgba(15, 49, 84, 0.12);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow);
}

.hero-card,
.summary-panel,
.feature-card,
.service-preview-card,
.bento-card,
.detail-card,
.timeline-card,
.info-card,
.faq-item,
.cta-banner,
.table-shell {
  padding: 1.5rem;
}

.hero-card-large {
  min-height: 240px;
  display: grid;
  align-content: start;
  gap: 0.8rem;
  background: #1a3a5c;
  color: var(--text-light);
}

.hero-card-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hero-card strong,
.summary-panel h2,
.feature-card h3,
.service-preview-card h3,
.bento-card h2,
.bento-card h3,
.detail-card h2,
.detail-card h3,
.timeline-card h3,
.info-card h3,
.cta-banner h2,
.faq-item summary,
.trust-points h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.9rem);
}

.hero-card strong {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.hero-card-large p {
  color: rgba(238, 245, 243, 0.82);
}

.accent-card,
.accent-surface {
  background: #e8f0e8;
}

.dark-surface,
.section-dark,
.page-hero-dark .summary-panel,
.summary-panel-dark,
.timeline-card-dark {
  background: #1a3a5c;
  color: var(--text-light);
}

.dark-surface p,
.dark-surface li,
.dark-surface .eyebrow,
.section-dark p,
.section-dark li,
.summary-panel-dark p,
.timeline-card-dark p,
.timeline-card-dark h3,
.summary-panel-dark h2 {
  color: rgba(238, 245, 243, 0.84);
}

.dark-surface .button-light,
.summary-panel-dark,
.timeline-card-dark,
.section-dark .timeline-card {
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.stat-label {
  font-size: 0.83rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 244, 237, 0.78);
  font-weight: 800;
}

.section {
  padding: 5rem 0;
}

/* About Provider section */
.about-provider-section {
  background: rgba(240, 244, 248, 0.7);
}

.about-provider-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.about-provider-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-provider-heading {
  font-family: "Anek Latin", sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--secondary);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.about-provider-heading strong {
  font-weight: 800;
}

.about-provider-heading em {
  font-style: italic;
}

.about-provider-copy p {
  font-family: "Anek Latin", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

.button-about {
  display: inline-block;
  width: fit-content;
  padding: 10px 28px;
  font-family: "Anek Latin", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary);
  background: transparent;
  border: 2px solid var(--secondary);
  border-radius: 3px;
  margin-top: 0.5rem;
  transition: background 0.2s, color 0.2s;
}

.button-about:hover {
  background: var(--secondary);
  color: #fff;
}

.about-provider-image img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

.about-provider-tagline {
  font-family: "Anek Latin", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-top: 0.8rem;
}

.tagline-orange {
  color: var(--primary);
  font-weight: 800;
}

.tagline-blue {
  color: var(--secondary);
  font-weight: 800;
}

/* Journey section */
.journey-section {
  background: rgba(237, 241, 246, 0.7);
}

.journey-heading {
  font-family: "Anek Latin", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--secondary);
  text-align: center;
  margin-bottom: 2.5rem;
}

.journey-heading strong {
  font-weight: 800;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.journey-stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.2rem 0.5rem;
}

.journey-stat strong {
  font-family: "Anek Latin", sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.1;
}

.journey-stat span {
  font-family: "Anek Latin", sans-serif;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

.section-tint {
  background: rgba(245, 248, 252, 0.7);
}

/* Solutions section */
.solutions-section {
  text-align: center;
}

.solutions-subtitle {
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  color: #555;
  max-width: 640px;
  margin: -0.5rem auto 2.5rem;
  line-height: 1.6;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.solution-card {
  text-align: center;
}

.solution-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  margin-bottom: 1rem;
}

.solution-card h3 {
  font-family: "Anek Latin", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.4rem;
}

.solution-card p {
  font-family: "Lato", sans-serif;
  font-size: 0.88rem;
  color: #666;
  line-height: 1.5;
}

/* Home FAQ section */
.home-faq-section {
  background: #fff;
}

.home-faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.home-faq-item {
  border-bottom: 1px solid #dde1e6;
}

.home-faq-item summary {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 0;
  font-family: "Anek Latin", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1a2d45;
  cursor: pointer;
  list-style: none;
}

.home-faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-plus {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  flex-shrink: 0;
}

.home-faq-item[open] .faq-plus {
  transform: rotate(45deg);
}

.home-faq-item p {
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  padding: 0 0 1rem 1.9rem;
  margin: 0;
}

.section-dark,
.page-hero-dark {
  background: #1a3a5c;
}

.page-hero-warm {
  background: #faf5ec;
}

.section-heading {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  font-family: "Lato", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
}

.section-heading p,
.split-heading > p {
  font-family: "Lato", sans-serif;
  font-size: 0.88rem;
  line-height: 1.6;
}

.section-heading .eyebrow {
  font-family: "Lato", sans-serif;
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
}

.section-heading-light h2,
.page-hero-dark h1,
.page-hero-dark p,
.section-dark h2 {
  color: var(--text-light);
}

.split-heading {
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  align-items: end;
}

.feature-grid,
.service-preview-grid,
.card-grid-2,
.card-grid-3,
.timeline-grid,
.trust-grid,
.footer-grid,
.contact-layout,
.bento-grid {
  display: grid;
  gap: 1.25rem;
}

.feature-grid,
.service-preview-grid,
.card-grid-3 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.service-preview-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid-2,
.contact-layout,
.page-hero-grid,
.trust-grid,
.split-heading {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bento-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.bento-card-wide {
  grid-row: span 2;
  min-height: 100%;
}

.inline-stats,
.stack-list {
  display: grid;
  gap: 0.8rem;
}

.compact-list {
  gap: 0.55rem;
}

.align-start {
  align-items: start;
}

.text-link {
  color: var(--primary-deep);
  font-weight: 800;
}

.timeline-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline-card {
  display: grid;
  gap: 0.9rem;
}

.timeline-card span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(15, 75, 143, 0.14);
  color: var(--secondary);
  font-family: "Sora", sans-serif;
  font-weight: 800;
}

.timeline-card-dark span {
  background: rgba(255, 255, 255, 0.14);
  color: #fff6e9;
}

.info-card,
.feature-card,
.service-preview-card,
.detail-card {
  display: grid;
  gap: 0.75rem;
}

.feature-grid .feature-card {
  justify-items: center;
  text-align: center;
  align-content: center;
  min-height: 130px;
  gap: 0.5rem;
  padding: 1rem 0.6rem;
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  cursor: default;
}

.feature-grid .feature-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  border-color: #cdd5de;
  transform: translateY(-2px);
}

.feature-grid .feature-card:hover .feature-icon {
  background: #dce6f2;
  border-color: #b8c8db;
}

.feature-icon {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: #edf3fa;
  border: 1px solid #d0dbe8;
  box-shadow: none;
  color: var(--secondary);
  transition: background 0.2s, border-color 0.2s;
}

.feature-icon::after {
  content: "";
  position: absolute;
  top: -0.15rem;
  right: -0.15rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--primary);
}

.feature-icon i {
  font-size: 1rem;
  color: var(--secondary);
}

.feature-grid .feature-card h3 {
  max-width: 14ch;
  margin: 0 auto;
  font-family: "Lato", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}

.feature-grid .feature-card p {
  font-family: "Lato", sans-serif;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-soft);
  margin-top: 0.3rem;
}

/* Services page hero heading */
.services-hero-heading {
  font-family: "Anek Latin", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #1a2d45;
  max-width: 18ch;
  line-height: 1.15;
}

/* Services timeline grid */
.services-timeline-grid {
  grid-template-columns: repeat(3, 1fr);
}

.services-timeline-grid .journey-stat p {
  font-family: "Lato", sans-serif;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-soft);
  margin-top: 0.3rem;
}

/* Solar For Home section */
.solar-home-section {
  background: rgba(238, 243, 249, 0.88);
}

.solar-home-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.solar-home-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.solar-home-heading {
  font-family: "Anek Latin", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 500;
  color: #1a2d45;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.solar-home-heading strong {
  font-weight: 800;
  color: var(--secondary);
}

.solar-home-features {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.solar-home-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.solar-home-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #edf3fa;
  border: 1px solid #d0dbe8;
  color: var(--secondary);
  font-size: 1.2rem;
}

.solar-home-feature h3 {
  font-family: "Anek Latin", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.solar-home-feature p {
  font-family: "Lato", sans-serif;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-soft);
}

.solar-home-stats {
  display: flex;
  gap: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(15, 49, 84, 0.1);
}

.solar-home-stat {
  text-align: center;
}

.solar-home-stat strong {
  display: block;
  font-family: "Anek Latin", sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.1;
}

.solar-home-stat span {
  font-family: "Lato", sans-serif;
  font-size: 0.85rem;
  color: var(--text-soft);
}



.trust-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.cta-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  background: #fffdf8;
  border: 1px solid #e0d8c8;
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.table-shell {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.data-table th,
.data-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(18, 25, 25, 0.1);
}

.data-table th {
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.dual-list-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-stack {
  display: grid;
  gap: 1rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding-right: 1.5rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  margin-bottom: 0.85rem;
}

.contact-layout {
  align-items: start;
}

.contact-card-list {
  display: grid;
  gap: 1rem;
}

.form-shell {
  padding: 1.75rem;
}

.form-heading {
  margin-bottom: 1.5rem;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.lead-form label {
  display: grid;
  gap: 0.45rem;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.lead-form textarea,
.lead-form label:nth-child(5),
.lead-form label:last-of-type,
.lead-form button {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #fff;
  padding: 0.8rem 0.9rem;
  font: inherit;
  color: var(--text);
}

textarea {
  resize: vertical;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.button:focus-visible,
.site-nav a:focus-visible,
.faq-item summary:focus-visible,
.menu-button:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

.form-note {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 4px;
  background: #edf3fa;

/* PM Surya Ghar page styles */
}

.pm-table-wrapper {
  margin-top: 1.5rem;
  overflow-x: auto;
}

.pm-data-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Lato", sans-serif;
  font-size: 0.92rem;
}

.pm-data-table th {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-align: left;
  padding: 0.85rem 1.2rem;
  background: var(--secondary);
  color: #fff;
  border: none;
}

.pm-data-table th:first-child {
  border-radius: 4px 0 0 0;
}

.pm-data-table th:last-child {
  border-radius: 0 4px 0 0;
}

.pm-data-table td {
  padding: 0.75rem 1.2rem;
  border-bottom: 1px solid rgba(15, 49, 84, 0.08);
  color: #1a2d45;
}

.pm-data-table tbody tr:nth-child(even) {
  background: rgba(238, 243, 249, 0.5);
}

.pm-data-table tbody tr:hover {
  background: rgba(26, 79, 139, 0.06);
}

.pm-benefit-card {
  padding: 1.8rem 1.5rem;
  text-align: left;
}

.pm-benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #edf3fa;
  border: 1px solid #d0dbe8;
  color: var(--secondary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.pm-benefit-card h3 {
  font-family: "Anek Latin", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.8rem;
}

.pm-benefit-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.pm-benefit-list li {
  font-family: "Lato", sans-serif;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-soft);
  padding-left: 1.2rem;
  position: relative;
}

.pm-benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

/* PM Registration Steps */
.pm-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  text-align: center;
}

.pm-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.pm-step-number {
  font-family: "Anek Latin", sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.1;
}

.pm-step h3 {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a2d45;
}

.pm-step p {
  font-family: "Lato", sans-serif;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 240px;
}

/* Contact page styles */
.contact-main-heading {
  font-family: "Anek Latin", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  color: #1a2d45;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.contact-main-heading strong {
  font-weight: 800;
  color: var(--secondary);
}

.contact-sub {
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 0.5rem;
}

.contact-form-title {
  font-family: "Anek Latin", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.3rem;
}

.contact-form-subtitle {
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 2rem;
  align-items: start;
}

.contact-form-shell {
  padding: 2rem;
  border: 1px solid rgba(15, 49, 84, 0.1);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.contact-lead-form {
  display: grid;
  gap: 1.2rem;
}

.contact-lead-form label {
  display: grid;
  gap: 0.35rem;
}

.form-label {
  font-family: "Lato", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a2d45;
}

.form-label .required {
  color: #e74c3c;
}

.contact-lead-form input,
.contact-lead-form textarea,
.contact-lead-form select {
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(15, 49, 84, 0.15);
  border-radius: 4px;
  background: #fff;
  color: #1a2d45;
  width: 100%;
  box-sizing: border-box;
}

.contact-lead-form input::placeholder,
.contact-lead-form textarea::placeholder {
  color: #aab;
}

.contact-lead-form input:focus,
.contact-lead-form textarea:focus,
.contact-lead-form select:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 2px rgba(26, 79, 139, 0.1);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.form-full {
  grid-column: 1 / -1;
}

.button-full {
  width: 100%;
  text-align: center;
}

.contact-sidebar {
  display: grid;
  gap: 1rem;
}

.contact-sidebar-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.3rem 1.5rem;
  border: 1px solid rgba(15, 49, 84, 0.1);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.contact-sidebar-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #edf3fa;
  border: 1px solid #d0dbe8;
  color: var(--primary);
  font-size: 1.1rem;
}

.contact-sidebar-card h4 {
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.15rem;
}

.contact-sidebar-card p {
  font-family: "Lato", sans-serif;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.contact-sidebar-card p a {
  color: #1a2d45;
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  background: #5cb85c;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: background 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  background: #4cae4c;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  color: #fff;
}

.whatsapp-float i {
  font-size: 1.3rem;
}
}

/* ── Brands Slider ── */
.brands-section {
  background: #f7f9fb;
}
.brands-slider {
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
}
.brands-slider::before,
.brands-slider::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.brands-slider::before {
  left: 0;
  background: linear-gradient(to right, #f7f9fb, transparent);
}
.brands-slider::after {
  right: 0;
  background: linear-gradient(to left, #f7f9fb, transparent);
}
.brands-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: brandsScroll 12s linear infinite;
}
.brands-track img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.3s, opacity 0.3s;
}
.brands-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
@keyframes brandsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.calculator-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(15, 49, 84, 0.12);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  font-family: "Lato", sans-serif;
}

.calculator-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-content: start;
}

.calculator-form select {
  font-family: "Lato", sans-serif;
  font-size: 0.88rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(15, 49, 84, 0.15);
  border-radius: 4px;
  background: #f8fafc;
  color: #1a2d45;
}

.calculator-form label {
  display: grid;
  gap: 0.45rem;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #1a2d45;
}

.calc-summary {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  padding: 1.3rem;
  border: 1px solid rgba(24, 31, 31, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
}

.calc-note {
  color: var(--text-soft);
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
}

.calc-total {
  font-family: "Anek Latin", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.calc-breakdown {
  display: grid;
  gap: 0.5rem;
}

.calc-breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px dashed rgba(19, 31, 30, 0.15);
}

.calc-breakdown li span {
  color: var(--text-soft);
  font-family: "Lato", sans-serif;
}

.calc-breakdown li strong {
  font-family: "Lato", sans-serif;
  color: #1a2d45;
}

.site-footer {
  padding-top: 4rem;
  background: linear-gradient(rgba(26, 45, 69, 0.92), rgba(26, 45, 69, 0.95)), url('images/solar-panels-green-energy-concept.jpg') center/cover no-repeat;
  color: var(--text-light);
  font-family: "Lato", sans-serif;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(238, 245, 243, 0.74);
}

.footer-grid {
  grid-template-columns: 1.3fr repeat(3, 1fr);
  align-items: start;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand .brand-logo {
  width: 200px;
  height: auto;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
}

.footer-brand-name {
  font-family: "Anek Latin", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.footer-brand-tagline {
  font-size: 0.88rem;
  color: rgba(238, 245, 243, 0.6);
  line-height: 1.5;
  max-width: 260px;
}

.site-footer h3 {
  margin-bottom: 0.9rem;
  font-size: 1.05rem;
  color: #fff;
  font-weight: 700;
  position: relative;
}

.site-footer h3::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: var(--primary);
  margin-top: 6px;
  border-radius: 2px;
}

.site-footer ul {
  display: grid;
  gap: 0.55rem;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #ffffff;
}

.footer-bottom {
  padding: 1.2rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(238, 245, 243, 0.74);
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Footer presence */
.footer-presence {
  padding: 1.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-presence h3 {
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-presence h3::after {
  display: none;
}

.presence-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2.2rem;
}

.presence-grid span {
  font-family: "Lato", sans-serif;
  font-size: 0.88rem;
  color: rgba(238, 245, 243, 0.74);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}

.presence-grid i {
  color: var(--primary);
}

@media (max-width: 1120px) {
  .site-header {
    border-radius: 0;
    margin: 0;
    max-width: 100%;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .site-header .brand-logo {
    width: 120px;
    height: 120px;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    min-width: 44px;
    padding: 0.5rem;
    border-radius: 6px;
    border: 2px solid var(--secondary);
    font-size: 1.2rem;
    color: var(--secondary);
    cursor: pointer;
    background: #fff;
    margin-left: auto;
  }

  .site-nav,
  .header-actions {
    display: none;
    width: 100%;
  }

  .nav-toggle:checked ~ .site-nav,
  .nav-toggle:checked ~ .header-actions {
    display: flex;
  }

  .site-nav {
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0 0.75rem;
    gap: 0;
    border-top: 1px solid #e5e9ed;
    margin-top: 0.5rem;
  }

  .site-nav a {
    padding: 0.85rem 1rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-bottom: none;
    border-radius: 6px;
  }

  .site-nav a:hover,
  .site-nav a.active {
    background: rgba(26, 79, 139, 0.06);
    color: var(--secondary);
    border-color: transparent;
  }

  .site-nav a.active {
    border-left: 3px solid var(--primary);
    border-radius: 0 6px 6px 0;
  }

  .header-actions {
    padding-top: 0.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .top-bar-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .hero-grid,
  .page-hero-grid,
  .contact-layout,
  .split-heading,
  .trust-grid,
  .card-grid-2,
  .bento-grid,
  .calculator-shell,
  .footer-grid,
  .about-provider-grid,
  .solutions-grid,
  .hero-grid-full,
  .solar-home-grid,
  .contact-form-layout {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-preview-grid,
  .card-grid-3,
  .timeline-grid,
  .trust-points,
  .journey-grid,
  .services-timeline-grid,
  .pm-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy h1,
  .page-hero h1 {
    max-width: 100%;
  }

  .hero-grid-full .hero-panel {
    justify-self: center;
  }

  .services-hero-heading {
    max-width: 100%;
  }

  .solar-home-image {
    max-width: 500px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer-brand .brand-logo {
    width: 160px;
    height: auto;
  }
}

@media (max-width: 760px) {
  .section,
  .hero-grid,
  .page-hero-grid {
    padding-top: 3rem;
    padding-bottom: 2.5rem;
  }

  .hero-card-row,
  .service-preview-grid,
  .card-grid-3,
  .timeline-grid,
  .trust-points,
  .calculator-form,
  .lead-form,
  .dual-list-table {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-grid,
  .services-timeline-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pm-steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-inner {
    gap: 0.8rem;
  }

  .brand-text small {
    display: none;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .site-header .brand-logo {
    width: 72px;
    height: 72px;
  }

  .footer-brand .brand-logo {
    width: 140px;
    height: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  }

  .footer-brand-tagline {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .button {
    width: 100%;
    text-align: center;
  }

  /* Top bar mobile */
  .top-bar-left {
    flex-wrap: wrap;
    justify-content: center;
  }

  .top-bar-right {
    width: 100%;
    text-align: center;
  }

  .button-cta-top {
    width: 100%;
    text-align: center;
  }

  /* Hero mobile */
  .rupee-zero {
    font-size: 3rem;
  }

  .hero-rupee-line {
    font-size: 1.05rem;
  }

  .hero-atf-image {
    max-width: 100%;
  }

  .hero-grid-full .hero-panel {
    max-width: 100%;
  }

  /* Trust badges mobile */
  .trust-badges {
    flex-direction: column;
    gap: 8px;
  }

  .trust-badge {
    min-width: auto;
    flex-direction: row;
    gap: 8px;
    padding: 10px 16px;
  }

  /* About provider mobile */
  .about-provider-image img {
    max-width: 100%;
  }

  /* Solutions mobile */
  .solutions-grid {
    gap: 1rem;
  }

  .solution-card img {
    height: 220px;
  }

  /* Solar home section mobile */
  .solar-home-grid {
    gap: 1.5rem;
  }

  .solar-home-stats {
    gap: 2rem;
  }

  /* Contact form mobile */
  .form-row-2,
  .form-row-3 {
    grid-template-columns: 1fr;
  }

  .contact-form-layout {
    gap: 1.5rem;
  }

  .contact-form-shell {
    padding: 1.3rem;
  }

  .contact-sidebar {
    grid-template-columns: 1fr 1fr;
  }

  /* PM table mobile */
  .pm-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .pm-data-table {
    min-width: 480px;
  }

  /* Calculator mobile */
  .calculator-shell {
    padding: 1rem;
  }

  .calc-total {
    font-size: 1.8rem;
  }

  /* FAQ mobile */
  .home-faq-item summary {
    font-size: 0.95rem;
    padding: 0.9rem 1rem;
  }

  /* Footer mobile */
  .presence-grid {
    gap: 0.6rem;
  }

  /* WhatsApp float mobile */
  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }

  .whatsapp-float i {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: 1rem;
  }

  .section,
  .hero-grid,
  .page-hero-grid {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card {
    min-height: auto;
    padding: 1rem 0.6rem;
  }

  .journey-grid,
  .services-timeline-grid {
    grid-template-columns: 1fr;
  }

  .pm-steps-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .solution-card img {
    height: 200px;
  }

  .rupee-zero {
    font-size: 2.5rem;
  }

  .site-header .brand-logo {
    width: 56px;
    height: 56px;
  }

  .site-header {
    padding: 0.3rem 0;
  }

  .contact-sidebar {
    grid-template-columns: 1fr;
  }

  .solar-home-heading {
    font-size: 1.5rem;
  }

  .contact-main-heading {
    font-size: 1.5rem;
  }

  .journey-heading {
    font-size: 1.5rem;
  }

  .footer-brand .brand-logo {
    width: 120px;
    height: auto;
  }

  .hero-actions {
    flex-direction: column;
  }

  .about-provider-heading {
    font-size: 1.5rem;
  }
}