:root {
  --deep-blue: #0B1F3A;
  --solar-orange: #F7931E;
  --orange-hover: #D97706;
  --green: #22B573;
  --soft-white: #F7F9FC;
  --charcoal: #1E1E1E;
  --border: #DDE3EA;
  --card-shadow: rgba(11, 31, 58, 0.08);
  --hover-glow: rgba(247, 147, 30, 0.25);
  --footer-bg: #081626;
  --text-muted: #5A6A7A;
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ===================== RESET ===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--soft-white);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ===================== TOP BAR ===================== */
.top-bar {
  background: var(--deep-blue);
  color: #fff;
  font-size: 0.8rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

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

.top-bar-left a {
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.top-bar-left a:hover {
  color: var(--solar-orange);
}

.top-bar-right {
  display: flex;
  gap: 12px;
  align-items: center;
}

.top-bar-right a {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  transition: background 0.2s, color 0.2s;
}

.top-bar-right a:hover {
  background: var(--solar-orange);
}

/* ===================== HEADER / NAV ===================== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgb(239 246 255 / 71%);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 275px;
  flex-direction: column;
}

.logo-icon {
  width: 100%;
  /* height: 44px; */
  /* background: linear-gradient(135deg, var(--solar-orange), #FFB347); */
  /* border-radius: 10px; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-size: 1.4rem; */
  /* box-shadow: 0 4px 14px rgba(247, 147, 30, 0.4); */
}

.logo-text {
  line-height: 1.1;
}

.logo-text .brand {
  /* font-family: var(--font-display); */
  font-size: .9rem;
  color: #fff;
  letter-spacing: 0.5px;
  text-align: center;
}

.logo-text .sub {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
nav {
    width: 1000px;
    display: flex;
    justify-content: flex-end;
}
nav ul {
  display: flex;
  align-items: center;
  gap: 0px;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: #3a6529;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}

nav ul li a:hover {
  color: var(--orange-hover);
  background: rgba(255, 255, 255, 0.08);
}

nav ul li a.active {
  color: var(--solar-orange);
}

.dropdown {
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  background: var(--deep-blue);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  min-width: 200px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all 0.2s;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  
}

nav ul li:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.dropdown li a {
  font-size: 0.85rem;
  padding: 8px 12px;
  border-radius: 6px;
  display: block;
  color: rgba(255, 255, 255, 0.75);
}

.dropdown li a:hover {
  background: rgba(247, 147, 30, 0.12);
  color: var(--solar-orange);
}

.nav-cta {
  background: var(--solar-orange);
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  box-shadow: 0 4px 14px rgba(247, 147, 30, 0.35);
  transition: background 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover {
  background: var(--orange-hover) !important;
  box-shadow: 0 6px 20px var(--hover-glow) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===================== HERO ===================== */
#home {
  min-height: 80vh;
  background: linear-gradient(135deg, #0B1F3A 0%, #0d2a4d 40%, #0a3a6e 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?w=1600&q=80') center/cover no-repeat;
  opacity: 0.12;
}

.hero-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(247, 147, 30, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(34, 181, 115, 0.06) 0%, transparent 40%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0px 24px 0px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247, 147, 30, 0.12);
  border: 1px solid rgba(247, 147, 30, 0.3);
  color: var(--solar-orange);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--solar-orange);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 2.8rem);
  color: #fff;
  line-height: 1.12;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s 0.1s ease both;
}

.hero-title .accent {
  color: var(--solar-orange);
}

.hero-title .green {
  color: var(--green);
}

.hero-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 36px;
  animation: fadeInUp 0.7s 0.2s ease both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.3s ease both;
}

.btn-primary {
  background: var(--solar-orange);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(247, 147, 30, 0.4);
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(247, 147, 30, 0.45);
}

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  border-color: var(--solar-orange);
  color: var(--solar-orange);
  background: rgba(247, 147, 30, 0.06);
}

.hero-stats {
    display: flex;
    gap: 35px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.7s 0.4s ease both;
}

.stat-item .number {
  /* font-family: var(--font-display); */
  font-size: 2rem;
  color: var(--solar-orange);
  font-weight: 900;
  line-height: 1;
}

.stat-item .label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.hero-visual {
  animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-img-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-img-card img {
  width: 100%;
  /* height: 400px; */
  object-fit: cover;
}

.hero-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(11, 31, 58, 0.60);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 12px 18px;
  color: #fff;
}

.hero-img-badge .b-label {
  font-size: 0.72rem;
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-img-badge .b-value {
  /* font-family: var(--font-display); */
  font-size: 1.4rem;
  color: #fff;
}

.hero-img-badge .b-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  letter-spacing: 1px;
  animation: bounce 2s infinite;
}

.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  margin-top: 4px;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================== SECTION SHARED ===================== */
section {
  padding: 80px 0;
}

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

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--solar-orange);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--solar-orange);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--deep-blue);
  line-height: 1.18;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.72;
  max-width: 580px;
}

.section-title.white,
.section-label.white {
  color: #fff;
}

.section-label.white::before {
  background: var(--solar-orange);
}

.section-desc.white {
  color: rgba(255, 255, 255, 0.65);
}

/* ===================== PM YOJANA BANNER ===================== */
.pm-yojana-banner {
  background: linear-gradient(135deg, #0B1F3A 0%, #0a3a6e 100%);
  position: relative;
  overflow: hidden;
  padding: 70px 0;
}

.pm-yojana-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(247, 147, 30, 0.18), transparent 70%);
  border-radius: 50%;
}

.pm-yojana-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(34, 181, 115, 0.12), transparent 70%);
  border-radius: 50%;
}

.pm-inner {
  position: relative;
  z-index: 2;
}

.pm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pm-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247, 147, 30, 0.15);
  border: 1px solid rgba(247, 147, 30, 0.35);
  color: var(--solar-orange);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.pm-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.pm-title .highlight {
  color: var(--solar-orange);
}

.pm-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.pm-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pm-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 14px 16px;
  transition: all 0.25s;
}

.pm-benefit:hover {
  background: rgba(247, 147, 30, 0.07);
  border-color: rgba(247, 147, 30, 0.2);
  transform: translateX(4px);
}

.pm-benefit-icon {
  width: 36px;
  height: 36px;
  background: rgba(34, 181, 115, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--solar-orange);
}
.banner{
   border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}
.pm-benefit-text .title {
  font-weight: 700;
  color: #fff;
  font-size: 0.9rem;
}

.pm-benefit-text .desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.pm-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pm-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s;
}

.pm-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
}

.pm-card.featured {
  background: linear-gradient(135deg, rgba(247, 147, 30, 0.15), rgba(247, 147, 30, 0.05));
  border-color: rgba(247, 147, 30, 0.3);
}

.pm-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.pm-card .card-title {
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
}

.pm-card .card-tag {
  background: var(--green);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pm-card .subsidy-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--solar-orange);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}

.pm-card .subsidy-detail {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.pm-card table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.pm-card table td {
  padding: 6px 0;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pm-card table td:last-child {
  text-align: right;
  color: var(--green);
  font-weight: 600;
}

/* ===================== ABOUT ===================== */
#about {
  background: var(--soft-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px var(--card-shadow);
}

.about-img-main img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 200px;
  border-radius: 14px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-img-accent img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  top: -16px;
  left: -16px;
  background: var(--solar-orange);
  color: #fff;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  box-shadow: 0 8px 24px rgba(247, 147, 30, 0.45);
  z-index: 2;
}

.about-experience-badge .yrs {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.about-experience-badge .yrs-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.5px;
  opacity: 0.85;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px var(--card-shadow);
  transition: all 0.25s;
}

.about-feature:hover {
  border-color: var(--solar-orange);
  box-shadow: 0 6px 20px var(--hover-glow);
  transform: translateX(4px);
}

.about-feature-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, rgba(247, 147, 30, 0.12), rgba(247, 147, 30, 0.04));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.about-feature-title {
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 4px;
  color: var(--deep-blue);
}

.about-feature-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===================== SERVICES ===================== */
#services {
  background: #fff;
}

.services-header {
  text-align: center;
  margin-bottom: 56px;
}

.services-header .section-desc {
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--soft-white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--solar-orange), var(--green));
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  box-shadow: 0 16px 48px var(--hover-glow);
  border-color: transparent;
  transform: translateY(-6px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.featured {
  background: var(--deep-blue);
  border-color: transparent;
}

.service-card.featured::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(247, 147, 30, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.service-card.featured .service-icon {
  background: rgba(247, 147, 30, 0.15);
}

.service-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--deep-blue);
  margin-bottom: 10px;
}

.service-card.featured .service-title {
  color: #fff;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.service-card.featured .service-desc {
  color: rgba(255, 255, 255, 0.6);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--solar-orange);
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 20px;
  transition: gap 0.2s;
}

.service-link:hover {
  gap: 10px;
}

/* ===================== PROJECTS ===================== */
#projects {
  background: var(--soft-white);
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.project-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px var(--card-shadow);
  transition: all 0.3s;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(11, 31, 58, 0.15);
}

.project-card:first-child {
  grid-row: span 2;
}

.project-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s;
}

.project-card:first-child .project-img {
  height: 100%;
  min-height: 300px;
}

.project-card:hover .project-img {
  transform: scale(1.04);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(11, 31, 58, 0.9), transparent);
  padding: 24px;
}

.project-tag {
  background: var(--solar-orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-title {
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}

.project-meta {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===================== PRODUCTS ===================== */
#products {
  background: #fff;
}

.products-header {
  text-align: center;
  margin-bottom: 56px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--soft-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}

.product-card:hover {
  border-color: var(--solar-orange);
  box-shadow: 0 12px 36px var(--hover-glow);
  transform: translateY(-4px);
}

.product-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.product-info {
  padding: 16px;
}

.product-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--deep-blue);
  margin-bottom: 4px;
}

.product-brand {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.product-cta {
  margin-top: 14px;
  width: 100%;
  background: var(--deep-blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.product-cta:hover {
  background: var(--solar-orange);
}

/* ===================== WHY CHOOSE US ===================== */
#why {
  background: var(--deep-blue);
  position: relative;
  overflow: hidden;
}

#why::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center/cover no-repeat;
  opacity: 0.05;
}

.why-inner {
  position: relative;
  z-index: 2;
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  transition: all 0.3s;
}

.why-card:hover {
  background: rgba(247, 147, 30, 0.08);
  border-color: rgba(247, 147, 30, 0.25);
  transform: translateY(-6px);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(247, 147, 30, 0.18), rgba(247, 147, 30, 0.06));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 18px;
  color: var(--solar-orange);
}

.why-title {
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 10px;
}

.why-desc {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.62;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
}

.trust-item {
  background: rgba(255, 255, 255, 0.04);
  padding: 28px;
  text-align: center;
  transition: background 0.2s;
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.07);
}

.trust-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--solar-orange);
  font-weight: 900;
}

.trust-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===================== CALCULATOR ===================== */
#calculator {
  background: var(--soft-white);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.calc-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 8px 40px var(--card-shadow);
  border: 1px solid var(--border);
}

.calc-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--deep-blue);
  margin-bottom: 8px;
}

.calc-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--deep-blue);
  margin-bottom: 8px;
}

.form-input,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--soft-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus {
  border-color: var(--solar-orange);
  box-shadow: 0 0 0 3px rgba(247, 147, 30, 0.12);
}

.slider-wrap {
  margin-top: 4px;
}

.slider {
  width: 100%;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--solar-orange) 0%, var(--border) 0%);
  outline: none;
  cursor: pointer;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--solar-orange);
  box-shadow: 0 2px 8px rgba(247, 147, 30, 0.4);
  transition: transform 0.2s;
}

.slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.calc-btn {
  width: 100%;
  padding: 15px;
  background: var(--solar-orange);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 8px;
  box-shadow: 0 4px 16px rgba(247, 147, 30, 0.35);
}

.calc-btn:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
}

.calc-results {
  display: none;
  background: var(--deep-blue);
  border-radius: 16px;
  padding: 28px;
  margin-top: 24px;
  animation: fadeInUp 0.4s ease;
}

.calc-results.show {
  display: block;
}

.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.result-item {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.result-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.result-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--solar-orange);
  font-weight: 900;
  margin-top: 4px;
}

.result-value.green {
  color: var(--green);
}

.calc-info {
  padding: 0 10px;
}

.calc-info-img {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
}

.calc-info-img img {
  width: 100%;
  /* height: 220px; */
  /* object-fit: cover; */
}

.calc-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.calc-info-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--solar-orange), #FFB347);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.calc-info-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--deep-blue);
}

.calc-info-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 3px;
}

/* ===================== SUBSIDY ===================== */
#subsidy {
  background: #fff;
}

.subsidy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 800px;
}

.subsidy-card {
  border-radius: 18px;
  padding: 25px;
  border: 1.5px solid var(--border);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.main-sub-d {
    display: flex;
    width: 100%;
    /* gap: 10px; */
    flex-direction: row-reverse;
    justify-content: space-between;
}
.main-sub-d img{
  width: 540px;
}
.main-sub-d video{
  width: 400px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.subsidy-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(247, 147, 30, 0.1), transparent);
  transform: translate(30px, -30px);
}

.subsidy-card:hover {
  border-color: var(--solar-orange);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px var(--hover-glow);
}

.subsidy-step {
  font-size: 3rem;
  font-family: var(--font-display);
  font-weight: 900;
  color: rgba(247, 147, 30, 1);
  line-height: 1;
  margin-bottom: 12px;
}

.subsidy-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.subsidy-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--deep-blue);
  margin-bottom: 8px;
}

.subsidy-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.subsidy-table-wrap {
  margin-top: 56px;
  background: var(--deep-blue);
  border-radius: 20px;
  overflow: hidden;
}

.subsidy-table-header {
  padding: 24px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
}

.subsidy-table-header h3 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.2rem;
}

.subsidy-table-tag {
  background: var(--solar-orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

table.subsidy-table {
  width: 100%;
  border-collapse: collapse;
}

table.subsidy-table thead th {
  padding: 14px 24px;
  text-align: left;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.03);
}

table.subsidy-table tbody td {
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

table.subsidy-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

table.subsidy-table .td-green {
  color: var(--green);
  font-weight: 700;
}

table.subsidy-table .td-orange {
  color: var(--solar-orange);
  font-weight: 700;
}

/* ===================== CONTACT ===================== */
#contact {
  background: var(--soft-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info {}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  transition: all 0.25s;
}

.contact-card:hover {
  border-color: var(--solar-orange);
  box-shadow: 0 6px 20px var(--hover-glow);
  transform: translateX(4px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--deep-blue), #0d2a4d);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: #fff;
}

.contact-card-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.contact-card-value {
  font-weight: 700;
  color: var(--deep-blue);
  font-size: 0.95rem;
  margin-top: 2px;
}

.contact-map {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 8px;
}

.contact-map iframe {
  width: 100%;
  height: 200px;
  border: none;
}

.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 40px var(--card-shadow);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--deep-blue);
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--soft-white);
  resize: vertical;
  min-height: 110px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-textarea:focus {
  border-color: var(--solar-orange);
  box-shadow: 0 0 0 3px rgba(247, 147, 30, 0.12);
}

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--solar-orange);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(247, 147, 30, 0.35);
}

.form-submit:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
}

.form-success {
  display: none;
  background: rgba(34, 181, 115, 0.1);
  border: 1px solid rgba(34, 181, 115, 0.3);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 14px;
  align-items: center;
  gap: 8px;
}

/* ===================== CTA BANNER ===================== */
.cta-banner {
  background: linear-gradient(135deg, var(--solar-orange) 0%, #FFB347 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner::before {
  content: '☀';
  position: absolute;
  top: -20px;
  right: 5%;
  font-size: 200px;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  margin-bottom: 14px;
}

.cta-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: #fff;
  color: var(--solar-orange);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.25s;
}

.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* ===================== BLOG ===================== */
#blog {
  background: var(--soft-white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px var(--card-shadow);
}

.blog-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.blog-info {
  padding: 22px;
}

.blog-tag {
  background: rgba(247, 147, 30, 0.1);
  color: var(--solar-orange);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--deep-blue);
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-meta {
  font-size: 0.77rem;
  color: var(--text-muted);
  display: flex;
  gap: 12px;
  align-items: center;
}

.blog-read-link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--solar-orange);
  font-size: 0.82rem;
  font-weight: 700;
  transition: gap 0.2s;
}

.blog-read-link:hover {
  gap: 8px;
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--footer-bg);
  color: #fff;
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand .logo {
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s;
}

.footer-social:hover {
  background: var(--solar-orange);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--solar-orange);
}

.footer-cert {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cert-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  margin-left: 20px;
  font-size: 0.8rem;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--solar-orange);
}

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 250px;
    /* width: 200px; */
    /* height: 200px; */
    /* background: #25d36694; */
    /* border-radius: 5px; */
    display: flex;
    /* gap: 10px; */
    align-items: center;
    justify-content: center;
    /* font-size: 18px; */
    /* box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); */
    z-index: 999;
    cursor: pointer;
    /* line-height: 20px; */
    /* padding: 5px; */
    transition: all 0.3s;
    animation: float 3s ease-in-out infinite;
    text-decoration: none;
    color: white;
}
.whatsapp-float i {
    font-size: 24px;
    background-color: #25d365;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffffff;
}
.whatsapp-float p {
    margin: 0;
    font-size: 14px;
    background-color: #25d365bd;
    padding: 2px 10px 2px 30px;
    border-radius: 0 100px 100px 0;
    position: absolute;
    width: 150px;
    left: 25px;
    z-index: -1;
    border: 1px solid #ffffff;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  transition: all 0.3s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.whatsapp-float:hover {
  animation: none;
  transform: scale(1.1);
}

/* ===================== MOBILE NAV ===================== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--deep-blue);
  z-index: 999;
  flex-direction: column;
  padding: 80px 24px 40px;
  overflow-y: auto;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav ul li a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 13px 16px;
  border-radius: 10px;
  transition: all 0.2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav ul li a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--solar-orange);
}

.mobile-nav-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

.mobile-nav-cta {
  margin-top: 24px;
}

.mobile-nav-cta .btn-primary {
  width: 100%;
  justify-content: center;
  border-radius: 12px;
  padding: 15px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {

  nav ul,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    display: none;
  }

  .hero-stats {
    gap: 20px;
  }

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

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

  .about-img-accent {
    display: none;
  }

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

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

  .project-card:first-child {
    grid-row: auto;
  }

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

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

  .trust-bar {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

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

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

  .top-bar {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

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

  .trust-bar {
    grid-template-columns: 1fr;
  }
}

/* ===================== SCROLL REVEAL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}



.solar-chatbot{
    position:fixed;
    right:25px;
    bottom:5px;
    z-index:9999;
    font-family:'Poppins',sans-serif;
}

/* Floating Button */

.chat-toggle{
    width:100px;
    height:100px;
    border:none;
    /* border-radius:50%; */
    background:none;
    /* box-shadow:0 10px 30px rgba(255,152,0,0.4); */
    cursor:pointer;
    /* overflow:hidden; */
    transition:.3s;
    animation:floatBot 3s ease-in-out infinite;
}

.chat-toggle:hover{
    transform:scale(1.08);
}

.chat-toggle img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Popup */

.chat-popup{
    width:340px;
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,0.18);
    position:absolute;
    bottom:95px;
    right:0;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.4s;
}

.chat-popup.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* Header */

.chat-header{
    background:linear-gradient(135deg,#ff9800,#ff7b00);
    padding:16px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    color:#fff;
}

.chat-user{
    display:flex;
    align-items:center;
    gap:12px;
}

.chat-user img{
    width:50px;
    height:50px;
    border-radius:50%;
    border:2px solid rgba(255,255,255,0.4);
}

.chat-user h4{
    margin:0;
    font-size:18px;
}

.chat-user span{
    font-size:12px;
    opacity:.9;
}

.minimize-btn{
    background:none;
    border:none;
    color:#fff;
    font-size:18px;
    cursor:pointer;
}

/* Body */

.chat-body{
    padding:18px;
    background:#f8f9fb;
    height:250px;
    overflow-y:auto;
}

.bot-msg{
    background:#fff;
    padding:12px 15px;
    border-radius:15px 15px 15px 4px;
    margin-bottom:12px;
    font-size:14px;
    color:#333;
    line-height:1.5;
    box-shadow:0 4px 10px rgba(0,0,0,0.05);
}

/* Footer */

.chat-footer{
    padding:14px;
    display:flex;
    gap:10px;
    background:#fff;
    border-top:1px solid #eee;
}

.chat-footer input{
    flex:1;
    border:1px solid #ddd;
    border-radius:50px;
    padding:12px 15px;
    outline:none;
    font-size:14px;
}

.chat-footer button{
    width:48px;
    border:none;
    border-radius:50%;
    background:linear-gradient(135deg,#ff9800,#ff7b00);
    color:#fff;
    cursor:pointer;
    font-size:16px;
}

/* Floating Animation */

@keyframes floatBot{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-8px);
    }
    100%{
        transform:translateY(0px);
    }
}

/* Mobile */

@media(max-width:576px){

    .chat-popup{
        width:300px;
    }

    .chat-toggle{
        width:65px;
        height:65px;
    }

}

