/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.gv-floating-emi p{
  font-size: 20px;
}

:root {
  --primary-green: #00a86b;
  --secondary-green: #2ecc71;
  --dark-green: #008553;
  --light-green: #e8f5e9;
  --accent-yellow: #ffd700;
  --accent-orange: #ff9800;
  --dark-bg: #0a1929;
  --light-bg: #f8f9fa;
  --text-dark: #333333;
  --text-light: #ffffff;
  --gray-light: #e0e0e0;
  --gray-medium: #757575;
  --shadow: 0 10px 30px rgba(0, 168, 107, 0.1);
  --transition: all 0.3s ease;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background: var(--light-bg);
  overflow-x: hidden;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--primary-green),
    var(--secondary-green)
  );
  border-radius: 2px;
}

.section-subtitle {
  color: var(--gray-medium);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
  transition: var(--transition);
  z-index: -1;
}

.btn-primary:hover::before {
  left: 0;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 168, 107, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--primary-green);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 168, 107, 0.2);
}

.full-width {
  width: 100%;
  justify-content: center;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ===== SOLAR PARTICLES ===== */
.solar-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.particle {
  position: absolute;
  background: radial-gradient(circle, var(--primary-green), transparent);
  border-radius: 50%;
  animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
  opacity: 0.1;
}

.particle:nth-child(2) {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
  opacity: 0.05;
}

.particle:nth-child(3) {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 15%;
  animation-delay: 4s;
  opacity: 0.08;
}

.particle:nth-child(4) {
  width: 120px;
  height: 120px;
  top: 30%;
  right: 20%;
  animation-delay: 6s;
  opacity: 0.06;
}

.particle:nth-child(5) {
  width: 90px;
  height: 90px;
  bottom: 40%;
  right: 30%;
  animation-delay: 8s;
  opacity: 0.07;
}

/* ===== SUN CURSOR ===== */
.sun-cursor {
  position: fixed;
  width: 50px;
  height: 50px;
  background: radial-gradient(
    circle,
    var(--accent-yellow),
    var(--accent-orange)
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 1;
  filter: blur(10px);
  transition: transform 0.1s ease;
  mix-blend-mode: screen;
}

/* ===== HEADER ===== */
.modern-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  /* padding: 20px 0; */
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.modern-header.scrolled {
  padding: 5px 0;
  background: rgba(255, 255, 255, 0.98);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  /* padding: 0 40px; */
}

.logo-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.logo-main {
  display: flex;
  align-items: center;
  gap: 15px;
}
.logo-main img {
  width: 110px;
  height: auto;
}
.footer-logo img {
  width: 80px;
  height: auto;
}
.modern-nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  position: relative;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
}

.nav-link::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--primary-green);
  overflow: hidden;
  white-space: nowrap;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  transition: clip-path 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.nav-link:hover,
.nav-link.active {
  color: transparent;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 168, 107, 0.3);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-green);
  transition: var(--transition);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: 100px 0;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.gallery-section .section-title {
  color: white;
  -webkit-text-fill-color: white;
  background: none;
}

.gallery-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.gallery-marquee {
  overflow: hidden;
  position: relative;
  height: 400px;
}

.marquee-track {
  display: flex;
  gap: 20px;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee-item {
  position: relative;
  width: 300px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.marquee-item:hover img {
  transform: scale(1.1);
}

.marquee-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
}

/* =====================================================
   ABOUT HERO SECTION (FINAL)
===================================================== */

.about-hero {
  min-height: 78vh;
  background: #ffffffcb;
  display: flex;
  align-items: center;
  justify-content: start;
  text-align: center;
  position: relative;
  overflow: hidden;
  /* padding: 40px 20px 20px; */
}

/* Subtle radial glow */
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 180, 120, 0.12),
    transparent 65%
  );
  z-index: 0;
}

/* Content wrapper */
.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
}

/* =====================================================
   IMAGE INSIDE TEXT (MAIN HEADING)
===================================================== */

.about-hero-title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0;

  background-image: url("./img/solar.jpg");
  background-size: 140%;
  background-position: 0% 50%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  animation: solarMove 20s linear infinite;
}
@keyframes solarMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


/* =====================================================
   ACCENT + TEXT
===================================================== */

.solar-accent {
  width: 120px;
  height: 4px;
  margin: 22px auto 18px;
  background: linear-gradient(90deg, #00b16a, #ffd166);
  border-radius: 10px;
}

.about-hero-brand {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0b2f23;
  letter-spacing: 1px;
}

.about-hero-tagline {
  margin-top: 8px;
  font-size: 1rem;
  color: #144d2c;
  max-width: 520px;
  margin-inline: auto;
}

/* =====================================================
   RIGHT FIXED IMAGE (CLEAN + STABLE)
===================================================== */

.about-hero-side-img {
  width: 480px;
  max-width: 30vw;
  border-radius: 14px;
  background: #ffffff;
  padding: 10px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  z-index: 3;
  margin-right: 90px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 992px) {
  .about-hero-side-img {
    position: static;
    transform: none;
    margin: 30px auto 0;
    display: block;
    /* width: 220px; */
    max-width: 90%;
  }
  .about-hero{
    flex-direction: column;
  }
  .about-hero-title{
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 80vh;
  }

  .about-hero-title {
    font-size: clamp(2.4rem, 10vw, 4rem);
  }
}



/* ===============================
   GREEN VIDYUT – SOLUTIONS SECTION
   =============================== */

.gv-solutions {
  background: radial-gradient(circle at top, #feffff, #ffffff);
  padding: 100px 0;
  color: black;
}

.gv-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Header */
.gv-section-header {
  text-align: center;
  margin-bottom: 70px;
}

.gv-section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 15px;
}

.gv-section-header p {
  color: rgba(0, 0, 0, 0.75);
  max-width: 520px;
  margin: auto;
}

/* Grid */
.gv-solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Card */
.gv-solution-card {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 35px 30px;
  position: relative;
  overflow: hidden;

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gv-solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0,255,200,0.18);
}

.gv-solution-card:hover::before {
  opacity: 1;
}

/* Featured */
.gv-solution-card.featured {
  border: 1px solid rgba(0,255,200,0.4);
  box-shadow: 0 0 60px rgba(0,255,200,0.15);
}

/* Icon */
.gv-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 25px;
}

.gv-icon.residential {
  background: linear-gradient(135deg, #00ffc6, #00bfa6);
}

.gv-icon.commercial {
  background: linear-gradient(135deg, #ffd166, #fca311);
}

.gv-icon.industrial {
  background: linear-gradient(135deg, #ff4d4d, #e10600);
}

.gv-icon i {
  color: #000000;
}

/* Content */
.gv-solution-card h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.gv-solution-card p {
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 22px;
}

/* List */
.gv-solution-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.gv-solution-card ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
}

.gv-solution-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #000000;
}

/* Button */
.gv-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #000000;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
}

.gv-card-btn:hover {
  gap: 14px;
  color: #fff;
}

/* ===== PROCESS SECTION ===== */
.process-section {
  padding: 100px 0;
  background: white;
}

.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}


.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}


.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0, 168, 107, 0.3);
}

.step-content {
  flex: 1;
  padding: 0 40px;
}


.step-content h3 {
  font-size: 1.5rem;
  color: var(--dark-bg);
  margin-bottom: 10px;
}

.step-content p {
  color: var(--gray-medium);
}

.step-icon {
  width: 60px;
  height: 60px;
  background: var(--light-green);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 100px 0;
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.faq-header {
  position: sticky;
  top: 100px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: var(--light-bg);
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  background: var(--light-green);
  box-shadow: 0 10px 30px rgba(0, 168, 107, 0.1);
}

.faq-question {
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark-bg);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary-green);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 25px 25px;
  color: var(--gray-medium);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark-bg), #0a1929);
}

.testimonials-section .section-title {
  color: white;
  -webkit-text-fill-color: white;
  background: none;
}

.testimonials-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto 50px;
  position: relative;
  min-height: 300px;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s ease;
  pointer-events: none;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}

.testimonial-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 40px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.rating {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
  color: var(--accent-yellow);
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: white;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.author-avatar {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
}

.author-info h4 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.author-info span {
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.nav-dots {
  display: flex;
  gap: 10px;
}

.nav-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.nav-dots .dot.active {
  background: var(--primary-green);
  transform: scale(1.2);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 50px 0;
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  position: relative;
  overflow: hidden;
}


.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 20px;
}

.cta-content > p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.cta-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 40px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);

}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row input,
.form-row select {
  flex: 1;
  padding: 18px 25px;
  border: none;
  border-radius: 15px;
  font-size: 1rem;
  background: white;
  color: var(--dark-bg);
  transition: var(--transition);
}

.form-row input:focus,
.form-row select:focus {
  outline: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-row button {
  padding: 18px 40px;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 500;
}

.feature i {
  color: var(--accent-yellow);
}

/* ===== FOOTER ===== */
.modern-footer {
  background: var(--dark-bg);
  color: white;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.footer-logo .logo-icon {
  width: 40px;
  height: 40px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-about {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 30px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary-green);
  transform: translateY(-3px);
}

.footer-col h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: white;
  position: relative;
  padding-bottom: 15px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-green);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  padding-left: 20px;
}

.footer-links a::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: var(--transition);
  color: var(--primary-green);
}

.footer-links a:hover {
  color: var(--primary-green);
  padding-left: 25px;
}

.footer-links a:hover::before {
  opacity: 1;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
  color: var(--primary-green);
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--primary-green);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--primary-green);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 168, 107, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {

  .process-timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    gap: 15px;
  }

  .step-content {
    max-width: 100%;
  }

  .step-number,
  .step-icon {
    margin: 0 auto;
  }
}

@media (max-width: 992px) {
  .header-container {
    padding: 0 20px;
  }

  .modern-nav {
    display: none;
  }

  .modern-nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 25px 20px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }

  .modern-nav.active .nav-link {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
  }

  .header-cta {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }

  .calculator-container,
  .about-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .calculator-form {
    padding-right: 0;
    border-right: none;
    border-bottom: 2px solid var(--gray-light);
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .slide-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 1.6rem;
  }
  .section-subtitle {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .slide-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .form-row {
    flex-direction: column;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .header-container {
    padding: 0 15px;
  }

  .slide-title {
    font-size: 2rem;
  }

  .floating-stats {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .stat-item {
    flex-direction: column;
  }

  .about-stats {
    flex-direction: column;
  }

  .calculator-container {
    padding: 30px 20px;
  }

  .cta-content h2 {
    font-size: 2rem;
  }
}


@media (max-width: 992px) {
  .calculator-container {
    display: flex;
    flex-direction: column;
    padding: 25px 15px;
    gap: 20px;
  }

  .input-group {
    flex-direction: column;
    align-items: stretch;
  }

  .input-group input[type="number"] {
    width: 100%;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .savings-amount {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .floating-stats {
      position: relative;
      bottom: 0;
      margin-top: 10px;
      z-index: 1;
  }

}

/* ===== FIX HORIZONTAL OVERFLOW ===== */
html, body {
  width: 100%;
  overflow-x: hidden !important;
}

/* Fix header width */
.header-container {
  max-width: 1200px !important;

}

/* Floating stats mobile fix */
@media (max-width: 992px) {
  .floating-stats {
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px 10px;
  }

  .stat-item {
    min-width: auto !important;
    flex: 1 1 45%;
  }
}

/* Timeline overflow fix */
@media (max-width: 1200px) {
  .process-timeline::before {
    left: 20px !important;
    transform: none;
  }
}

/* Marquee safety */
.gallery-marquee {
  max-width: 100%;
  overflow: hidden;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}



/* ===== FLOATING ACTION BUTTONS ===== */
.floating-actions {
  position: fixed;
  right: 34px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.fab-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 22px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  position: relative;
}

/* WhatsApp */
.whatsapp-btn {
  background: #25d366;
}

.whatsapp-btn:hover {
  background: #1ebe5b;
  transform: translateY(-5px);
}

/* Call */
.call-btn {
  background: var(--primary-green);
}

.call-btn:hover {
  background: var(--dark-green);
  transform: translateY(-5px);
}

/* Tooltip label */
.fab-label {
  position: absolute;
  right: 65px;
  background: #000;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  white-space: nowrap;
}

.fab-btn:hover .fab-label {
  opacity: 1;
}

/* Mobile */
@media (max-width: 768px) {
  .floating-actions {
    right: 32px;
    bottom: 98px;
  }

  .fab-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .fab-label {
    display: none;
  }
}
/* ===================================================
   ✅ HERO SLIDER – FINAL WORKING CSS
=================================================== */

/* -------- DESKTOP -------- */

.hero-section {
  position: relative;
  margin-top: 90px;              /* NAVBAR FIX */
  width: 100%;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
}

.hero-slide {
  width: 100%;
  height: 90vh;                  /* MAIN HEIGHT */
  background-size: contain !important;
  background-position: center;
  background-repeat: no-repeat;
  display: none;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  display: flex;
}

/* CONTENT */

.slide-content {
  text-align: center;
  max-width: 900px;
  padding: 0 15px;
}

.slide-title {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 8px;
}

.slide-subtitle {
  color: white;
  margin-bottom: 12px;
}

/* BUTTONS */

.hero-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

/* NAV */

.slider-nav {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.slider-prev,
.slider-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  cursor: pointer;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}

.slider-dots .dot.active {
  background: #00a86b;
}

/* STATS DESKTOP */

.floating-stats {
  margin-top: 5px;
}


/* ===================================================
   📱 MOBILE & TABLET
=================================================== */

@media (max-width: 1024px) {

  .hero-section {
    margin-top: 70px;
  }
  .slide-title {
    font-size: 2.2rem;
  }
}


@media (max-width: 768px) {

  .hero-section {
    margin-top: 65px;
  }
  .image-frame img{
    height: auto;
  }

  /* BUTTONS SMALL */
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    padding: 8px 10px;
    font-size: 12px;
  }

  /* NAV SMALL */
  .slider-prev,
  .slider-next {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .slider-dots .dot {
    width: 7px;
    height: 7px;
  }

  /* REMOVE GAP FROM STATS */
  .floating-stats {
    display: none;
  }
    .hero-slide {
    height: 78vh;
  }
}

@media (max-width: 600px) {
  .hero-slide {
    height: 55vh;
  }
}
@media (max-width: 480px) {


  .slide-title {
    display: none;
  }
}
/* ===== FLOATING STATS – DESKTOP ORIGINAL ===== */

.floating-stats {
  display: flex;
  gap: 30px;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  z-index: 10;
  width: 100%;
  align-items: center;
  justify-content: center;
  
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 200px;
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e8fff5, white);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,168,107,0.1);
}

.stat-icon i {
  font-size: 24px;
  color: #00a86b;
}

.stat-content h3 {
  font-size: 1.8rem;
  color: #00a86b;
  margin-bottom: 5px;
}

.stat-content p {
  color: #666;
  font-size: 0.9rem;
}
@media (max-width: 1024px) {
  .floating-stats {
    display: none !important;
  }
}
/* ===== SAVINGS + TRUST SECTION ===== */

.gv-trust-savings {
  padding: 80px 0;
  background: #f8f9fa;
}

.gv-ts-grid {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 40px;
  margin-top: 20px;
}

/* SAVINGS BOX */
.gv-savings-box {
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.gv-savings-box h3 {
  margin-bottom: 15px;
  color: var(--primary-green);
  display: flex;
  gap: 10px;
  align-items: center;
}

.gv-savings-table {
  width: 100%;
  border-collapse: collapse;
}

.gv-savings-table th,
.gv-savings-table td {
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.gv-savings-table th {
  background: var(--light-green);
}

.gv-savings-table .save {
  font-weight: bold;
  color: var(--primary-green);
}

.note {
  font-size: 13px;
  margin-top: 10px;
  color: #666;
}


/* TRUST BOX */
.gv-trust-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.trust-item {
  display: flex;
  gap: 15px;
  background: white;
  padding: 15px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  align-items: center;
}

.trust-item i {
  font-size: 29px;
  color: var(--primary-green);
}

.trust-item h4 {
  margin: 0;
  font-size: 16px;
}

.trust-item p {
  margin: 3px 0 0;
  font-size: 14px;
  color: #666;
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .gv-ts-grid {
    grid-template-columns: 1fr;
  }

  .gv-savings-table th,
  .gv-savings-table td {
    font-size: 13px;
  }
}


/* ===== MODAL ===== */

.calc-modal{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,.6);
  z-index:9999;
}

.calc-card{
  background:white;
  max-width:420px;
  margin:60px auto;
  border-radius:15px;
  padding:20px;
}

.calc-header{
  display:flex;
  justify-content:space-between;
}

.calc-close{
  cursor:pointer;
  font-size:24px;
}

.calc-btn{
  width:100%;
  background:var(--primary-green);
  color:white;
  border:none;
  padding:10px;
  margin:10px 0;
}

.calc-results{
  background:#f5f5f5;
  padding:10px;
  border-radius:10px;
}

.total{
  font-size:16px;
  color:var(--primary-green);
}

/* ==========================================
   SOLAR CALCULATOR POPUP – PREMIUM DESIGN
========================================== */



@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* --- Floating Icon --- */
.calc-float {
  position: fixed;
  bottom: 240px;
  right: 34px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #0b7d3e, #14a44d);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

/* --- MODAL BACKGROUND --- */
.calc-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(5px);
  z-index: 9999;
}

/* --- MAIN CARD --- */
.calc-card {
  background: #ffffff;
  max-width: 460px;
  margin: 40px auto;
  border-radius: 18px;
  padding: 22px;
  animation: slideDown .4s ease;
}

@keyframes slideDown {
  from { transform: translateY(-40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* --- HEADER --- */
.calc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eaf2ee;
  padding-bottom: 10px;
  margin-bottom: 12px;
}

.calc-header h3 {
  color: #0b7d3e;
}

.calc-close {
  cursor: pointer;
  font-size: 24px;
}

/* --- FORM AREA --- */
.form-group {
  margin-bottom: 14px;
}

.form-group label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

/* Range Slider */
.form-group input[type="range"] {
  width: 100%;
  accent-color: #0b7d3e;
  margin-bottom: 6px;
}

/* Number Input */
.form-group input[type="number"],
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
}

/* Calculate Button */
.calc-btn {
  width: 100%;
  background: #0b7d3e;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 30px;
  margin: 8px 0;
  font-weight: 600;
}

/* --- RESULTS BOX --- */
.calc-results {
  background: #f4f9f6;
  padding: 12px;
  border-radius: 12px;
}

.calc-results p {
  margin: 6px 0;
}

.calc-results b {
  color: #0b7d3e;
}

/* Total Savings */
.total {
  font-size: 16px;
  color: #0b7d3e;
  border-top: 1px dashed #cce5d8;
  padding-top: 6px;
  margin-top: 6px;
}

/* Quote Button */
.calc-results .btn-primary.full {
  display: block;
  text-align: center;
  background: #0b7d3e;
  color: white;
  padding: 10px;
  border-radius: 30px;
  margin-top: 8px;
}

/* =============================
   📱 MOBILE RESPONSIVE
============================= */

@media (max-width: 768px) {

  .calc-card {
    width: 92%;
    margin: 20px auto;
    padding: 16px;
  }

  .calc-bounce {
    font-size: 14px;
    padding: 10px 14px;
  }


  .calc-results p {
    font-size: 14px;
  }

  .total {
    font-size: 15px;
  }
}

@media (max-width: 480px) {

  .calc-card {
    margin: 10px auto;
  }

  .calc-header h3 {
    font-size: 16px;
  }
}

/* ===== Section Wrapper ===== */
.gv-calc-cta {
  width: 100%;
  padding: 40px 15px;
  display: flex;
  justify-content: center;
}

/* ===== Card Container ===== */
.caldiv {
  width: 100%;
  max-width: 920px;

  background: linear-gradient(140deg, #0a3627, #041a13);
  border-radius: 20px;

  padding: 45px 25px;

  display: flex;
  justify-content: center;

  border: 1px solid rgba(22, 163, 74, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);

  transition: all 0.3s ease;
}

/* Card Hover */
.caldiv:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(22, 163, 74, 0.2);
}

/* ===== Button now looks like CARD ACTION ===== */
.caldiv button {
  background: rgba(22, 163, 74, 0.15);
  color: white;

  border: 1px solid rgba(22, 163, 74, 0.4);
  border-radius: 50px;

  padding: 18px 32px;

  font-size: 19px;
  font-weight: 600;

  display: flex;
  align-items: center;
  gap: 12px;

  cursor: pointer;
  transition: all 0.3s ease;
}

/* Icon */
.caldiv button i {
  background: #16a34a;
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
}

/* Hover */
.caldiv button:hover {
  background: rgba(22, 163, 74, 0.3);
  transform: scale(1.03);
}

/* ===== Bounce Animation (Keep Same Class) ===== */
.calc-bounce {
  animation: bounce 2.2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {

  .caldiv {
    padding: 30px 15px;
  }

  .caldiv button {
    font-size: 16px;
    padding: 14px 20px;
  }
}

/* ===== FIX: SHOW BETWEEN 768px → 600px WITH SMALL SIZE ===== */

@media (max-width: 768px) and (min-width: 600px) {

  /* SHOW THEM AGAIN */
  .slide-title,
  .slide-subtitle,
  .hero-buttons,
  .btn-primary,
  .btn-secondary {
    display: block !important;
  }

  /* SMALLER SIZE */
  .slide-title {
    font-size: 1.6rem !important;
    margin-bottom: 5px;
  }

  .slide-subtitle {
    font-size: 13px !important;
  }

  .hero-buttons {
    display: flex !important;
    gap: 6px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 8px 12px !important;
    font-size: 12px !important;
  }
}
/* ===== BELOW 600px – HIDE TITLE, SUBTITLE & SECONDARY BUTTON ===== */

@media (max-width: 600px) {

  .slide-title {
    display: none !important;
  }

  .slide-subtitle {
    display: none !important;
  }

  .btn-secondary {
    display: none !important;
  }

  /* Keep primary button visible & nicely positioned */
  .btn-primary {
    display: inline-flex !important;
    margin-top: 100%;
  }
}
/* ===== FOOTER CENTER FIX BELOW 768px ===== */

@media (max-width: 992px) {

  .modern-footer,
  .footer-col,
  .footer-about,
  .footer-links,
  .contact-info,
  .footer-bottom,
  .footer-legal {
    text-align: center !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .footer-social {
    justify-content: center !important;
  }

  .contact-item {
    justify-content: center !important;
  }

  .footer-links a {
    padding-left: 0 !important;
  }

  .footer-links a::before {
    display: none !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 10px;
  }

  .footer-legal {
    justify-content: center !important;
    flex-wrap: wrap;
  }

  .footer-logo {
    justify-content: center !important;
  }
}

/* =========================
   GOVERNMENT REGISTRATION
========================= */

.govt-registration {
  padding: 80px 0;
  background: #f8f9fb;
}

.govt-card {
  display: flex;
  align-items: center;
  gap: 50px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* IMAGE SECTION */
.govt-image {
  flex: 1.1; /* makes image slightly bigger than content */
  height: 100%;
}

.govt-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: contain;   /* keeps image clear & not stretched */
  display: block;
}

/* CONTENT SECTION */
.govt-content {
  flex: 1;
  padding: 50px 45px;
}

.govt-content h3 {
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ff6b35;
  margin-bottom: 12px;
}

.govt-content h2 {
  font-size: 34px;
  line-height: 1.3;
  color: #0a2463;
  margin-bottom: 20px;
}

.govt-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
}

/* =========================
   RESPONSIVE (MOBILE)
========================= */

@media (max-width: 991px) {
  .govt-card {
    flex-direction: column;
    gap: 0;
  }

  .govt-image img {
    min-height: 280px;
  }

  .govt-content {
    padding: 35px 25px;
    text-align: center;
  }

  .govt-content h2 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .govt-image img {
    min-height: 240px;
  }

  .govt-content p {
    font-size: 16px;
  }
}



/* === DESKTOP ZIG-ZAG FIX === */
.process-step {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* LEFT SIDE STEPS */
.process-step:nth-child(odd) {
  justify-content: flex-start;
  text-align: left;
}

/* RIGHT SIDE STEPS */
.process-step:nth-child(even) {
  justify-content: flex-end;
  text-align: left;
}
.step-number {
  order: 1;
}

.step-icon {
  order: 2;
}

.step-content {
  order: 3;
  padding: 0;
  max-width: 360px;
}
/* Push left steps away from center */
.process-step:nth-child(odd) {
  padding-right: 80px;
}

/* Push right steps away from center */
.process-step:nth-child(even) {
  padding-left: 80px;
}
@media (max-width: 768px) {
  .process-timeline::before {
    display: none;
  }
}
@media (max-width: 768px) {

  .process-step {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 0 !important;
    margin-bottom: 50px;
    gap: 14px;
  }

  .step-number {
    order: 1;
    margin: 0 auto;
  }

  .step-icon {
    order: 2;
    margin: 0 auto;
  }

  .step-content {
    order: 3;
    padding: 0;
    max-width: 100%;
  }

}

/* ===============================
   NAV BASE (SAFE)
================================ */

.gv-nav {
    display: flex;
}

.gv-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.gv-menu li {
    position: relative;
}

.gv-menu a {
    text-decoration: none;
    font-weight: 500;
    color: #0b2f23;
    padding: 10px 0;
}

/* ===============================
   DROPDOWN CORE
================================ */

.gv-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.gv-arrow {
    width: 6px;
    height: 6px;
    border-right: 2px solid #0b2f23;
    border-bottom: 2px solid #0b2f23;
    transform: rotate(45deg);
    margin-top: -2px;
    transition: transform 0.3s ease;
}

/* DROPDOWN MENU */
.gv-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 320px;
    background: #ffffff;
    border-radius: 14px;
    padding: 10px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 999;
}

/* ITEMS */
.gv-dropdown-menu li a {
    display: block;
    padding: 17px 22px;
    font-size: 0.95rem;
    color: #24332d;
    transition: background 0.25s ease, padding-left 0.25s ease;
}

.gv-dropdown-menu li a:hover {
    background: #f1fbf6;
    padding-left: 28px;
    color: #18b56a;
}

/* ===============================
   DESKTOP HOVER
================================ */

@media (min-width: 992px) {
    .gv-dropdown:hover .gv-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(8px);
    }

    .gv-dropdown:hover .gv-arrow {
        transform: rotate(225deg);
    }
}

/* ===============================
   MOBILE PREP (CLICK READY)
================================ */

@media (max-width: 991px) {

    .gv-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .gv-dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .gv-dropdown.active .gv-dropdown-menu {
        display: block;
    }

    .gv-arrow {
        margin-left: auto;
        transform: rotate(45deg);
    }

    .gv-dropdown.active .gv-arrow {
        transform: rotate(225deg);
    }
}
/* REMOVE BULLETS FROM DROPDOWN */
.gv-dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.gv-dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}
/* ======================================
   🔧 HEADER + NAV FIX (FINAL OVERRIDE)
====================================== */

/* Desktop nav */
.gv-nav {
  display: flex;
}

/* Remove legacy nav system completely */
.modern-nav {
  display: none !important;
}

/* Header row stays clean */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===============================
   MOBILE NAV FIX
================================ */

@media (max-width: 992px) {

  /* Hide nav by default */
  .gv-nav {
    display: none;
    width: 100%;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-radius: 0 0 20px 20px;
  }

  /* Show nav when active */
  .gv-nav.active {
    display: block;
  }

  /* Vertical menu */
  .gv-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .gv-menu li {
    width: 100%;
  }

  .gv-menu li a {
    display: block;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
  }

  /* Hide desktop CTA */
  .header-cta.desktop-cta {
    display: none;
  }

  /* Show mobile CTA inside menu */
  .mobile-cta {
    margin-top: 15px;
  }

  .mobile-cta .cta-btn {
    width: 100%;
    justify-content: center;
  }

  /* Hamburger visible */
  .mobile-toggle {
    display: flex;
  }
}

/* ------------------------------------------------------------------------ */

/* ===============================
   GLOBAL MODERN DESIGN SYSTEM
   (COMPACT – FULL CSS, NOTHING REMOVED)
   =============================== */

/* CSS Variables for consistent theming */
:root {
    --gv-primary: #0a7c5d;
    --gv-primary-light: #0d9c74;
    --gv-primary-dark: #075c44;
    --gv-secondary: #1a3c34;
    --gv-accent: #ff9e1b;
    --gv-light: #f8faf9;
    --gv-gray: #6b7280;
    --gv-gray-light: #e5e7eb;
    --gv-white: #ffffff;
    --gv-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    --gv-shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.08);
    --gv-radius: 10px;
    --gv-radius-lg: 16px;
    --gv-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modern Hero Section */
.gv-modern-hero {
    background: linear-gradient(135deg, #f8faf9 0%, #e8f4f0 100%);
    padding: 4rem 0;
    overflow: hidden;
    position: relative;
    margin-top: 80px;
}

.gv-modern-hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10, 124, 93, 0.03) 0%, transparent 100%);
    z-index: 1;
}

.gv-modern-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.75rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.gv-modern-hero-content {
    padding-right: 1.5rem;
}

.gv-hero-badge {
    display: inline-block;
    background: var(--gv-accent);
    color: var(--gv-white);
    padding: 0.45rem 1.3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.8px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.gv-modern-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--gv-secondary);
    margin-bottom: 1.25rem;
}

.gv-highlight {
    color: var(--gv-primary);
    position: relative;
    display: inline-block;
}

.gv-highlight::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(10, 124, 93, 0.2);
    z-index: -1;
}

.gv-modern-subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--gv-gray);
    margin-bottom: 2rem;
}

.gv-modern-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gv-primary);
    color: var(--gv-white);
    padding: 0.9rem 2.2rem;
    border-radius: var(--gv-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--gv-transition);
    border: 2px solid var(--gv-primary);
    gap: 0.6rem;
    font-size: 1.05rem;
}

.gv-modern-button:hover {
    background: var(--gv-primary-light);
    border-color: var(--gv-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--gv-shadow);
}

.gv-modern-hero-visual {
    position: relative;
}

.gv-hero-image-container {
    position: relative;
    border-radius: var(--gv-radius-lg);
    overflow: hidden;
    box-shadow: var(--gv-shadow-lg);
}

.gv-hero-main-img {
    width: 100%;
    height: 420px;
    object-fit: contain;
    display: block;
}

.gv-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10, 124, 93, 0.1) 0%, transparent 60%);
}

.gv-hero-stats {
    display: flex;
    justify-content: space-between;
    background: var(--gv-white);
    padding: 1.25rem 1.75rem;
    border-radius: var(--gv-radius);
    box-shadow: var(--gv-shadow);
    margin-top: -1.75rem;
    position: relative;
    z-index: 3;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.gv-stat-item {
    text-align: center;
    flex: 1;
    padding: 0 0.75rem;
}

.gv-stat-item:not(:last-child) {
    border-right: 1px solid var(--gv-gray-light);
}

.gv-stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gv-primary);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.gv-stat-label {
    font-size: 0.8rem;
    color: var(--gv-gray);
    font-weight: 500;
}

/* Section Header */
.gv-section-header {
    margin-bottom: 2.5rem;
}

.gv-section-header.gv-center {
    text-align: center;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.gv-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gv-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.gv-section-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--gv-gray);
}

/* ===============================
   EVERYTHING BELOW CONTINUES
   SAME STRUCTURE, SAME ORDER,
   SAME RULES — JUST COMPACTED
   =============================== */


/* Process Timeline */
.gv-process-section {
    padding: 4rem 0;
    background: var(--gv-white);
}

.gv-process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.gv-process-step {
    position: relative;
    padding: 1.75rem;
    background: var(--gv-light);
    border-radius: var(--gv-radius);
    transition: var(--gv-transition);
    border: 1px solid transparent;
}

.gv-process-step:hover {
    border-color: var(--gv-primary);
    transform: translateY(-4px);
    box-shadow: var(--gv-shadow);
}

.gv-step-number {
    position: absolute;
    top: -0.9rem;
    left: 1.75rem;
    background: var(--gv-primary);
    color: var(--gv-white);
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.15rem;
}

.gv-step-content {
    margin-top: 1.25rem;
}

.gv-step-image {
    width: 170px;
    height: 170px;
    background: var(--gv-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: var(--gv-shadow);
}

.gv-step-image img {
    width: 136px;
    height: 136px;
    object-fit: contain;
}

.gv-step-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gv-secondary);
    margin-bottom: 0.6rem;
}

.gv-step-description {
    color: var(--gv-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Story Section */
.gv-story-section {
    padding: 4rem 0;
    background: var(--gv-light);
}

.gv-story-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.gv-story-card-modern {
    background: var(--gv-white);
    padding: 2rem;
    border-radius: var(--gv-radius);
    box-shadow: var(--gv-shadow);
    transition: var(--gv-transition);
    border-left: 4px solid transparent;
}

.gv-story-card-modern:hover {
    border-left-color: var(--gv-primary);
    transform: translateY(-4px);
    box-shadow: var(--gv-shadow-lg);
}

.gv-story-card-icon {
    color: var(--gv-primary);
    margin-bottom: 1.25rem;
}

.gv-story-card-content p {
    color: var(--gv-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* India Section */
.gv-india-section {
    padding: 4rem 0;
    background: var(--gv-white);
}

.gv-india-container-modern {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.75rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.gv-india-visual {
    position: relative;
}

.gv-india-image-wrapper {
    border-radius: var(--gv-radius-lg);
    overflow: hidden;
    box-shadow: var(--gv-shadow-lg);
    position: relative;
}

.gv-india-main-img {
    width: 100%;
    height: 520px;
    object-fit: contain;
    display: block;
}

.gv-india-image-overlay {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--gv-primary);
    color: var(--gv-white);
    padding: 0.45rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.8px;
}

.gv-india-content-modern {
    padding-left: 0.75rem;
}

.gv-india-text-content {
    margin-bottom: 1.75rem;
}

.gv-india-paragraph {
    margin-bottom: 1.25rem;
}

.gv-india-paragraph p {
    color: var(--gv-gray);
    line-height: 1.6;
    font-size: 1.05rem;
}

.gv-india-features {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.gv-india-feature {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--gv-secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

.gv-feature-check {
    background: var(--gv-primary);
    color: var(--gv-white);
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* ----------------------------------------------------------- */
/* Benefits Section */
.gv-benefits-section {
    padding: 4rem 0;
    background: var(--gv-light);
}

.gv-benefits-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.gv-benefit-card-modern {
    background: var(--gv-white);
    padding: 2rem 1.75rem;
    border-radius: var(--gv-radius);
    text-align: center;
    transition: var(--gv-transition);
    border: 1px solid transparent;
}

.gv-benefit-card-modern:hover {
    border-color: var(--gv-primary);
    transform: translateY(-4px);
    box-shadow: var(--gv-shadow);
}

.gv-benefit-icon-modern {
    margin-bottom: 1.25rem;
}

.gv-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(10, 124, 93, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--gv-primary);
}

.gv-benefit-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gv-secondary);
    margin-bottom: 0.6rem;
}

.gv-benefit-description {
    color: var(--gv-gray);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Features Section */
.gv-features-section {
    padding: 4rem 0;
    background: var(--gv-white);
}

.gv-features-container-modern {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.75rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.gv-features-visual {
    position: relative;
}

.gv-features-image-wrapper {
    border-radius: var(--gv-radius-lg);
    overflow: hidden;
    box-shadow: var(--gv-shadow-lg);
    position: relative;
}

.gv-features-main-img {
    width: 100%;
    height: 520px;
    object-fit: contain;
    display: block;
}

.gv-features-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10, 124, 93, 0.1) 0%, transparent 60%);
}

.gv-features-list-modern {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.gv-feature-item-modern {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--gv-light);
    border-radius: var(--gv-radius);
    transition: var(--gv-transition);
}

.gv-feature-item-modern:hover {
    background: rgba(10, 124, 93, 0.05);
    transform: translateX(4px);
}

.gv-feature-number {
    background: var(--gv-primary);
    color: var(--gv-white);
    min-width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.gv-feature-text h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gv-secondary);
    margin-bottom: 0.4rem;
}

.gv-feature-text p {
    color: var(--gv-gray);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Expertise Section */
.gv-expertise-section {
    padding: 4rem 0;
    background: var(--gv-light);
}

.gv-expertise-card {
    background: var(--gv-white);
    padding: 3rem;
    border-radius: var(--gv-radius-lg);
    box-shadow: var(--gv-shadow);
    max-width: 1000px;
    margin: 0 auto;
}

.gv-expertise-content {
    max-width: 760px;
    margin: 0 auto 2.5rem;
}

.gv-expertise-paragraph {
    margin-bottom: 1.25rem;
}

.gv-expertise-paragraph p {
    color: var(--gv-gray);
    line-height: 1.6;
    font-size: 1.05rem;
    text-align: center;
}

.gv-expertise-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--gv-gray-light);
}

.gv-expertise-stat {
    text-align: center;
}

.gv-expertise-stat-number {
    display: block;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--gv-primary);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.gv-expertise-stat-label {
    font-size: 0.9rem;
    color: var(--gv-gray);
    font-weight: 500;
}

/* FAQ Section */
.gv-faq-section {
    padding: 4rem 0;
    background: var(--gv-white);
}

.gv-faq-accordion-modern {
    max-width: 760px;
    margin: 2.5rem auto 0;
}

.gv-faq-item-modern {
    border-bottom: 1px solid var(--gv-gray-light);
}

.gv-faq-question-modern {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gv-secondary);
    transition: var(--gv-transition);
}

.gv-faq-question-modern:hover {
    color: var(--gv-primary);
}

.gv-faq-icon {
    transition: var(--gv-transition);
    flex-shrink: 0;
}

.gv-faq-question-modern[aria-expanded="true"] .gv-faq-icon {
    transform: rotate(180deg);
}

.gv-faq-answer-modern {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.gv-faq-answer-modern p {
    padding-bottom: 1.25rem;
    color: var(--gv-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Section */
.gv-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--gv-primary) 0%, var(--gv-primary-dark) 100%);
}

.gv-cta-card {
    background: var(--gv-white);
    border-radius: var(--gv-radius-lg);
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    box-shadow: var(--gv-shadow-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.gv-cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gv-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.gv-cta-title .gv-highlight {
    color: var(--gv-primary);
}

.gv-cta-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--gv-gray);
    margin-bottom: 2rem;
}

.gv-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gv-primary);
    color: var(--gv-white);
    padding: 0.9rem 2.2rem;
    border-radius: var(--gv-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--gv-transition);
    border: 2px solid var(--gv-primary);
    gap: 0.6rem;
    font-size: 1.05rem;
}

.gv-cta-button:hover {
    background: var(--gv-primary-light);
    border-color: var(--gv-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--gv-shadow);
}

.gv-cta-image-wrapper {
    border-radius: var(--gv-radius);
    overflow: hidden;
    box-shadow: var(--gv-shadow);
}

.gv-cta-image-wrapper img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gv-modern-hero-container,
    .gv-india-container-modern,
    .gv-features-container-modern,
    .gv-cta-card {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .gv-modern-title {
        font-size: 2.5rem;
    }

    .gv-section-title {
        font-size: 2rem;
    }

    .gv-expertise-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .gv-modern-hero {
        padding: 3rem 0;
    }

    .gv-modern-title {
        font-size: 2.2rem;
    }

    .gv-hero-stats {
        flex-direction: column;
        gap: 1.25rem;
        max-width: 100%;
    }

    .gv-stat-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid var(--gv-gray-light);
        padding-bottom: 1.25rem;
    }

    .gv-process-timeline,
    .gv-story-grid-modern,
    .gv-benefits-grid-modern {
        grid-template-columns: 1fr;
    }

    .gv-expertise-card,
    .gv-cta-card {
        padding: 2rem;
    }

    .gv-expertise-stats {
        flex-direction: column;
        gap: 1.75rem;
    }

    .gv-modern-button,
    .gv-cta-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .gv-modern-title {
        font-size: 1.8rem;
    }

    .gv-section-title {
        font-size: 1.8rem;
    }

    .gv-modern-hero-container,
    .gv-india-container-modern,
    .gv-features-container-modern {
        padding: 0 1rem;
    }
}

/* 🔥 FORCE CALCULATOR ABOVE EVERYTHING */
.calc-modal {
  z-index: 999999 !important;
}
.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Video */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Desktop default */
}

/* 🔥 MOBILE FIX */
@media (max-width: 768px) {
  .hero-video {
    height: 70vh;
    background: #000; /* fills empty space cleanly */
  }

  .hero-video-bg {
    object-fit: contain; /* NO CROP */
  }
}

/* ===============================
   TOP STRIP
================================ */

.header-top-strip {
  width: 100%;
  font-size: 1rem;
  transition: var(--transition);
}

.top-strip-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8px 40px;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 30px;
  margin-right: 160px;
}


.top-strip-inner a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
}

.divider {
  color: rgba(255,255,255,0.6);
}

/* ===============================
   TRANSPARENT DEFAULT HEADER
================================ */

.modern-header {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

/* ===============================
   SCROLLED STATE
================================ */

.modern-header.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.modern-header.scrolled .top-strip-inner a {
  color: #0b2f23;
}

.modern-header.scrolled .divider {
  color: #999;
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 992px) {

  .top-strip-inner {
    justify-content: center;
    padding: 8px 20px;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .header-top-strip{
    display: none;
  }

  .header-top-strip {
    background: transparent;
  }

  .modern-header.scrolled .header-top-strip {
    background: #f8f8f8;
  }
}
/* =====================================================
   PM SOLAR EMI CALCULATOR – FULL & FINAL CSS
   (REPLACE ALL OLD EMI / POPUP CSS WITH THIS)
===================================================== */

/* ===== FLOATING EMI BUTTON ===== */
.gv-floating-emi {
  position: fixed;
  right: 34px;
  bottom: 320px;
  padding: 14px 22px;
  background: linear-gradient(135deg, #1cff94, #0BBB2E);
  color: #042010;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  z-index: 9998;
  box-shadow: 0 10px 30px rgba(0, 255, 150, 0.45);
  transition: all 0.3s ease;
}

.gv-floating-emi:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 255, 150, 0.65);
}

/* ===== POPUP WRAPPER ===== */
.gv-emi-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.gv-emi-modal.active {
  display: block;
}

/* ===== DARK OVERLAY ===== */
.gv-emi-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(3px);
}

/* ===== POPUP BOX ===== */
.gv-emi-popup {
  position: relative;
  max-width: 1100px;
  margin: 60px auto;
  background: radial-gradient(circle at top, #0A1929, #020b14);
  padding: 45px;
  border-radius: 20px;
  z-index: 2;
  animation: gvScaleIn 0.3s ease;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(0, 255, 160, 0.15);
}

/* ===== OPEN ANIMATION ===== */
@keyframes gvScaleIn {
  from {
    transform: scale(0.92);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ===== CLOSE BUTTON ===== */
.gv-emi-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 32px;
  background: none;
  border: none;
  color: #0BBB2E;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.gv-emi-close:hover {
  transform: rotate(90deg);
}

/* ===== HEADINGS ===== */
.gv-emi-popup h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #0BBB2E;
  margin-bottom: 12px;
}

.gv-emi-subtext {
  text-align: center;
  color: #9adcbf;
  margin-bottom: 45px;
  font-size: 15px;
}

/* ===== GRID LAYOUT ===== */
.gv-emi-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 45px;
}

/* ===== CARDS ===== */
.gv-emi-box,
.gv-emi-result {
  background: linear-gradient(180deg, #0f1f18, #0a120e);
  padding: 34px;
  border-radius: 16px;
  border: 1px solid rgba(0, 255, 160, 0.18);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
}

/* ===== LABELS ===== */
.gv-emi-box label {
  display: block;
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #ffffff;
}

/* ===== INPUTS ===== */
.gv-emi-box input,
.gv-emi-box select {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 160, 0.25);
  outline: none;
  background: #0A1929;
  color: #ffffff;
  font-size: 15px;
}

.gv-emi-box input:focus,
.gv-emi-box select:focus {
  border-color: #7dffb3;
  box-shadow: 0 0 0 2px rgba(125, 255, 179, 0.15);
}

.gv-emi-box small {
  color: #0BBB2E;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

/* ===== RANGE VALUE ===== */
#gvTenureValue {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: #9adcbf;
}

/* ===== CALCULATE BUTTON ===== */
.gv-emi-btn {
  width: 100%;
  margin-top: 30px;
  padding: 16px;
  background: linear-gradient(135deg, #1cff94, #0BBB2E);
  color: #042010;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.gv-emi-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 255, 150, 0.35);
}

/* ===== RESULTS ===== */
.gv-emi-result h3 {
  margin-bottom: 28px;
  color: #0BBB2E;
  font-size: 22px;
}

.gv-result-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 16px;
  border-bottom: 1px dashed rgba(125, 255, 179, 0.2);
  padding-bottom: 12px;
}

.gv-result-item span {
  color: #bfffe1;
}

.gv-result-item strong {
  color: #0BBB2E;
  font-size: 18px;
}

/* ===== NOTE ===== */
.gv-emi-note {
  font-size: 12px;
  color: #9adcbf;
  margin-top: 22px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .gv-emi-popup {
    margin: 30px 14px;
    padding: 28px 22px;
  }

  .gv-emi-grid {
    grid-template-columns: 1fr;
  }

  .gv-emi-popup h2 {
    font-size: 28px;
  }

  .gv-floating-emi {
    right: 39px;
    bottom: 320px;
    padding: 12px 18px;
    font-size: 14px;
  }
}
.gv-emi-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
  overflow-y: auto;   /* ✅ ENABLE SCROLL */
  -webkit-overflow-scrolling: touch;
}
.gv-emi-popup {
  position: relative;
  max-width: 1100px;
  margin: 40px auto;
  max-height: calc(100vh - 80px); /* ✅ FIT SCREEN */
  overflow-y: auto;               /* ✅ SCROLL INSIDE POPUP */
}
@media (max-width: 768px) {
  .gv-emi-popup {
    margin: 20px 12px;
    padding: 24px 18px;
    max-height: calc(100vh - 40px);
  }
  .sun-cursor{
    display: none;
  }
}
body.gv-popup-open {
  overflow: hidden;
}

/* Floating EMI Button - hidden by default */
.gv-floating-emi {
  display: none;
}
.gv-menu .open-gv-emi{
  display: none;
}
@media (max-width: 992px) {
  .gv-menu .open-gv-emi{
    display: block;
  }
}