 @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&family=Noto+Sans+Devanagari:wght@300;400;500;600;700;800&display=swap');

 :root {
     --primary: #1B5E20;
     /* Deep Green */
     --primary-dark: #144517;
     --accent: #FF6F00;
     /* Saffron for CTAs */
     --accent-blue: #0D47A1;
     /* Deep Blue for secondary */
     --bg-main: #ffffff;
     --bg-sub: #f8faf8;
     --text-main: #1a1a1a;
     --text-muted: #555555;
     --border: #e2e8e2;
     --radius-sm: 8px;
     --radius-md: 15px;
     --radius-lg: 25px;
     --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     --container-width: 1300px;
     --header-height: 100px;
     --font-heading: 'Noto Sans Devanagari', 'Poppins', sans-serif;
     --font-body: 'Poppins', 'Noto Sans Devanagari', sans-serif;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
     color: var(--text-main);
     background-color: var(--bg-main);
     line-height: 1.6;
     overflow-x: hidden;
     padding-top: var(--header-height);
 }

 /* Indian Pattern Divider */
 .pattern-divider {
     height: 8px;
     background: repeating-linear-gradient(45deg, var(--primary), var(--primary) 10px, var(--primary-dark) 10px, var(--primary-dark) 20px);
     opacity: 0.1;
     margin: 40px 0;
 }

 /* Organic Background Details */
 body::before {
     content: '';
     position: fixed;
     top: -10%;
     right: -10%;
     width: 600px;
     height: 600px;
     background: radial-gradient(circle, var(--accent-light) 0%, rgba(255, 255, 255, 0) 70%);
     z-index: -1;
     opacity: 0.4;
     filter: blur(80px);
 }

 a {
     text-decoration: none;
     color: inherit;
     transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
 }

 ul {
     list-style: none;
 }

 img {
     max-width: 100%;
     display: block;
 }

 .container {
     max-width: var(--container-width);
     margin: 0 auto;
     padding: 0 30px;
 }

 section {
     padding: 120px 0;
     position: relative;
 }

 /* Typography */
 h1,
 h2,
 h3,
 h4 {
     font-family: var(--font-heading);
     line-height: 1.1;
     font-weight: 700;
 }

 .text-center {
     text-align: center;
 }

 .section-title {
     font-size: 3.5rem;
     font-weight: 800;
     margin-bottom: 20px;
     color: var(--primary-dark);
     letter-spacing: -1.5px;
     position: relative;
     display: inline-block;
 }

 .section-title::after {
     content: '';
     position: absolute;
     bottom: -20px;
     left: 50%;
     transform: translateX(-50%);
     width: 120px;
     height: 5px;
     background: var(--accent);
     border-radius: 10px;
 }

 .section-subtitle {
     font-size: 1.25rem;
     color: var(--text-muted);
     margin-top: 15px;
     font-weight: 500;
 }

 /* Subtle Indian Mandala Divider */
 .mandala-divider {
     text-align: center;
     margin: 60px 0;
     opacity: 0.15;
     font-size: 1.5rem;
 }

 /* Buttons */
 .btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 16px 36px;
     border-radius: 100px;
     font-weight: 700;
     font-size: 1.05rem;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     cursor: pointer;
     border: none;
     text-decoration: none;
     gap: 10px;
     letter-spacing: -0.2px;
 }

 .btn-primary {
     background-color: var(--accent);
     /* Saffron */
     color: white;
     box-shadow: 0 10px 25px rgba(255, 111, 0, 0.2);
 }

 .btn-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 15px 35px rgba(255, 111, 0, 0.3);
     background-color: #e65100;
 }

 .btn-outline {
     background: transparent;
     color: var(--accent-blue);
     /* Deep Blue */
     border: 2px solid var(--accent-blue);
 }

 .btn-outline:hover {
     background: var(--accent-blue);
     color: white;
     transform: translateY(-3px);
 }

 /* Glassmorphism Header */
 header {
     height: var(--header-height);
     display: flex;
     align-items: center;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     background: rgba(255, 255, 255, 0.9);
     backdrop-filter: blur(20px);
     border-bottom: 1px solid rgba(0, 0, 0, 0.05);
     z-index: 1000;
 }

 .nav-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     width: 100%;
     position: relative;
 }

 /* Desktop-only decorative solar image in header */
 .header-solar-img {
     position: absolute;
     right: 0;
     top: 50%;
     transform: translateY(-50%);
     height: 110px;
     width: auto;
     object-fit: contain;
     filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.12));
     pointer-events: none;
     user-select: none;
     z-index: 5;
 }

 @media (max-width: 991px) {
     .header-solar-img {
         display: none;
     }
 }

 .logo {
     display: flex;
     align-items: center;
     gap: 15px;
     font-size: 1.6rem;
     font-weight: 800;
     letter-spacing: -0.5px;
 }

 .logo img {
     height: 60px;
     border-radius: 10px;
     transition: 0.3s;
 }

 .logo:hover img {
     transform: scale(1.05);
 }

 .nav-links {
     display: flex;
     gap: 40px;
 }

 .nav-links a {
     font-weight: 500;
     font-size: 0.95rem;
     opacity: 0.7;
 }

 .nav-links a:hover {
     opacity: 1;
     color: var(--accent);
 }

 /* Hero Section Refinement */
 .hero {
     padding: 180px 0 140px;
     background: linear-gradient(135deg, #ffffff 0%, #f9fdf9 100%);
     position: relative;
     overflow: hidden;
 }

 .hero::before {
     content: '';
     position: absolute;
     top: -10%;
     right: -10%;
     width: 600px;
     height: 600px;
     background: radial-gradient(circle, var(--accent-light) 0%, rgba(255, 255, 255, 0) 70%);
     z-index: 0;
     opacity: 0.5;
 }

 .content-block {
     display: grid;
     grid-template-columns: 1.2fr 1fr;
     align-items: center;
     gap: 80px;
     position: relative;
     z-index: 1;
 }

 .hero h1 {
     font-size: 5.5rem;
     margin-bottom: 35px;
     line-height: 1.1;
     font-weight: 800;
 }

 .hero h1 span {
     color: var(--accent);
     position: relative;
     display: inline-block;
 }

 .hero h1 span::after {
     content: '';
     position: absolute;
     bottom: 20px;
     left: 0;
     width: 100%;
     height: 15px;
     background: var(--accent-light);
     z-index: -1;
     border-radius: 4px;
 }

 .badge {
     display: inline-block;
     padding: 10px 20px;
     background: white;
     border: 1px solid var(--border);
     border-radius: 100px;
     font-weight: 700;
     font-size: 0.85rem;
     color: var(--text-main);
     margin-bottom: 30px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
     backdrop-filter: blur(10px);
 }

 /* Service Cards - Unique Layout */
 .grid-4 {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 24px;
 }

 .card {
     background: white;
     border: 1px solid var(--border);
     border-radius: 24px;
     padding: 25px 20px;
     transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     height: 100%;
 }

 .card:nth-child(2) {
     border: 2px solid var(--accent);
 }

 .card:hover {
     border-color: var(--accent);
     transform: translateY(-8px);
     box-shadow: var(--shadow-hover);
 }

 .card-icon {
     width: 60px;
     height: 60px;
     background: var(--accent-light);
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.8rem;
     margin-bottom: 25px;
 }

 /* Gallery Refinement */
 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
     gap: 30px;
 }

 .gallery-item {
     border-radius: var(--radius-md);
     overflow: hidden;
     background: white;
     box-shadow: var(--shadow);
     transition: 0.5s;
 }

 .gallery-item img {
     height: 300px;
     width: 100%;
     object-fit: cover;
     transition: 0.7s;
 }

 .gallery-item:hover img {
     transform: scale(1.08);
 }

 .gallery-info {
     padding: 25px;
     background: white;
 }

 .gallery-cat {
     font-weight: 700;
     font-size: 0.75rem;
     text-transform: uppercase;
     letter-spacing: 1px;
     color: var(--accent);
     margin-bottom: 8px;
 }

 .gallery-title {
     font-size: 1.25rem;
     font-weight: 700;
     color: var(--text-main);
 }

 /* Mobile Nav Menu - Hidden by default */
 .mobile-nav-toggle {
     display: none;
     font-size: 2rem;
     cursor: pointer;
     color: var(--text-main);
 }

 /* Responsive */
 @media (max-width: 1200px) {
     .hero h1 {
         font-size: 4rem;
     }

     .grid-4 {
         grid-template-columns: repeat(2, 1fr);
     }

     .content-block {
         grid-template-columns: 1fr;
         gap: 60px;
     }

     .img-blob {
         height: 400px;
         max-width: 500px;
         margin: 0 auto;
     }
 }

 @media (max-width: 768px) {
     header {
         height: 85px;
     }

     .logo {
         font-size: 1.4rem;
     }
     
     .logo img {
         height: 55px;
     }

     .nav-links {
         position: fixed;
         top: 85px;
         left: 0;
         width: 100%;
         background: white;
         flex-direction: column;
         gap: 0;
         border-bottom: 5px solid var(--accent);
         transform: translateY(-150%);
         transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
         padding: 20px 0;
         box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
     }

     .nav-links.active {
         transform: translateY(0);
     }

     .nav-links a {
         width: 100%;
         text-align: center;
         padding: 15px;
         border-bottom: 1px solid var(--border);
     }

     .mobile-nav-toggle {
         display: block;
     }

     .header-actions {
         display: none;
     }

     .section-title {
         font-size: 2.2rem;
     }

     .hero h1 {
         font-size: 2.8rem;
     }

     .gallery-grid {
         grid-template-columns: 1fr;
     }
 }

 /* Toast & Loaders */
 #toast-container {
     position: fixed;
     bottom: 40px;
     right: 40px;
     z-index: 2000;
 }

 .toast {
     background: var(--text-main);
     color: white;
     padding: 20px 35px;
     border-radius: var(--radius-md);
     margin-top: 15px;
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
     font-weight: 600;
 }

 .toast-success {
     border-left: 4px solid var(--accent);
 }

 /* Lightbox Modal */
 .modal-backdrop {
     background: rgba(0, 0, 0, 0.9);
     backdrop-filter: blur(10px);
 }

 .modal-content img {
     border-radius: 12px;
 }

 /* Animations Logic */
 .reveal {
     opacity: 1;
     transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
 }

 /* We hide them only if we know JS is working and will reveal them */
 .js-active .reveal {
     opacity: 0;
     transform: translateY(20px);
 }

 .js-active .reveal.active {
     opacity: 1;
     transform: translateY(0);
 }

 /* Staggered animation for grid items */
 .gallery-grid.active .gallery-item:nth-child(1) {
     transition-delay: 0.1s;
 }

 .gallery-grid.active .gallery-item:nth-child(2) {
     transition-delay: 0.2s;
 }

 .gallery-grid.active .gallery-item:nth-child(3) {
     transition-delay: 0.3s;
 }

 .gallery-grid.active .gallery-item:nth-child(4) {
     transition-delay: 0.4s;
 }

 .gallery-grid.active .gallery-item:nth-child(5) {
     transition-delay: 0.5s;
 }

 .gallery-grid.active .gallery-item:nth-child(6) {
     transition-delay: 0.6s;
 }

 .grid-4.active>*:nth-child(1) {
     transition-delay: 0.1s;
 }

 .grid-4.active>*:nth-child(2) {
     transition-delay: 0.2s;
 }

 .grid-4.active>*:nth-child(3) {
     transition-delay: 0.3s;
 }

 .grid-4.active>*:nth-child(4) {
     transition-delay: 0.4s;
 }

 /* Specific delay for grids */
 .grid-4>*,
 .gallery-grid>* {
     opacity: 0;
     transform: scale(0.95);
     transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .grid-4.active>*,
 .gallery-grid.active>* {
     opacity: 1;
     transform: scale(1);
 }

  .whatsapp-float, .call-float {
      position: fixed;
      bottom: 30px;
      width: 60px;
      height: 60px;
      color: white;
      border-radius: 50px;
      text-align: center;
      font-size: 26px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: all 0.3s ease;
  }

  .whatsapp-float {
      right: 20px;
      background-color: #25d366;
  }

  /* Desktop: WhatsApp only */
  @media (min-width: 1024px) {
      .call-float {
          display: none !important;
      }
  }

  /* Mobile: Calling only, move up to avoid overlap */
  @media (max-width: 1023px) {
      .whatsapp-float {
          display: none !important;
      }
      .call-float {
          right: 20px;
          bottom: 100px; /* Elevated to avoid overlapping with bottom bar */
          background-color: #0D47A1; /* Premium Blue */
          color: white;
          border-color: #0D47A1;
      }
  }

  .whatsapp-float:hover, .call-float:hover {
      transform: scale(1.1);
  }

 /* Indian Pattern Divider */
 .section-divider {
     height: 4px;
     width: 80px;
     background: var(--accent);
     margin: 20px auto;
     border-radius: 2px;
 }

 /* ═══════════════════════════════════════════
   HERO — Full-Width Background Image
═══════════════════════════════════════════ */
 .hero-fullbg {
     position: relative;
     min-height: 92vh;
     display: flex;
     align-items: center;
     background: url('assets/img/hero-solar.png') center right / cover no-repeat;
     padding: 0;
     overflow: hidden;
 }

 /* White -> transparent overlay, heavy on left so text is readable */
 .hero-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(100deg,
             rgba(255, 255, 255, 1.00) 0%,
             rgba(255, 255, 255, 0.96) 35%,
             rgba(255, 255, 255, 0.70) 60%,
             rgba(255, 255, 255, 0.10) 100%);
     z-index: 1;
 }

 .hero-fullbg-content {
     position: relative;
     z-index: 2;
     width: 100%;
     padding: 160px 30px 120px;
 }

 /* Content width limiter */
 .hero-content-wrap {
     max-width: 660px;
 }

 /* Compact trust bar above headline */
 .hero-trust-bar {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     background: #f0fdf4;
     border: 1.5px solid #bbf7d0;
     border-radius: 100px;
     padding: 8px 20px;
     margin-bottom: 28px;
 }

 .hero-trust-item {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     font-size: 0.78rem;
     font-weight: 700;
     color: var(--primary);
     letter-spacing: 0.3px;
     white-space: nowrap;
 }

 .hero-trust-dot {
     color: #86efac;
     font-size: 1rem;
     line-height: 1;
 }

 /* Headline */
 .hero-headline-glow {
     position: relative;
     margin-bottom: 28px;
 }

 .hero-headline-glow::before {
     content: '';
     position: absolute;
     top: 50%;
     left: -40px;
     transform: translateY(-50%);
     width: 480px;
     height: 280px;
     background: radial-gradient(ellipse at center, rgba(34, 197, 94, 0.10) 0%, transparent 70%);
     pointer-events: none;
     z-index: 0;
 }

 .hero-title-fullbg {
     font-family: var(--font-heading);
     font-weight: 900;
     line-height: 1.15;
     letter-spacing: -1.5px;
     margin: 0;
     position: relative;
     z-index: 1;
 }

 /* Line 1 — deep green, slightly smaller */
 .hero-line-1 {
     display: block;
     font-size: 3.6rem;
     color: var(--primary-dark);
     margin-bottom: 2px;
     line-height: 1.08;
 }

 /* Line 2 — soft saffron, larger for hierarchy */
 .hero-line-2 {
     display: block;
     font-size: 4.6rem;
     color: #F57C00;
     line-height: 1.05;
 }

 /* Highlight underline on लाखों */
 .hero-highlight {
     position: relative;
     display: inline-block;
 }

 .hero-highlight::after {
     content: '';
     position: absolute;
     bottom: 2px;
     left: 0;
     width: 100%;
     height: 5px;
     background: linear-gradient(90deg, var(--accent), #ffb74d);
     border-radius: 10px;
     opacity: 0.85;
 }

 /* Sub-headline */
 .hero-sub-fullbg {
     font-family: var(--font-heading);
     font-size: 1.35rem;
     font-weight: 700;
     color: var(--primary-dark);
     line-height: 1.45;
     margin-bottom: 30px;
 }

 .hero-sub-small {
     display: block;
     font-size: 1.05rem;
     font-weight: 500;
     color: var(--text-muted);
     margin-top: 8px;
     line-height: 1.5;
 }

 /* CTA row */
 .hero-cta-row {
     display: flex;
     gap: 18px;
     flex-wrap: wrap;
     align-items: center;
     margin-bottom: 32px;
 }

 .btn-hero-primary {
     background: var(--accent);
     color: #ffffff;
     font-family: var(--font-heading);
     font-weight: 800;
     font-size: 1.1rem;
     padding: 18px 40px;
     border-radius: 100px;
     text-decoration: none;
     box-shadow: 0 12px 30px rgba(255, 111, 0, 0.35);
     transition: all 0.3s ease;
     display: inline-block;
     white-space: nowrap;
 }

 .btn-hero-primary:hover {
     background: #e65100;
     transform: translateY(-3px);
     box-shadow: 0 18px 40px rgba(255, 111, 0, 0.45);
 }

 .btn-hero-secondary {
     color: var(--primary);
     font-weight: 700;
     font-size: 1.05rem;
     text-decoration: none;
     border-bottom: 2px solid rgba(27, 94, 32, 0.3);
     padding-bottom: 3px;
     transition: all 0.2s;
 }

 .btn-hero-secondary:hover {
     color: var(--primary-dark);
     border-color: var(--primary);
 }

 /* Trust pills (inside bottom-row) */
 .hero-trust-pills {
     display: flex;
     gap: 10px;
     flex-wrap: wrap;
     align-items: center;
 }

 .hero-pill {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     background: #f0fdf4;
     border: 1px solid #bbf7d0;
     color: var(--primary);
     font-size: 0.82rem;
     font-weight: 700;
     padding: 8px 18px;
     border-radius: 100px;
     white-space: nowrap;
 }

 /* Bottom row: pills + urgency pill side by side */
 .hero-bottom-row {
     display: flex;
     align-items: center;
     gap: 18px;
     flex-wrap: wrap;
     margin-top: 28px;
 }

 /* Amber urgency pill — replaces old red box */
 .hero-urgency-amber {
     display: inline-flex;
     align-items: center;
     gap: 7px;
     font-size: 0.8rem;
     font-weight: 700;
     color: #7c4a00;
     background: #fff8e1;
     border: 1px solid #ffe082;
     padding: 7px 16px;
     border-radius: 100px;
     white-space: nowrap;
 }

 .hero-urgency-amber svg {
     color: #F57C00;
     flex-shrink: 0;
 }

 .hide-mobile {
     display: inline;
 }

 /* ── Mobile overrides ── */
 @media (max-width: 768px) {
     .hero-fullbg {
         min-height: auto;
     }

     .hero-overlay {
         background: linear-gradient(180deg,
                 rgba(255, 255, 255, 0.98) 0%,
                 rgba(255, 255, 255, 0.95) 60%,
                 rgba(255, 255, 255, 0.80) 100%);
     }

     .hero-fullbg-content {
         padding: 120px 20px 80px;
         max-width: 100%;
     }

     .hero-content-wrap {
         max-width: 100%;
     }

     .hero-headline-glow::before {
         display: none;
         /* hide glow on mobile */
     }

     .hero-line-1 {
         font-size: 2rem;
     }

     .hero-line-2 {
         font-size: 2.6rem;
     }

     .hero-sub-fullbg {
         font-size: 1.15rem;
         margin-bottom: 28px;
     }

     .hero-cta-row {
         flex-direction: column;
         gap: 14px;
     }

     .btn-hero-primary {
         width: 100%;
         text-align: center;
         padding: 18px 24px;
     }

     .hero-trust-pills {
         gap: 10px;
     }

     .hero-pill {
         font-size: 0.78rem;
         padding: 7px 14px;
     }

     .hero-trust-bar {
         flex-wrap: wrap;
         gap: 8px;
         padding: 8px 16px;
     }

     .hero-bottom-row {
         flex-direction: column;
         align-items: flex-start;
         gap: 14px;
     }

     .hero-urgency-amber {
         white-space: normal;
         font-size: 0.75rem;
     }

     .hide-mobile {
         display: none;
     }
 }


 .hero-trust-row {
     display: flex;
     gap: 30px;
     margin-top: 40px;
     flex-wrap: wrap;
 }

 .hero-trust-item {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 0.95rem;
     color: var(--text-muted);
     font-weight: 600;
 }

 .subsidy-urgency {
     color: #e53935;
     font-weight: 800;
     margin-top: 25px;
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 0.95rem;
     letter-spacing: 0.2px;
 }

 @media (max-width: 768px) {

     /* ─── Hero mobile overrides ─── */
     .hero {
         padding: 100px 0 60px;
     }

     .hero-title-mobile {
         font-size: 2rem !important;
         line-height: 1.25 !important;
         letter-spacing: -1px !important;
         margin-bottom: 16px !important;
     }

     .hero-subtitle-mobile {
         font-size: 1.05rem !important;
         margin-bottom: 24px !important;
         line-height: 1.4 !important;
     }

     .hero-text {
         text-align: center;
     }

     /* Full-width saffron primary CTA */
     .hero-cta-mobile {
         display: flex;
         flex-direction: column;
         align-items: center;
         gap: 16px;
         width: 100%;
         margin-bottom: 28px;
     }

     .btn-mobile-full {
         width: 100% !important;
         padding: 18px 24px !important;
         font-size: 1.05rem !important;
         border-radius: 100px;
         justify-content: center;
     }

     /* Text-style secondary CTA */
     .btn-text-mobile {
         display: inline-block;
         color: var(--primary);
         font-weight: 700;
         font-size: 1rem;
         text-decoration: none;
         border-bottom: 2px solid rgba(27, 94, 32, 0.25);
         padding-bottom: 2px;
         transition: border-color 0.2s;
     }

     .btn-text-mobile:hover {
         border-color: var(--primary);
     }

     /* 2-column compact trust grid */
     .hero-trust-row-mobile {
         display: grid;
         grid-template-columns: repeat(2, 1fr);
         gap: 12px 20px;
         margin-top: 20px;
         margin-bottom: 20px;
     }

     .hero-trust-row-mobile .hero-trust-item {
         font-size: 0.82rem;
         font-weight: 700;
         color: var(--text-muted);
         justify-content: flex-start;
     }

     /* Subtle urgency */
     .subsidy-urgency-mobile {
         color: #c62828;
         font-weight: 700;
         font-size: 0.85rem;
         text-align: center;
         padding: 10px 16px;
         background: rgba(229, 57, 53, 0.06);
         border-radius: 10px;
         margin-top: 4px;
     }

     /* Hide desktop trust row on mobile */
     .hero-trust-row,
     .subsidy-urgency {
         display: none;
     }

     /* Hero image: show it below text on mobile */
     .hero-right {
         margin-top: 32px;
     }

     .hero-right .img-blob {
         border-radius: 16px !important;
         box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
     }

     /* Grid collapses to single column */
     .content-block {
         grid-template-columns: 1fr;
     }
 }

 @media (max-width: 576px) {
     .footer-grid {
         grid-template-columns: 1fr;
         text-align: center;
     }

     .footer-grid .logo {
         justify-content: center;
     }

     .btn {
         width: 100%;
     }
 }

 /* Admin Specific */
 .admin-table {
     width: 100%;
     border-collapse: collapse;
     margin-top: 20px;
 }

 .admin-table th,
 .admin-table td {
     padding: 15px;
     border-bottom: 1px solid var(--border);
     text-align: left;
 }

 /* Parent Company Branding */
 .parent-branding {
     margin-top: 30px;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 15px;
     opacity: 0.8;
 }

 .parent-logo {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 0.9rem;
     font-weight: 600;
     color: var(--text-muted);
 }

 .parent-logo img {
     height: 35px;
     border-radius: 4px;
     filter: grayscale(1);
     transition: 0.3s;
 }

 .parent-logo:hover img {
     filter: grayscale(0);
 }

 /* Service Coverage Section - Premium */
 .coverage-section {
     padding: 140px 0;
     position: relative;
     overflow: hidden;
     background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
     text-align: center;
 }

 .coverage-section::before {
     content: '';
     position: absolute;
     top: 50%;
     left: 50%;
     width: 80%;
     height: 80%;
     transform: translate(-50%, -50%);
     background-image: url('https://upload.wikimedia.org/wikipedia/commons/b/b3/India_map_transparent.png');
     background-size: contain;
     background-repeat: no-repeat;
     background-position: center;
     opacity: 0.04;
     z-index: 0;
     pointer-events: none;
 }

 .coverage-container {
     position: relative;
     z-index: 1;
     max-width: 1000px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .coverage-title {
     font-family: var(--font-heading);
     font-size: 3.5rem;
     font-weight: 800;
     color: var(--primary-dark);
     margin-bottom: 20px;
     position: relative;
     display: inline-block;
 }

 .coverage-title::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 60px;
     height: 4px;
     background: var(--accent);
     border-radius: 2px;
 }

 .coverage-subtitle {
     font-family: var(--font-heading);
     font-size: 1.25rem;
     color: var(--text-muted);
     margin-bottom: 60px;
     font-weight: 500;
 }

 /* City Ticker */
 .city-ticker-wrap {
     position: relative;
     width: 100%;
     overflow: hidden;
     margin-bottom: 52px;
     /* fade edges */
     -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
     mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
 }

 .city-ticker {
     display: flex;
     width: max-content;
     animation: city-scroll 28s linear infinite;
 }

 .city-ticker:hover {
     animation-play-state: paused;
 }

 .city-track {
     display: flex;
     gap: 16px;
     padding-right: 16px;
     flex-shrink: 0;
 }

 @keyframes city-scroll {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(-50%);
     }
 }

 .city-badge {
     display: inline-flex;
     align-items: center;
     gap: 7px;
     padding: 10px 20px;
     background: white;
     border: 1px solid var(--border);
     border-radius: 100px;
     color: var(--primary);
     font-weight: 600;
     font-size: 0.95rem;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
     transition: background 0.2s, color 0.2s, border-color 0.2s;
     cursor: default;
     user-select: none;
     white-space: nowrap;
     flex-shrink: 0;
 }

 .city-badge svg {
     color: #e53935;
     flex-shrink: 0;
 }

 .city-badge:hover {
     background: var(--primary);
     color: white;
     border-color: var(--primary);
 }

 .city-badge:hover svg {
     color: white;
 }

 .btn-coverage {
     background: var(--accent);
     color: white;
     padding: 20px 48px;
     border-radius: 100px;
     font-size: 1.2rem;
     font-weight: 700;
     text-decoration: none;
     display: inline-block;
     box-shadow: 0 15px 35px rgba(255, 111, 0, 0.25);
     transition: all 0.3s ease;
     border: none;
     cursor: pointer;
     font-family: var(--font-heading);
 }

 .btn-coverage:hover {
     transform: translateY(-5px);
     box-shadow: 0 20px 45px rgba(255, 111, 0, 0.35);
     background: #e66500;
 }

 /* Loader Styles */
 .loader-container {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     padding: 100px 0;
     width: 100%;
 }

 .spinner {
     width: 60px;
     height: 60px;
     border: 6px solid #f3f3f3;
     border-top: 6px solid var(--primary);
     border-radius: 50%;
     animation: spin 1s linear infinite;
     margin-bottom: 25px;
 }

 @keyframes spin {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
 }

 .loader-text {
     font-family: var(--font-heading);
     color: var(--text-muted);
     font-size: 1.1rem;
     font-weight: 500;
 }

 /* Transformation Section - Premium Luxury Storytelling */
 .why-solar-premium {
     padding: 160px 0;
     background: linear-gradient(160deg, #f0fdf4 0%, #ffffff 100%);
     position: relative;
     overflow: hidden;
 }

 .why-solar-premium::after {
     content: '';
     position: absolute;
     bottom: -150px;
     left: -150px;
     width: 600px;
     height: 600px;
     background: radial-gradient(circle, rgba(27, 94, 32, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
     z-index: 0;
 }

 .transformation-wrapper {
     display: flex;
     align-items: center;
     gap: 80px;
     position: relative;
     z-index: 1;
 }

 .pain-point-side {
     flex: 1;
     background: white;
     padding: 80px 60px;
     border-radius: 50px;
     box-shadow: 0 50px 100px rgba(0, 0, 0, 0.04);
     border: 1px solid rgba(27, 94, 32, 0.1);
     position: relative;
     overflow: hidden;
 }

 .pain-point-side::before {
     content: '';
     position: absolute;
     top: 50%;
     left: 50%;
     width: 300px;
     height: 300px;
     background: radial-gradient(circle, rgba(27, 94, 32, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
     transform: translate(-50%, -50%);
     z-index: 0;
     pointer-events: none;
 }

 .pain-text {
     font-family: var(--font-heading);
     font-size: 2.8rem;
     color: var(--text-main);
     line-height: 1.1;
     margin-bottom: 50px;
     font-weight: 500;
     position: relative;
     z-index: 1;
 }

 .pain-text span {
     display: block;
     font-size: 3.5rem;
     font-weight: 900;
     color: var(--primary-dark);
     margin-top: 10px;
     letter-spacing: -2px;
 }

 .transformation-label {
     font-size: 0.9rem;
     color: var(--accent);
     text-transform: uppercase;
     letter-spacing: 3px;
     margin-bottom: 25px;
     display: block;
     font-weight: 800;
     position: relative;
     z-index: 1;
 }

 .transformation-value {
     display: flex;
     align-items: center;
     gap: 30px;
     font-family: var(--font-heading);
     position: relative;
     z-index: 1;
     flex-wrap: wrap;
     /* Prevent overlap on narrow containers */
 }

 .price-block {
     display: flex;
     flex-direction: column;
     min-width: fit-content;
 }

 .price-label {
     font-size: 0.85rem;
     font-weight: 700;
     margin-bottom: 8px;
     text-transform: uppercase;
     letter-spacing: 1px;
     position: relative;
     z-index: 2;
 }

 .old-val {
     color: #e53935;
     text-decoration: line-through;
     text-decoration-thickness: 3px;
     text-decoration-color: rgba(229, 57, 53, 0.3);
     font-size: 2.5rem;
     /* Reduced from 3rem to prevent overlap */
     opacity: 0.6;
     font-weight: 600;
 }

 .arrow-transform {
     font-size: 2rem;
     color: var(--primary);
     opacity: 0.3;
 }

 .new-val {
     color: var(--primary);
     font-size: 4.5rem;
     /* Reduced from 5.5rem to prevent overlap */
     font-weight: 900;
     line-height: 1;
     position: relative;
     text-shadow: 0 10px 30px rgba(27, 94, 32, 0.15);
 }

 .new-val::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 100%;
     height: 12px;
     background: rgba(255, 111, 0, 0.1);
     z-index: -1;
     border-radius: 4px;
 }

 .support-line {
     margin-top: 40px;
     color: var(--text-main);
     font-weight: 600;
     font-size: 1.2rem;
     opacity: 0.9;
     position: relative;
     z-index: 1;
 }

 .trust-cue {
     margin-top: 25px;
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 0.95rem;
     color: var(--text-muted);
     font-weight: 500;
     position: relative;
     z-index: 1;
 }

 .trust-cue::before {
     content: '★';
     color: var(--accent);
 }

 .solution-side {
     flex: 1.2;
 }

 .solution-header {
     margin-bottom: 60px;
 }

 .solution-header h2 {
     font-family: var(--font-heading);
     font-size: 3.8rem;
     color: var(--primary-dark);
     line-height: 1.1;
     margin-bottom: 25px;
     font-weight: 800;
 }

 .solution-header p {
     font-size: 1.6rem;
     color: var(--text-muted);
     font-weight: 600;
     opacity: 0.8;
 }

 .benefit-list-premium {
     display: grid;
     gap: 50px;
 }

 .benefit-item-premium {
     display: flex;
     gap: 30px;
     align-items: flex-start;
 }

 .benefit-item-premium .icon-block {
     font-size: 1.8rem;
     line-height: 1;
     color: var(--primary);
     padding-top: 5px;
 }

 .benefit-item-premium h4 {
     font-family: var(--font-heading);
     font-size: 1.5rem;
     color: var(--text-main);
     margin-bottom: 12px;
     font-weight: 800;
 }

 .benefit-item-premium p {
     color: var(--text-muted);
     font-size: 1.1rem;
     max-width: 450px;
     font-weight: 500;
 }

 @media (max-width: 1024px) {
     .transformation-wrapper {
         flex-direction: column;
         gap: 80px;
     }

     .pain-point-side {
         width: 100%;
         border-radius: 30px;
         padding: 40px;
     }

     .solution-side {
         text-align: left;
     }

     .solution-header h2 {
         font-size: 3rem;
     }
 }

 @media (max-width: 768px) {
     .new-val {
         font-size: 3.2rem;
     }

     .old-val {
         font-size: 1.8rem;
     }

     .pain-text {
         font-size: 2rem;
     }

     .solution-header h2 {
         font-size: 2.5rem;
     }
 }

 /* Solutions Premium Grid */
 .solutions-premium {
     padding: 140px 0;
     background: #ffffff;
 }

 .solutions-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 30px;
 }

 .solution-card {
     background: #fdfdfd;
     padding: 50px;
     border-radius: 40px;
     border: 1px solid var(--border);
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     display: flex;
     flex-direction: column;
     justify-content: flex-start;
     position: relative;
 }

 .solution-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 40px 80px rgba(27, 94, 32, 0.08);
     border-color: var(--primary);
 }

 .solution-icon-box {
     width: 70px;
     height: 70px;
     background: #f0fdf4;
     border-radius: 24px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--primary);
     margin-bottom: 30px;
     font-size: 2rem;
 }

 .solution-card h3 {
     font-size: 1.85rem;
     margin-bottom: 20px;
     color: var(--text-main);
     font-weight: 800;
 }

 .solution-card p {
     color: var(--text-muted);
     font-size: 1.15rem;
     margin-bottom: 35px;
     line-height: 1.7;
     flex-grow: 1;
     font-weight: 500;
 }

 .btn-solution-path {
     font-family: var(--font-heading);
     font-weight: 800;
     color: var(--primary);
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     font-size: 1.1rem;
     transition: 0.3s;
     padding: 10px 0;
     width: fit-content;
     gap: 10px;
     border-bottom: 2.5px solid transparent;
 }

 .btn-solution-path:hover {
     color: var(--accent);
     border-color: var(--accent);
     gap: 15px;
 }

 /* Featured Subsidy Card */
 .solution-card.featured-subsidy {
     background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
     border-color: rgba(27, 94, 32, 0.2);
     box-shadow: 0 20px 40px rgba(27, 94, 32, 0.05);
 }

 .subsidy-badge {
     position: absolute;
     top: 35px;
     right: 35px;
     background: var(--accent);
     color: white;
     padding: 8px 24px;
     border-radius: 100px;
     font-size: 0.85rem;
     font-weight: 800;
     letter-spacing: 0.5px;
     box-shadow: 0 10px 20px rgba(255, 111, 0, 0.3);
 }

 .solution-card.featured-subsidy .btn-solution-path.highlighted {
     background: var(--accent);
     /* Using Accent/Saffron for main conversion */
     color: white;
     padding: 16px 36px;
     border-radius: 100px;
     margin-top: 10px;
     border-bottom: none;
 }

 .solution-card.featured-subsidy .btn-solution-path.highlighted:hover {
     background: #e65100;
     transform: translateY(-3px) scale(1.03);
     box-shadow: 0 15px 35px rgba(255, 111, 0, 0.35);
 }

 @media (max-width: 991px) {
     .solutions-grid {
         grid-template-columns: 1fr;
     }

     .solution-card {
         padding: 40px;
     }
 }

 /* ═══════════════════════════════════════════
   ABOUT PAGE — Trust-Driven Indian Design
═══════════════════════════════════════════ */

 /* Mission section: light green tinted bg */
 .about-mission-section {
     background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 60%);
     padding: 120px 0;
     position: relative;
 }


 .about-text-block {
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 /* Trust badge row */
 .about-trust-row {
     display: flex;
     gap: 28px;
     flex-wrap: wrap;
     padding-top: 10px;
     border-top: 2px solid #dcfce7;
     margin-top: 10px;
 }

 .about-trust-badge {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 12px 0;
 }

 .about-trust-badge svg {
     flex-shrink: 0;
 }

 .about-trust-badge div {
     display: flex;
     flex-direction: column;
     line-height: 1.3;
 }

 .about-trust-badge strong {
     font-size: 1.1rem;
     color: var(--primary-dark);
     font-weight: 800;
 }

 .about-trust-badge span {
     font-size: 0.8rem;
     color: var(--text-muted);
     font-weight: 600;
 }

 /* 3-step process grid */
 .about-steps-grid {
     display: grid;
     grid-template-columns: 1fr auto 1fr auto 1fr;
     gap: 0 20px;
     align-items: start;
 }

 .about-step-item {
     text-align: center;
     padding: 50px 30px;
     background: #f8fdf8;
     border-radius: 24px;
     border: 1.5px solid #dcfce7;
     transition: all 0.3s ease;
 }

 .about-step-item:hover {
     background: #ffffff;
     box-shadow: 0 20px 50px rgba(27, 94, 32, 0.08);
     transform: translateY(-6px);
 }

 .about-step-num {
     font-family: var(--font-heading);
     font-size: 5rem;
     font-weight: 900;
     color: var(--accent);
     opacity: 0.15;
     line-height: 1;
     margin-bottom: -20px;
 }

 .about-step-item h3 {
     font-size: 1.3rem;
     color: var(--primary-dark);
     margin-bottom: 14px;
     position: relative;
     z-index: 1;
 }

 .about-step-item p {
     font-size: 1rem;
     color: var(--text-muted);
     line-height: 1.7;
     font-weight: 500;
 }

 /* Connecting divider arrow between steps */
 .about-step-divider {
     display: flex;
     align-items: center;
     justify-content: center;
     padding-top: 80px;
     color: var(--primary);
     opacity: 0.3;
 }

 .about-step-divider::after {
     content: '→';
     font-size: 2.5rem;
     font-weight: 300;
     color: var(--primary);
 }

 /* Mobile */
 @media (max-width: 768px) {
     .about-trust-row {
         flex-direction: column;
         gap: 16px;
     }

     .about-steps-grid {
         grid-template-columns: 1fr;
         gap: 20px;
     }

     .about-step-divider {
         padding-top: 0;
     }

     .about-step-divider::after {
         content: '↓';
         font-size: 1.8rem;
     }

 }

 /* ── About Hero Section ── */
 .about-hero-section {
     background: linear-gradient(150deg, #f0fdf4 0%, #ffffff 55%, #f8fdf8 100%);
     padding: 150px 0 90px;
     text-align: center;
 }

 .about-hero-inner {
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 .about-hero-badge {
     display: inline-block;
     background: #f0fdf4;
     border: 1.5px solid #86efac;
     color: var(--primary);
     font-size: 0.82rem;
     font-weight: 800;
     letter-spacing: 0.8px;
     padding: 9px 22px;
     border-radius: 100px;
     margin-bottom: 28px;
     text-transform: uppercase;
 }

 .about-hero-title {
     font-family: var(--font-heading);
     font-size: 3.8rem;
     font-weight: 900;
     color: var(--primary-dark);
     line-height: 1.1;
     letter-spacing: -2px;
     margin-bottom: 18px;
 }

 .about-hero-tagline {
     font-family: var(--font-heading);
     font-size: 2rem;
     font-weight: 800;
     color: var(--primary);
     margin-bottom: 28px;
     position: relative;
     display: inline-block;
     padding-bottom: 16px;
 }

 .about-hero-tagline::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 60px;
     height: 4px;
     background: var(--accent);
     border-radius: 10px;
 }

 .about-hero-sub {
     font-size: 1.15rem;
     color: var(--text-muted);
     font-weight: 500;
     max-width: 580px;
     margin: 0 auto;
     line-height: 1.7;
 }

 @media (max-width: 768px) {
     .about-hero-section {
         padding: 120px 0 70px;
     }

     .about-hero-title {
         font-size: 2.4rem;
         letter-spacing: -1px;
     }

     .about-hero-tagline {
         font-size: 1.4rem;
     }

     .about-hero-sub {
         font-size: 1rem;
     }
 }
 
 /* Parent Branding Highlight - SR Green Pulse Media */
 .parent-branding {
     margin-top: 30px !important;
     padding: 25px 40px;
     background: #ffffff;
     border-radius: 20px;
     display: inline-block;
     border: 1.5px solid #f0faf4;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     position: relative;
     overflow: hidden;
 }
 
 .parent-branding::before {
     content: '';
     position: absolute;
     top: 0; left: 0; width: 4px; height: 100%;
     background: var(--primary);
     opacity: 0.8;
 }
 
 .parent-branding:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 45px rgba(27, 94, 32, 0.1);
     border-color: #dcfce7;
 }
 
 .parent-logo {
     display: flex;
     align-items: center;
     gap: 18px;
 }
 
 .parent-logo img {
     height: 50px;
     width: auto;
     border-radius: 12px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     transition: all 0.4s ease;
 }
 
 .parent-branding:hover .parent-logo img {
     transform: scale(1.1) rotate(3deg);
 }
 
 .parent-logo span {
     font-weight: 800;
     color: var(--primary-dark);
     font-size: 1.2rem;
     letter-spacing: 0.5px;
     text-transform: uppercase;
 }
 
 @media (max-width: 768px) {
     .parent-branding {
         padding: 20px 25px;
         margin-top: 25px !important;
         width: 90%;
     }
     .parent-logo img {
         height: 40px;
     }
     .parent-logo span {
         font-size: 1rem;
     }
 }