*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

:root {
  --green: #5D9E2F;
  --green-dark: #4a7e25;
  --green-light: #e8f5d9;
  --green-subtle: #f4faee;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --amber-light: #fef3c7;
  --navy: #0D1E3A;
  --navy-card: #132646;
  --navy-light: #183057;
  --text: #1a1a2e;
  --text2: #555566;
  --text3: #888899;
  --bg: #ffffff;
  --bg2: #f8faf6;
  --bg-gray: #f7f9fb;
  --border: #e6e8ec;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.09);
  --radius: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --max: 1240px;
  --transition: all 0.25s ease;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.page-section {
  display: none;
}

.page-section.active {
  display: block;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 64px 0;
}

.section-pad-sm {
  padding: 48px 0;
}

.center {
  text-align: center;
}

.center .section-sub {
  margin-inline: auto;
}

.section-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}

.section-title span {
  color: var(--green);
}

.section-sub {
  font-size: 14px;
  color: var(--text2);
  max-width: 600px;
  line-height: 1.6;
}

/* BUTTONS */
.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff !important;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(93, 158, 47, 0.25);
}

.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(93, 158, 47, 0.35);
}

.btn-amber {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  background: #f59e0b !important;
  color: #1a1a2e !important;
  padding: 12px 24px !important;
  border-radius: var(--radius) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  transition: var(--transition) !important;
  cursor: pointer !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25) !important;
}

.btn-amber:hover {
  background: #d97706 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.35) !important;
}

.btn-navy {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  background: var(--navy) !important;
  color: #ffffff !important;
  padding: 12px 24px !important;
  border-radius: var(--radius) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  transition: var(--transition) !important;
  cursor: pointer !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(13, 30, 58, 0.25) !important;
}

.btn-navy:hover {
  background: var(--navy-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(13, 30, 58, 0.35) !important;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: #fff !important;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  background: transparent;
  cursor: pointer;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: #fff;
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* HEADER */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 clamp(18px, 2.5vw, 36px);
}

.logo-link {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.logo-link img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: #333344;
  padding: 8px 12px;
  border-radius: 6px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--green);
}

.nav-link.active {
  font-weight: 700;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
  border-radius: var(--radius);
  min-width: 240px;
  padding: 8px 0;
  z-index: 200;
  border: 1px solid var(--border);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  font-size: 13px;
  color: #444;
  transition: var(--transition);
  cursor: pointer;
}

.dropdown-item:hover {
  background: var(--green-light);
  color: var(--green);
}

.dropdown-item i {
  width: 16px;
  color: var(--green);
  font-size: 13px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.nav-phone i {
  color: var(--green);
  font-size: 16px;
}

.nav-phone-sub {
  font-size: 10px;
  font-weight: 400;
  color: var(--text3);
}

.nav-quote {
  background: #f59e0b;
  color: #1a1a2e;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.nav-quote:hover {
  background: #d97706;
  color: #fff;
}

.hamburger {
  display: none;
  font-size: 20px;
  color: var(--navy);
  cursor: pointer;
}

/* PAGE HERO */
.page-hero {
  background-color: var(--navy);
  position: relative;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: center;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 58%;
  background-size: cover;
  background-position: center right;
  z-index: 1;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0D1E3A 0%, rgba(13, 30, 58, 0.7) 40%, rgba(13, 30, 58, 0.15) 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 56px 24px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 14px;
  cursor: pointer;
}

.breadcrumb span:hover {
  color: #fff;
}

.breadcrumb i {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.4);
}

.page-hero h1 {
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}

.page-hero h1 span {
  color: var(--green);
}

.page-hero p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
  max-width: 480px;
  line-height: 1.6;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}

.hero-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.hero-pill-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(93, 158, 47, 0.7);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: rgba(93, 158, 47, 0.06);
}

.hero-pill-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  max-width: 85px;
  line-height: 1.3;
}

.hero-stats-box {
  background: rgba(13, 30, 58, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.hero-stats-box h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.h-stat {
  text-align: left;
}

.h-stat .hn {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.h-stat .hl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
  line-height: 1.3;
}

/* Hero Layouts (Home & Custom Solar Matching Screenshot) */
.home-hero,
.sol-custom-hero {
  position: relative;
  background: #0D1E3A;
  overflow: hidden;
  min-height: 520px;
}

.home-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 66%;
  background-image: url('../assets/extracted/hero_residential.webp');
  background-size: cover;
  background-position: center right;
  z-index: 1;
}

.sol-custom-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 66%;
  background-image: url('../assets/extracted/hero_custom.webp');
  background-size: cover;
  background-position: center right;
  z-index: 1;
}

.sol-business-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 66%;
  background-image: url('../assets/extracted/hero_business.webp');
  background-size: cover;
  background-position: center right;
  z-index: 1;
}

.sol-industry-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 66%;
  background-image: url('../assets/extracted/hero_industry.webp');
  background-size: cover;
  background-position: center right;
  z-index: 1;
}

.sol-agriculture-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 66%;
  background-image: url('../assets/extracted/hero_agriculture.webp');
  background-size: cover;
  background-position: center right;
  z-index: 1;
}

.sol-water-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 66%;
  background-image: url('../assets/extracted/hero_water_heating.webp');
  background-size: cover;
  background-position: center right;
  z-index: 1;
}

.sol-lighting-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 66%;
  background-image: url('../assets/extracted/hero_lighting.webp');
  background-size: cover;
  background-position: center right;
  z-index: 1;
}

.home-hero-bg::after,
.sol-custom-hero-bg::after,
.sol-business-hero-bg::after,
.sol-industry-hero-bg::after,
.sol-agriculture-hero-bg::after,
.sol-water-hero-bg::after,
.sol-lighting-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0D1E3A 0%, #0D1E3A 22%, rgba(13, 30, 58, 0.8) 46%, rgba(13, 30, 58, 0.22) 74%, transparent 100%);
}

.home-hero-inner,
.sol-custom-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 48px 24px 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: end;
}

.home-hero-left,
.sol-custom-hero-left {
  padding-bottom: 40px;
}

.custom-features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 460px;
  margin: 22px 0 26px;
}

.custom-feat-item {
  text-align: center;
}

.custom-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  color: var(--green);
  font-size: 16px;
  background: rgba(93, 158, 47, 0.08);
  transition: all 0.2s ease;
}

.custom-feat-item:hover .custom-feat-icon {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

.custom-feat-label {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.btn-outline-custom:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.hero-stats-box-custom {
  background: rgba(8, 22, 43, 0.96);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  padding: 24px 28px 22px;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
  width: 100%;
  align-self: end;
  margin-bottom: 0;
}

.hero-stats-box-custom h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.35;
  margin-bottom: 22px;
  letter-spacing: 0.2px;
}

.hero-stats-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: flex-start;
}

.hero-stats-grid-4 .h-stat {
  text-align: left;
}

.hero-stats-grid-4 .h-stat-icon {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 32px;
}

.hero-stats-grid-4 .h-stat-icon svg {
  stroke: rgba(255, 255, 255, 0.92);
  transition: transform 0.2s ease, stroke 0.2s ease;
}

.hero-stats-grid-4 .h-stat:hover .h-stat-icon svg {
  stroke: var(--green);
  transform: translateY(-2px);
}

.hero-stats-grid-4 .hn {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 6px;
  white-space: nowrap;
}

.hero-stats-grid-4 .hl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
}

@media (max-width: 900px) {

  .home-hero-inner,
  .sol-custom-hero-inner {
    grid-template-columns: 1fr;
    padding-bottom: 24px;
  }

  .home-hero-bg,
  .sol-custom-hero-bg {
    width: 100%;
    opacity: 0.35;
  }

  .custom-features-row {
    max-width: 100%;
  }

  .hero-stats-box-custom {
    border-radius: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    margin-top: 24px;
  }

  .hero-stats-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

/* WHITE BENEFITS STRIP */
.benefits-strip {
  background: #fff;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
}

.benefits-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.benefits-grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.benefit-item {
  text-align: center;
  padding: 0 12px;
  border-right: 1px solid #f0f0f0;
}

.benefit-item:last-child {
  border-right: none;
}

.benefit-item .b-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin: 0 auto 10px;
  background: var(--green-subtle);
  transition: var(--transition);
}

.benefit-item:hover .b-icon {
  background: var(--green);
  color: #fff;
}

.benefit-item h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.3;
}

.benefit-item p {
  font-size: 11.5px;
  color: var(--text2);
  line-height: 1.45;
}

/* 4-COLUMN SOLUTIONS OVERVIEW GRID */
.sol-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sol-ov-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.sol-ov-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: rgba(93, 158, 47, 0.4);
}

.sol-ov-img {
  height: 190px;
  position: relative;
  width: 100%;
  background: #edf2f7;
}

.sol-ov-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sol-ov-card:hover .sol-ov-img img {
  transform: scale(1.06);
}

.sol-card-badge {
  position: absolute;
  bottom: -20px;
  left: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 3.5px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  z-index: 10;
  transition: var(--transition);
}

.sol-ov-card:hover .sol-card-badge {
  transform: scale(1.08);
  background: var(--green-dark);
}

.sol-ov-body {
  padding: 28px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  background: #fff;
}

.sol-ov-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}

.sol-ov-body p {
  font-size: 12.5px;
  color: var(--text2);
  margin-bottom: 16px;
  line-height: 1.5;
  flex: 1;
}

.learn-more {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: gap 0.2s ease;
  margin-top: auto;
}

.sol-ov-card:hover .learn-more {
  gap: 10px;
}

/* PRODUCT CARDS */
.sp-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.sp-grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.sp-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sp-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.sp-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(93, 158, 47, 0.35);
}

.sp-card-img {
  height: 160px;
  position: relative;
  background: #edf2f7;
}

.sp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp-cat-icon {
  position: absolute;
  bottom: -16px;
  left: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 2.5px solid #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.sp-card-body {
  padding: 24px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sp-card-body h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.35;
}

.sp-card-body p {
  font-size: 12px;
  color: var(--text2);
  margin-bottom: 12px;
  line-height: 1.45;
}

.sp-feats {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
  margin-top: auto;
}

.sp-feats li {
  font-size: 11.5px;
  color: var(--text2);
  display: flex;
  gap: 6px;
  align-items: flex-start;
}

.sp-feats li i {
  color: var(--green);
  font-size: 11px;
  margin-top: 2px;
  flex-shrink: 0;
}

.sp-explore {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: gap 0.2s ease;
}

.sp-card:hover .sp-explore {
  gap: 8px;
}

/* INDUSTRIES WE SERVE STRIP */
.serve-strip {
  background: #fff;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
  text-align: center;
}

.serve-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.serve-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-gray);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}

.serve-item:hover .serve-icon {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-subtle);
}

.serve-item span {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

/* PROCESS STEPS */
.process-section {
  background: #ffffff;
  padding: 56px 0;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  margin-top: 36px;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 10px;
  position: relative;
}

.process-step::after {
  content: '....>';
  position: absolute;
  top: 10px;
  right: -10px;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 14px;
  opacity: 0.5;
}

.process-step:last-child::after {
  display: none;
}

.step-badge-green {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.process-step-icon {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 8px;
}

.process-step h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.process-step p {
  font-size: 11.5px;
  color: var(--text2);
  line-height: 1.4;
}

/* PARTNER REASONS (WHY CHOOSE) */
.partner-reasons-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.partner-reason {
  text-align: center;
  padding: 16px 8px;
}

.partner-reason .pr-icon {
  font-size: 24px;
  color: var(--green);
  margin-bottom: 10px;
}

.partner-reason h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.partner-reason p {
  font-size: 11px;
  color: var(--text2);
  line-height: 1.4;
}

/* BENEFITS FOR YOU (RESIDENTIAL 5 CARDS) */
.benefits-for-you-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.bfy-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  background: #fff;
  transition: var(--transition);
}

.bfy-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.bfy-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 14px;
  background: var(--green-subtle);
}

.bfy-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.bfy-card p {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.45;
}

/* CTA BANNER AT BOTTOM OF EACH PAGE */
.cta-banner {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 44px 0;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 35%;
  background: url('../assets/extracted/hero_solutions.webp') center right/cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.cta-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}

.cta-text p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* FOOTER */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 24px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.1fr 1.5fr;
  gap: 36px;
  padding-bottom: 48px;
}

.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.footer-col h4 {
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 9px;
}

.footer-col ul li a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  cursor: pointer;
}

.footer-col ul li a:hover {
  color: var(--green);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.footer-contact li i {
  color: var(--green);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--green);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1080px) {
  .sol-overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sp-grid-6,
  .sp-grid-5,
  .sp-grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits-grid-5,
  .benefits-grid-6,
  .benefits-for-you-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .serve-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .partner-reasons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    border-bottom: 2px solid var(--green);
  }

  .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .page-hero-bg {
    width: 100%;
    opacity: 0.35;
  }

  .hero-stats-box {
    display: none;
  }

  .sp-grid-6,
  .sp-grid-5,
  .sp-grid-4,
  .sp-grid-3 {
    grid-template-columns: 1fr;
  }

  .benefits-grid-5,
  .benefits-grid-6,
  .benefits-for-you-grid {
    grid-template-columns: 1fr 1fr;
  }

  .serve-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    flex-direction: column;
    gap: 24px;
  }

  .process-step::after {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   NEW PAGE COMPONENTS (Rooftop, Hand Pumps, Inverters, Panels)
   ========================================================= */

.hero-rooftop-bg {
  background-image: url('../assets/extracted/hero_rooftop.webp');
}
.hero-hand-pump-bg {
  background-image: url('../assets/extracted/hero_hand_pump.webp');
}
.hero-inverters-bg {
  background-image: url('../assets/extracted/hero_inverters.webp');
}
.hero-panels-bg {
  background-image: url('../assets/stellar/industrial_rooftop_clean.webp');
}

/* Top-Right "SINCE 2013 | 13+ YEARS" Badge */
.badge-experience {
  background: rgba(13, 30, 58, 0.95);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  min-width: 150px;
}
.badge-exp-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}
.badge-exp-year {
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.05;
  margin: 2px 0 6px;
}
.badge-exp-divider {
  width: 100%;
  height: 2px;
  background: var(--green);
  margin-bottom: 6px;
}
.badge-exp-highlight {
  font-size: 11px;
  font-weight: 800;
  color: var(--green);
  line-height: 1.3;
  letter-spacing: 0.5px;
}

/* Floating Feature Value Bar */
.feature-bar-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 24px 28px;
  margin-top: -36px;
  position: relative;
  z-index: 10;
}
.feature-bar-grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.feature-bar-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.feature-bar-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.feature-bar-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-subtle);
  border: 1px solid rgba(93, 158, 47, 0.25);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.feature-bar-item h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}
.feature-bar-item p {
  font-size: 11.5px;
  color: var(--text2);
  line-height: 1.35;
}

/* Product Range Grid & Modern Cards */
.product-range-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.prod-card-modern {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.prod-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(93, 158, 47, 0.4);
}
.prod-card-img-wrap {
  width: 100%;
  height: 180px;
  background: #f8fafc;
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.prod-card-img-wrap img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.prod-card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 2px;
}
.prod-card-subtitle {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 10px;
}
.prod-card-desc {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.45;
  margin-bottom: 14px;
  flex-grow: 1;
}
.prod-card-specs {
  margin-bottom: 16px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.prod-card-spec-item {
  font-size: 11.5px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 7px;
}
.prod-card-spec-item i {
  color: var(--green);
  font-size: 12px;
}
.prod-card-actions {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 8px;
}
.btn-card-outline {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #ffffff;
  color: var(--navy);
  font-size: 11.5px;
  font-weight: 700;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.btn-card-outline:hover {
  background: var(--bg-gray);
  border-color: var(--navy);
}
.btn-card-green {
  padding: 8px 12px;
  border-radius: 6px;
  background: var(--green);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
  text-align: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-card-green:hover {
  background: var(--green-dark);
}
.btn-card-amber {
  padding: 8px 12px;
  border-radius: 6px;
  background: #f59e0b;
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
  text-align: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-card-amber:hover {
  background: #d97706;
}

/* Split Feature Container */
.split-feature-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
  margin-top: 36px;
}
.split-feature-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 380px;
}
.split-feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-visual-overlay-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(13, 30, 58, 0.92);
  backdrop-filter: blur(8px);
  padding: 12px 18px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.split-visual-overlay-badge.badge-gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border: none;
  color: #ffffff;
}
.split-visual-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}
.split-visual-play-btn:hover {
  background: #ffffff;
  transform: translate(-50%, -50%) scale(1.08);
}
.why-features-grid-6 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.why-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.why-feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-subtle);
  border: 1px solid rgba(93, 158, 47, 0.3);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.why-feat-text h5 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.why-feat-text p {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.4;
}

/* Application Photo Tiles */
.app-tiles-grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.app-tile-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 130px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
}
.app-tile-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.app-tile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.app-tile-card:hover img {
  transform: scale(1.08);
}
.app-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 30, 58, 0.95) 0%, rgba(13, 30, 58, 0.4) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 10px 12px;
}
.app-tile-content {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.2;
}
.app-tile-content i {
  color: var(--green);
  font-size: 13px;
}

/* Rooftop Page Specifics */
.rooftop-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 36px;
}
.rooftop-step-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.rooftop-step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  right: -50%;
  width: 100%;
  border-top: 2px dashed rgba(93, 158, 47, 0.35);
  z-index: 1;
}
.rooftop-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid var(--green);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
}
.rooftop-step-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.rooftop-step-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.rooftop-step-desc {
  font-size: 11.5px;
  color: var(--text2);
  line-height: 1.35;
}

.rooftop-sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.rooftop-sector-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}
.rooftop-sector-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(93, 158, 47, 0.4);
}
.rooftop-sector-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  position: relative;
}
.rooftop-sector-badge-icon {
  position: absolute;
  top: 140px;
  left: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 3;
}
.rooftop-sector-body {
  padding: 26px 20px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.rooftop-sector-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.25;
}
.rooftop-sector-desc {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.45;
  margin-bottom: 14px;
}
.rooftop-sector-checklist {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
  flex-grow: 1;
}
.rooftop-check-item {
  font-size: 11.5px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 7px;
}
.rooftop-check-item i {
  color: var(--green);
  font-size: 12px;
}
.btn-learn-more-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition);
  background: #ffffff;
  cursor: pointer;
}
.btn-learn-more-outline:hover {
  background: var(--navy);
  color: #ffffff;
  border-color: var(--navy);
}

.rooftop-projects-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.rooftop-project-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  height: 170px;
  transition: var(--transition);
}
.rooftop-project-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.rooftop-project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.rooftop-project-card:hover img {
  transform: scale(1.08);
}
.rooftop-project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(13, 30, 58, 0.95) 0%, rgba(13, 30, 58, 0.3) 70%, transparent 100%);
  padding: 12px 14px 10px;
  color: #ffffff;
}
.rooftop-project-info h6 {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 2px;
}
.rooftop-project-info span {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.75);
}

/* Pre-footer CTA Green/Navy Banner */
.pre-footer-cta-banner {
  background: linear-gradient(135deg, #0D1E3A 0%, #132646 100%);
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}
.pre-footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.pre-footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.pre-footer-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.pre-footer-text h4 {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 3px;
}
.pre-footer-text p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
}
.pre-footer-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* =========================================================
   ADDITIONAL PRODUCTS: LAMPS, STREET LIGHTS, WATER HEATERS
   ========================================================= */

.hero-lamps-bg {
  background-image: url('../assets/stellar/light_garden_clean.webp');
}
.hero-streetlights-bg {
  background-image: url('../assets/extracted/blog_street_light.webp');
}
.hero-waterheaters-bg {
  background-image: url('../assets/extracted/hero_water_heating.webp');
}

.feature-bar-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.feature-bar-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.product-range-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.why-features-row-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.why-features-row-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

/* Solar Water Heaters: Category Cards */
.swh-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.swh-category-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.swh-category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(93, 158, 47, 0.4);
}
.swh-cat-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #f8fafc;
}
.swh-cat-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.swh-cat-body h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.swh-cat-body p {
  font-size: 12.5px;
  color: var(--text2);
  line-height: 1.45;
  margin-bottom: 16px;
  flex-grow: 1;
}
.swh-cat-link {
  font-size: 12px;
  font-weight: 700;
  color: #0284c7;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition);
}
.swh-cat-link:hover {
  color: var(--green);
}

/* Solar Water Heaters: Split Section (Why Choose & How It Works) */
.swh-split-container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  margin-top: 48px;
}
.swh-why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}
.swh-why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.swh-why-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.swh-why-item h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.swh-why-item p {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.4;
  margin: 0;
}
.swh-how-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.swh-step-card {
  background: var(--bg-gray);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 240px;
}
.swh-step-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: #ffffff;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.swh-step-img {
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.swh-step-img img,
.swh-step-img svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.swh-step-card p {
  font-size: 11.5px;
  color: var(--text2);
  line-height: 1.35;
  margin: 0;
}
.swh-step-arrow {
  color: var(--text3);
  font-size: 18px;
}

/* Solar Water Heaters: 4 Trust Badges Strip */
.trust-badges-strip {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  box-shadow: var(--shadow-sm);
  margin-top: 48px;
}
.trust-badges-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.trust-badge-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.trust-badge-item h5 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.trust-badge-item p {
  font-size: 11.5px;
  color: var(--text2);
  line-height: 1.35;
  margin: 0;
}

@media (max-width: 1024px) {
  .product-range-grid-5,
  .product-range-grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
  .feature-bar-grid-6,
  .feature-bar-grid-5,
  .feature-bar-grid-4,
  .feature-bar-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-features-row-5,
  .why-features-row-6 {
    grid-template-columns: repeat(3, 1fr);
  }
  .swh-split-container {
    grid-template-columns: 1fr;
  }
  .swh-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .product-range-grid-5,
  .product-range-grid-4,
  .swh-category-grid {
    grid-template-columns: 1fr;
  }
  .feature-bar-grid-6,
  .feature-bar-grid-5,
  .feature-bar-grid-4,
  .feature-bar-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-features-row-5,
  .why-features-row-6,
  .trust-badges-grid-4 {
    grid-template-columns: 1fr;
  }
  .swh-how-steps {
    grid-template-columns: 1fr;
  }
  .swh-step-arrow {
    transform: rotate(90deg);
    margin: 8px 0;
  }
}

/* ========================================================= */
/* PM SURYA GHAR MUFT BIJLI YOJANA STYLES                   */
/* ========================================================= */

.pmsg-guidance-wrapper {
  background: #ffffff;
  padding: 64px 0 54px 0;
}

.pmsg-header-block {
  margin-bottom: 28px;
}

.pmsg-category-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.pmsg-orange-bar {
  display: inline-block;
  width: 4px;
  height: 22px;
  background-color: #e67e22;
  border-radius: 2px;
}

.pmsg-category-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #3b7625;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.pmsg-subheading {
  font-size: 15px;
  font-weight: 500;
  color: #2d3748;
  margin-bottom: 14px;
}

.pmsg-lead-text {
  font-size: 17px;
  font-weight: 700;
  color: #1a202c;
  line-height: 1.5;
  max-width: 960px;
  margin: 0;
}

/* Grid Layout matching screenshot */
.pmsg-grid-layout {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 26px;
  align-items: stretch;
}

/* Left Main Card */
.pmsg-main-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pmsg-card-title {
  font-size: 21px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 24px;
  letter-spacing: -0.2px;
}

/* 3 Snapshot Stat Boxes */
.pmsg-snapshot-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.pmsg-stat-box {
  background: #fbf9f4;
  border-radius: 10px;
  padding: 22px 16px;
  border: 1px solid #f1eee6;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pmsg-stat-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
}

.pmsg-box-amount {
  font-size: 26px;
  font-weight: 800;
  color: #2e7d32;
  margin-bottom: 8px;
  line-height: 1.1;
  font-feature-settings: "tnum";
}

.pmsg-box-label {
  font-size: 14.5px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
}

.pmsg-box-desc {
  font-size: 12.5px;
  color: #475569;
  line-height: 1.45;
}

/* 3 Process Steps */
.pmsg-steps-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-top: 1px solid #f1f5f9;
  padding-top: 24px;
}

.pmsg-step-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pmsg-step-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e67e22;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13.5px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
  box-shadow: 0 2px 6px rgba(230, 126, 34, 0.35);
}

.pmsg-step-content {
  flex: 1;
}

.pmsg-step-title {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 3px;
}

.pmsg-step-desc {
  font-size: 13px;
  color: #475569;
  line-height: 1.45;
}

/* Right Side Cards */
.pmsg-side-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
}

.pmsg-side-card {
  border-radius: 12px;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-height: 115px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pmsg-side-card:hover {
  transform: translateY(-2px);
}

.pmsg-side-card-navy {
  background: #2b5172;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(43, 81, 114, 0.2);
}

.pmsg-side-card-navy h4 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.pmsg-side-card-navy p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
  margin: 0;
}

.pmsg-side-card-light {
  background: #f1efe9;
  color: #1e293b;
  border: 1px solid #e7e5de;
}

.pmsg-side-card-light h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}

.pmsg-side-card-light p {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}

/* Footnote */
.pmsg-source-note {
  margin-top: 26px;
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
  padding-top: 8px;
}

/* Interactive Calculator Styles */
.pmsg-calc-section {
  background: #f8fafc;
  padding: 60px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.pmsg-calc-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 36px 32px;
  max-width: 1040px;
  margin: 0 auto;
}

.pmsg-kw-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 28px 0;
}

.pmsg-kw-btn {
  padding: 10px 20px;
  border-radius: 8px;
  border: 1.5px solid #cbd5e1;
  background: #f8fafc;
  font-size: 14px;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  transition: var(--transition);
}

.pmsg-kw-btn:hover {
  border-color: var(--green);
  color: var(--green);
}

.pmsg-kw-btn.active {
  background: var(--green);
  color: #ffffff;
  border-color: var(--green);
  box-shadow: 0 4px 12px rgba(93, 158, 47, 0.3);
}

.pmsg-calc-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.pmsg-result-box {
  background: #f8faf6;
  border: 1px solid #e6f0dc;
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
}

.pmsg-result-box.highlight {
  background: #f0fdf4;
  border-color: #86efac;
}

.pmsg-res-val {
  font-size: 24px;
  font-weight: 800;
  color: #166534;
  margin-bottom: 6px;
}

.pmsg-res-lbl {
  font-size: 12.5px;
  color: #475569;
  font-weight: 600;
}

/* Document requirement checklist cards */
.pmsg-docs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.pmsg-doc-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pmsg-doc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pmsg-doc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #e8f5d9;
  color: #4a7e25;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* Steps pipeline */
.pmsg-pipeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.pmsg-pipeline-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px 20px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}

.pmsg-pipeline-card:hover {
  transform: translateY(-3px);
}

.pmsg-pipeline-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 12px;
  text-transform: uppercase;
}

/* FAQ list */
.pmsg-faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.pmsg-faq-header {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: #ffffff;
  user-select: none;
}

.pmsg-faq-header h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.pmsg-faq-body {
  padding: 0 24px 20px 24px;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
}

/* Responsive queries */
@media (max-width: 992px) {
  .pmsg-grid-layout {
    grid-template-columns: 1fr;
  }
  .pmsg-snapshot-boxes {
    grid-template-columns: 1fr;
  }
  .pmsg-calc-results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pmsg-docs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pmsg-pipeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pmsg-main-card {
    padding: 22px 18px;
  }
  .pmsg-snapshot-boxes {
    grid-template-columns: 1fr;
  }
  .pmsg-calc-results-grid {
    grid-template-columns: 1fr;
  }
  .pmsg-docs-grid {
    grid-template-columns: 1fr;
  }
  .pmsg-pipeline-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================================= */
/* HOME PAGE SHOWCASE CAROUSEL STYLES                       */
/* ========================================================= */
.home-carousel-section {
  padding: 56px 0 64px 0;
  background: linear-gradient(180deg, #f8faf6 0%, #ffffff 100%);
  border-bottom: 1px solid #edf2e9;
  position: relative;
}

.home-carousel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.home-carousel-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #dbe3d6;
  background: #ffffff;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.home-carousel-btn:hover {
  background: var(--green);
  color: #ffffff;
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(93, 158, 47, 0.3);
}

.home-carousel-btn:active {
  transform: scale(0.95);
}

.home-carousel-btn-play {
  width: 38px;
  height: 38px;
  font-size: 13px;
  background: #f1f5f0;
}

.home-carousel-viewport {
  overflow: hidden;
  position: relative;
  border-radius: 18px;
  padding: 8px 4px 16px 4px;
  user-select: none;
}

.home-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);
  will-change: transform;
}

.home-card-slide {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
  box-sizing: border-box;
  cursor: pointer;
}

.home-card-inner {
  position: relative;
  height: 430px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 22px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  background: var(--navy);
}

.home-card-inner:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(13, 30, 58, 0.22);
}

.home-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.home-card-inner:hover .home-card-bg {
  transform: scale(1.08);
}

.home-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(13, 30, 58, 0.35) 0%, rgba(13, 30, 58, 0.7) 45%, rgba(13, 30, 58, 0.96) 100%);
  z-index: 2;
  transition: background 0.35s ease;
}

.home-card-inner:hover .home-card-overlay {
  background: linear-gradient(180deg, rgba(13, 30, 58, 0.25) 0%, rgba(13, 30, 58, 0.6) 40%, rgba(13, 30, 58, 0.98) 100%);
}

.home-card-top {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.home-card-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.home-card-chip {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.home-card-bottom {
  position: relative;
  z-index: 3;
}

.home-card-tagline {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 6px;
}

.home-card-bottom h3 {
  font-size: 21px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.25;
}

.home-card-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.5;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-card-action {
  display: flex;
  align-items: center;
}

.home-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.home-card-inner:hover .home-card-btn {
  background: var(--green);
  border-color: var(--green);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(93, 158, 47, 0.4);
}

/* Dots */
.home-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.hc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
  padding: 0;
}

.hc-dot.active {
  width: 28px;
  border-radius: 6px;
  background: var(--green);
  box-shadow: 0 2px 8px rgba(93, 158, 47, 0.35);
}

@media (max-width: 992px) {
  .home-card-slide {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

@media (max-width: 640px) {
  .home-card-slide {
    flex: 0 0 100%;
  }
  .home-card-inner {
    height: 380px;
  }
  .home-carousel-header {
    margin-bottom: 20px;
  }
}

/* ========================================================= */
/* HOME HERO INFINITE CAROUSEL SLIDER STYLES                */
/* ========================================================= */
.home-hero {
  position: relative;
  background: #0D1E3A;
  overflow: hidden;
  min-height: 560px;
}

.hero-slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.hero-slide-bg-suryaghar {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 66%;
  background-image: url('../assets/extracted/hero_rooftop.webp');
  background-size: cover;
  background-position: center right;
  z-index: 1;
}

.hero-slide-bg-products {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 66%;
  background-image: url('../assets/stellar/solar-street-light.webp');
  background-size: cover;
  background-position: center right;
  z-index: 1;
}

.hero-slide-bg-solutions {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 66%;
  background-image: url('../assets/stellar/industrial_rooftop_clean.webp');
  background-size: cover;
  background-position: center right;
  z-index: 1;
}

.hero-slide-bg-flagship {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 66%;
  background-image: url('../assets/extracted/hero_residential.webp');
  background-size: cover;
  background-position: center right;
  z-index: 1;
}

.hero-slide-bg-suryaghar::after,
.hero-slide-bg-products::after,
.hero-slide-bg-solutions::after,
.hero-slide-bg-flagship::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0D1E3A 0%, #0D1E3A 25%, rgba(13, 30, 58, 0.84) 50%, rgba(13, 30, 58, 0.25) 76%, transparent 100%);
}

/* Hero Navigation Arrows */
.hero-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(13, 30, 58, 0.7);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.hero-nav-arrow:hover {
  background: var(--green);
  border-color: var(--green);
  color: #ffffff;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 4px 18px rgba(93, 158, 47, 0.45);
}

.hero-arrow-prev {
  left: 20px;
}

.hero-arrow-next {
  right: 20px;
}

/* Hero Indicators */
.hero-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.75);
}

.hero-dot.active {
  width: 36px;
  border-radius: 6px;
  background: var(--green);
  box-shadow: 0 2px 10px rgba(93, 158, 47, 0.5);
}

/* Side Brief Card for Hero Carousel */
.hero-brief-box {
  background: rgba(19, 38, 70, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 24px 26px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
}

.hero-brief-box h3 {
  font-size: 16.5px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

.hero-brief-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.hero-brief-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 14px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-brief-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-brief-item-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-brief-item-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.45;
  margin: 0;
}

/* Responsive queries for hero slider */
@media (max-width: 900px) {
  .hero-slide {
    min-height: auto;
    padding-bottom: 50px;
  }
  .hero-brief-grid {
    grid-template-columns: 1fr;
  }
  .hero-nav-arrow {
    display: none;
  }
}

/* ========================================================= */
/* PRODUCTS & SOLUTIONS INFINITE CAROUSELS                  */
/* ========================================================= */

.cat-carousel-section {
  padding: 64px 0;
  position: relative;
}

.cat-carousel-section.bg-light {
  background: #f8faf6;
  border-top: 1px solid #edf2e9;
  border-bottom: 1px solid #edf2e9;
}

.cat-carousel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.cat-carousel-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cat-carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #dbe3d6;
  background: #ffffff;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.cat-carousel-btn:hover {
  background: var(--green);
  color: #ffffff;
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(93, 158, 47, 0.3);
}

.cat-carousel-btn-play {
  width: 36px;
  height: 36px;
  font-size: 12px;
  background: #f1f5f0;
}

.cat-carousel-viewport {
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  padding: 6px 2px 16px 2px;
  user-select: none;
}

.cat-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);
  will-change: transform;
}

.cat-card-slide {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  box-sizing: border-box;
  cursor: pointer;
}

.cat-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}

.cat-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #132646;
}

.cat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cat-card:hover .cat-card-img img {
  transform: scale(1.08);
}

.cat-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(13, 30, 58, 0.85);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cat-card-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.cat-card-tag {
  font-size: 11px;
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.cat-card-body h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.cat-card-body p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.cat-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}

.cat-card-btn {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.cat-card:hover .cat-card-btn {
  color: var(--green-dark);
  gap: 10px;
}

.cat-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.cat-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
  padding: 0;
}

.cat-dot:hover {
  background: #94a3b8;
}

.cat-dot.active {
  width: 28px;
  border-radius: 6px;
  background: var(--green);
  box-shadow: 0 2px 8px rgba(93, 158, 47, 0.35);
}

@media (max-width: 992px) {
  .cat-card-slide {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 640px) {
  .cat-card-slide {
    flex: 0 0 100%;
  }
  .cat-carousel-header {
    margin-bottom: 20px;
  }
}