/* ============================================
   GWM SOLUTION - MAIN STYLESHEET
   Mobile-First, Fully Responsive
   ============================================ */

:root {
  --green-deep:   #1a4a2e;
  --green-mid:    #2d7a4f;
  --green-bright: #3db86e;
  --green-light:  #e8f7ee;
  --accent:       #f0c040;
  --dark:         #0f1f14;
  --text:         #2c3e34;
  --muted:        #6b8070;
  --white:        #ffffff;
  --off-white:    #f5f9f6;
  --border:       #d4e8da;
  --nav-h:        68px;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 24px rgba(26,74,46,0.10);
  --shadow-lg:    0 12px 48px rgba(26,74,46,0.16);
  --font-display: 'montserrat', sans-serif;
  --font-body:    'montserrat', sans-serif;
  --transition:   0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  overflow-y: auto;
}
/* FIX: Jab mobile menu open ho tab page scroll band */
body.menu-open { overflow: hidden; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; height: auto; }
ul { list-style: none; }
button { font-family: var(--font-body); }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

/* ===== NAV CONTAINER ===== */
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--green-deep);
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 2;
}
.logo-icon { font-size: 1.4rem; line-height: 1; }
.logo strong { color: var(--green-bright); }

/* ===== HAMBURGER =====
   FIX: display:none by default, flex on mobile
   Spans always visible — JS sirf class toggle karta hai
*/
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  z-index: 1010;
  /* FIX: min size taaki click area bana rahe */
  min-width: 38px;
  min-height: 38px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
  /* FIX: ensure spans never hidden */
  opacity: 1;
  visibility: visible;
}
/* Animated X when open */
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== MAIN NAV - Desktop: centered absolutely ===== */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-list {
  display: flex; align-items: center; gap: 0;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  display: flex; align-items: center; gap: 0.2rem;
}
.nav-link:hover, .nav-link.active {
  color: var(--green-bright);
  background: var(--green-light);
}
.arrow { font-size: 0.6rem; opacity: 0.6; transition: transform var(--transition); }

/* ===== DROPDOWNS - Desktop hover only ===== */
.has-dropdown { position: relative; }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--transition);
  z-index: 999;
}

/* FIX: Hover dropdown ONLY on non-touch/desktop */
@media (hover: hover) and (pointer: fine) {
  .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* Desktop: JS se .dropdown-open class lagegi click pe */
.has-dropdown.dropdown-open > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.45rem 0.9rem;
  font-size: 0.83rem;
  border-radius: 6px;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}
.dropdown a:hover { background: var(--green-light); color: var(--green-mid); }

/* Wide Services dropdown */
.wide-dropdown {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  min-width: 680px;
  padding: 1rem;
  left: -180px;
}
.dropdown-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.group-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-mid);
  padding: 0.3rem 0.9rem 0.2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.25rem;
}

/* Login Button */
.nav-cta { position: relative; flex-shrink: 0; z-index: 2; }
.btn-login {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: var(--green-deep);
  color: var(--white) !important;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.48rem 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
  border: none;
}
.btn-login:hover { background: var(--green-mid); }
.login-dropdown { right: 0; left: auto; }

@media (hover: hover) and (pointer: fine) {
  .nav-cta:hover .login-dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
}
.nav-cta.dropdown-open > .login-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}

/* ===== MAIN CONTENT ===== */
.site-main { padding-top: var(--nav-h); }

/* ===== CONTAINER ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
  width: 100%;
}

/* ===== SECTION BASE ===== */
section { padding: 4rem 0; }
.section-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title em { font-style: normal; color: var(--green-bright); }
.section-sub { color: var(--muted); max-width: 580px; font-size: 0.95rem; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.mb-2 { margin-bottom: 2rem; }
.mt-2 { margin-top: 2rem; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--green-bright);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 2rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
}
.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61,184,110,0.35);
}
.btn-outline {
  display: inline-block;
  border: 2px solid var(--green-bright);
  color: var(--green-bright);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 0.7rem 1.8rem;
  border-radius: 100px;
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--green-bright); color: var(--white); }

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  height: calc(100svh - var(--nav-h));
  min-height: 480px;
  max-height: 820px;
  overflow: hidden;
  background: var(--dark);
}
.hero-slide {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(10,30,18,0.88) 0%, rgba(10,30,18,0.5) 60%, rgba(10,30,18,0.2) 100%);
  z-index: 1;
}
.hero-bg-placeholder { position: absolute; inset: 0; z-index: 0; }
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 1280px;
  padding: 0 1.5rem;
  text-align: center;
}
.hero-label {
  display: inline-block;
  background: var(--green-bright);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.1rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin: 0 auto 1rem;
  max-width: 700px;
}
.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  margin: 0 auto 1.75rem;
  max-width: 480px;
  line-height: 1.6;
}
.hero-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  width: 42px; height: 42px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.hero-arrow:hover { background: var(--green-bright); border-color: var(--green-bright); }
.hero-arrow.prev { left: 1rem; }
.hero-arrow.next { right: 1rem; }
.hero-controls {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 0.4rem;
  z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 100px;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}
.hero-dot.active { background: var(--green-bright); width: 22px; }

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--off-white); padding: 4.5rem 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--green-light), var(--green-mid));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
}
.about-badge {
  position: absolute;
  bottom: -1.25rem; right: -1.25rem;
  background: var(--green-deep);
  color: var(--white);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge .big { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--accent); line-height: 1; }
.about-badge .small { font-size: 0.75rem; opacity: 0.8; margin-top: 0.2rem; }
.about-checks { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.75rem; }
.check-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.check-item:hover { box-shadow: var(--shadow); }
.check-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.15rem; }
.check-text strong { display: block; font-weight: 600; color: var(--green-deep); font-size: 0.88rem; }
.check-text span { font-size: 0.82rem; color: var(--muted); }

/* ===== STATS STRIP ===== */
.stats-strip { background: var(--green-deep); padding: 3.5rem 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.stat-item { padding: 1rem 0.5rem; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin-top: 0.4rem; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.15); }

/* ===== SERVICES SECTION ===== */
.services-section { background: var(--white); }
.services-tabs {
  display: flex; gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  justify-content: center;
}
.tab-btn {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  border: 2px solid var(--border);
  background: none;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: all var(--transition);
  background: var(--white);
}
.service-card:hover {
  border-color: var(--green-bright);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-icon { font-size: 2.2rem; margin-bottom: 0.9rem; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 0.4rem;
}
.service-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }
.service-link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  margin-top: 0.9rem;
  color: var(--green-bright);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  transition: gap var(--transition);
}
.service-link:hover { gap: 0.5rem; }

/* ===== SDGs SECTION ===== */
.sdgs-section { background: var(--off-white); }
.sdgs-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2rem;
  max-width: 760px;
  margin: 0 auto;
}
.sdg-icon-box {
  width: 130px; height: 130px;
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  text-align: center;
  gap: 0.2rem;
  flex-shrink: 0;
  transition: background var(--transition);
}
.sdg-icon-box .sdg-num { font-size: 2.4rem; line-height: 1; }
.sdg-icon-box .sdg-name { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; padding: 0 0.4rem; line-height: 1.3; }
.sdg-tabs { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1rem; }
.sdg-tab-btn {
  font-size: 0.75rem; font-weight: 600;
  padding: 0.28rem 0.75rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: none; cursor: pointer;
  color: var(--muted);
  transition: all var(--transition);
  font-family: var(--font-display);
}
.sdg-tab-btn.active { background: var(--green-mid); border-color: var(--green-mid); color: white; }
.sdg-content-text h4 { font-family: var(--font-display); font-weight: 700; color: var(--green-deep); margin-bottom: 0.5rem; font-size: 0.95rem; }
.sdg-content-text p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }
.sdg-nav { display: flex; gap: 0.5rem; margin-top: 1.25rem; }
.sdg-nav button {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--green-mid);
  background: none;
  color: var(--green-mid);
  cursor: pointer;
  font-size: 0.85rem;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.sdg-nav button:hover { background: var(--green-mid); color: white; }

/* ===== NEWS SECTION ===== */
.news-section { background: var(--white); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.news-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all var(--transition);
}
.news-card:hover { box-shadow: var(--shadow); border-color: var(--green-bright); }
.news-source {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-bright);
  margin-bottom: 0.6rem;
}
.news-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: var(--green-deep); line-height: 1.5; }
.section-cta { text-align: center; margin-top: 2rem; }

/* ===== CLIENTS ===== */
.clients-section { background: var(--off-white); overflow: hidden; padding: 4rem 0; }
.clients-marquee-wrap {
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  overflow: hidden;
}
.clients-marquee {
  display: flex;
  gap: 0;
  animation: marquee 26s linear infinite;
  width: max-content;
}
.clients-marquee:hover { animation-play-state: paused; }
.client-chip {
  padding: 0.55rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  margin: 0 0.4rem;
  transition: all var(--transition);
}
.client-chip:hover { background: var(--green-light); border-color: var(--green-bright); color: var(--green-deep); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== OUR STORY ===== */
.story-section { background: var(--white); }
.story-card {
  max-width: 840px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  display: flex; align-items: center;
  padding: 3rem 2.5rem;
  min-height: 280px;
}
.story-overlay { position: relative; z-index: 2; color: white; width: 100%; }
.story-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.story-card p { opacity: 0.85; font-size: clamp(0.85rem, 2vw, 0.95rem); line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--off-white); }
.testimonial-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  align-items: stretch;
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.testimonial-video {
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  min-height: 200px;
}
.testimonial-content { padding: 2rem; }
.reviewer-avatar {
  width: 44px; height: 44px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}
.reviewer-name { font-family: var(--font-display); font-weight: 700; color: var(--green-deep); font-size: 0.95rem; }
.reviewer-role { font-size: 0.78rem; color: var(--muted); margin-bottom: 0.9rem; }
.testimonial-text { font-size: 0.86rem; color: var(--text); font-style: italic; line-height: 1.7; }

/* ===== POSTS SECTION ===== */
.posts-section { background: var(--white); }
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.post-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.post-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.post-thumb {
  height: 200px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.post-card:hover .post-thumb img { transform: scale(1.05); }
.post-body { padding: 1.2rem; }
.post-date { font-size: 0.72rem; color: var(--muted); margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-display); font-weight: 600; }
.post-body h4 { font-family: var(--font-display); font-weight: 700; color: var(--green-deep); font-size: 0.9rem; line-height: 1.5; }

/* ===== FOOTER ===== */
.site-footer { background: var(--green-deep); color: white; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding: 4rem 1.25rem 3rem;
  max-width: 1280px;
  margin: 0 auto;
}
.footer-logo { color: white; }
.footer-logo .logo-text { color: white; }
.footer-logo .logo strong { color: var(--accent); }
.footer-tagline { color: rgba(255,255,255,0.65); font-size: 0.83rem; margin-top: 0.9rem; max-width: 260px; line-height: 1.6; }
.footer-social { display: flex; gap: 0.5rem; margin-top: 1.4rem; flex-wrap: wrap; }
.social-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  transition: all var(--transition);
}
.social-btn:hover { background: var(--green-bright); border-color: var(--green-bright); color: white; }
.footer-heading {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { color: rgba(255,255,255,0.68); font-size: 0.83rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-contact li { display: flex; gap: 0.6rem; color: rgba(255,255,255,0.68); font-size: 0.8rem; align-items: flex-start; line-height: 1.5; }
.footer-contact a { color: rgba(255,255,255,0.68); transition: color var(--transition); }
.footer-contact a:hover { color: white; }
.contact-icon { flex-shrink: 0; font-size: 0.85rem; margin-top: 0.15rem; }
.app-badges { display: flex; gap: 0.5rem; margin-top: 1.1rem; flex-wrap: wrap; }
.badge-btn {
  padding: 0.38rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.8);
  transition: all var(--transition);
  white-space: nowrap;
}
.badge-btn:hover { background: rgba(255,255,255,0.12); color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 1.25rem;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.footer-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-legal a:hover { color: white; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.25rem; right: 1.25rem;
  width: 50px; height: 50px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.5);
  z-index: 998;
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ===================================================
   RESPONSIVE BREAKPOINTS
   =================================================== */

/* === TABLET (≤1024px) === */
@media (max-width: 1024px) {
  .wide-dropdown { min-width: 420px; flex-wrap: wrap; left: -120px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .about-grid { gap: 2.5rem; }
  .about-badge { bottom: -1rem; right: -0.75rem; }
}

/* === MOBILE (≤768px) === */
@media (max-width: 768px) {

  /* =============================================
     FIX 1: HAMBURGER — hamesha visible
     ============================================= */
  .hamburger {
    display: flex !important;
    position: relative;
    z-index: 1010;
  }
  /* Spans pe koi override nahi — hamesha dikhenge */
  .hamburger span {
    background: var(--green-deep) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  /* Open state override */
  .hamburger.open span:nth-child(2) {
    opacity: 0 !important;
  }

  /* =============================================
     FIX 2: MOBILE NAV — sirf viewport ke andar
     ============================================= */
  .main-nav {
    position: fixed !important;
    top: var(--nav-h) !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    height: calc(100vh - var(--nav-h)) !important;
    max-height: calc(100vh - var(--nav-h)) !important;

    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 0 2rem;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;

    /* Slide in from right — initially hidden */
    transform: translateX(100%) !important;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    gap: 0;
    justify-content: flex-start;
    z-index: 1005;

    /* Desktop absolute centering reset */
    position: fixed;
  }

  .main-nav.open {
    transform: translateX(0) !important;
    box-shadow: -4px 0 32px rgba(0,0,0,0.10);
  }

  /* =============================================
     FIX 3: DROPDOWNS — mobile pe click se khulenge
     hover se nahi, aur already open nahi honge
     ============================================= */

  /* Mobile pe hover dropdown bilkul band */
  .has-dropdown:hover .dropdown { opacity: 0; visibility: hidden; }
  .nav-cta:hover .login-dropdown { opacity: 0; visibility: hidden; }

  /* Mobile dropdown — default hidden, JS .dropdown-open se dikhega */
  .dropdown {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 0 0 0 !important;
    background: var(--off-white) !important;
    min-width: unset !important;
    /* FIX: default hidden on mobile */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  /* Dropdown open on mobile — JS adds .dropdown-open to .has-dropdown */
  .has-dropdown.dropdown-open > .dropdown {
    max-height: 600px;
    padding: 0 0 0.5rem 1.25rem !important;
  }

  .dropdown a {
    font-size: 0.9rem;
    padding: 0.5rem 0.5rem;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
  }
  .dropdown a:last-child { border-bottom: none; }

  .wide-dropdown {
    flex-direction: column !important;
    min-width: unset !important;
    left: 0 !important;
  }
  .dropdown-group { margin-bottom: 0.5rem; }
  .group-label { padding: 0.5rem 0.5rem 0.3rem; }

  /* Nav link mobile style */
  .nav-list { flex-direction: column; width: 100%; gap: 0; }
  .has-dropdown { width: 100%; }
  .nav-link {
    width: 100%;
    padding: 0.9rem 1.25rem;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    justify-content: space-between;
  }

  /* Arrow rotate when dropdown open */
  .has-dropdown.dropdown-open > .nav-link .arrow {
    transform: rotate(180deg);
  }

  /* Login button */
  .nav-cta {
    width: 100%;
    padding: 1rem 1.25rem 0;
    border-top: 2px solid var(--border);
    margin-top: 0.5rem;
  }
  .btn-login {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    border-radius: 10px;
  }
  .login-dropdown {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    background: var(--off-white) !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-cta.dropdown-open > .login-dropdown {
    max-height: 300px;
    padding: 0.5rem 0 !important;
  }

  /* HERO */
  .hero { height: 88svh; min-height: 420px; max-height: unset; }
  .hero-content { padding: 0 1.25rem; text-align: center; }
  .hero-title { font-size: clamp(1.55rem, 6.5vw, 2.2rem); }
  .hero-sub { font-size: 0.9rem; }
  .hero-arrow { width: 36px; height: 36px; font-size: 0.85rem; }
  .hero-arrow.prev { left: 0.75rem; }
  .hero-arrow.next { right: 0.75rem; }

  /* SECTIONS */
  section { padding: 3rem 0; }

  /* ABOUT */
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image-wrap { max-width: 480px; margin: 0 auto; width: 100%; }
  .about-badge { bottom: -0.75rem; right: -0.5rem; padding: 1rem 1.25rem; }
  .about-badge .big { font-size: 1.6rem; }
  .about-text { text-align: center; }
  .about-checks { text-align: left; }

  /* STATS */
  .stats-grid { grid-template-columns: 1fr; gap: 0; }
  .stat-item { padding: 1.5rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:last-child { border-bottom: none; }
  .stat-divider { display: none; }
  .stat-number { font-size: 3rem; }

  /* SERVICES */
  .services-tabs { justify-content: flex-start; gap: 0.4rem; }
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* SDGs */
  .sdgs-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .sdg-icon-box { width: 110px; height: 110px; margin: 0 auto; }
  .sdg-tabs { justify-content: center; }

  /* NEWS */
  .news-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* STORY */
  .story-card { padding: 2rem 1.5rem; min-height: unset; }

  /* TESTIMONIALS */
  .testimonial-card { grid-template-columns: 1fr; }
  .testimonial-video { min-height: 180px; }
  .testimonial-content { padding: 1.5rem; }

  /* POSTS */
  .posts-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* FOOTER */
  .footer-top { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.25rem 2rem; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.75rem; }
  .footer-legal { justify-content: center; gap: 1rem; }
}

/* === SMALL MOBILE (≤480px) === */
@media (max-width: 480px) {
  :root { --nav-h: 60px; }
  .logo { font-size: 1.1rem; }
  .logo-icon { font-size: 1.2rem; }
  .hero-title { font-size: 1.45rem; }
  .btn-primary { padding: 0.68rem 1.6rem; font-size: 0.88rem; }
  .section-title { font-size: 1.4rem; }
  .about-img-placeholder { font-size: 4rem; }
  .services-grid { grid-template-columns: 1fr; }
  .story-card { padding: 1.75rem 1.25rem; }
  .footer-legal { flex-direction: column; gap: 0.5rem; align-items: center; }
}
/* ==========================================
   GWM COMMON CUSTOM CSS (SAFE VERSION)
========================================== */

/* SECTION SPACING */
.about-section,
.services-section{
    padding:80px 0;
}

/* CARD DESIGN */
.service-card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    border:1px solid rgba(0,0,0,.06);
    transition:all .35s ease;
    height:100%;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.10);
}

/* BLOG FEATURED */
.blog-featured{
    display:grid;
    grid-template-columns:1.4fr 1fr;
    gap:3rem;
    align-items:center;
}

.blog-featured img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:20px;
}

/* BLOG GRID */
.blog-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:2rem;
}

/* BLOG CARD */
.blog-card{
    transition:.35s ease;
}

.blog-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

/* BLOG TAGS */
.blog-tag{
    display:inline-block;
    background:var(--green-light);
    color:var(--green-deep);
    padding:7px 16px;
    border-radius:50px;
    font-size:.75rem;
    font-weight:600;
    margin-bottom:15px;
}

/* CATEGORY PILLS */
.category-pills{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

.category-pills span{
    padding:12px 22px;
    border-radius:50px;
    background:#f4f7f5;
    color:#222;
    font-weight:600;
    transition:.3s ease;
    cursor:pointer;
}

.category-pills span:hover{
    background:var(--green-mid);
    color:#fff;
}

/* IMAGE PLACEHOLDER */
.image-placeholder{
    min-height:260px;
    border-radius:18px;
    background:linear-gradient(
        135deg,
        var(--green-light),
        var(--green-mid)
    );
}

/* TEAM PAGE */
.team-card{
    text-align:center;
}

.team-card img{
    width:140px;
    height:140px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:20px;
}

/* TIMELINE */
.timeline-card{
    position:relative;
    padding-left:25px;
}

.timeline-card::before{
    content:'';
    width:12px;
    height:12px;
    background:var(--green-mid);
    border-radius:50%;
    position:absolute;
    left:0;
    top:8px;
}

/* BUTTON HOVER */
.btn{
    transition:.3s ease;
}

.btn:hover{
    transform:translateY(-2px);
}

/* MOBILE */
@media(max-width:768px){

    .blog-featured{
        grid-template-columns:1fr;
    }

    .service-card{
        padding:24px;
    }

    .about-section,
    .services-section{
        padding:60px 0;
    }

    .blog-grid{
        grid-template-columns:1fr;
    }

    .category-pills{
        justify-content:flex-start;
    }

}
.media-contact{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

@media(max-width:768px){

    .media-contact{
        grid-template-columns:1fr;
    }

}
.chart-line{
display:flex;
flex-direction:column;
gap:15px;
}

.point{
display:flex;
justify-content:space-between;
font-weight:600;
margin-bottom:5px;
}

.bar{
height:10px;
border-radius:50px;
background:linear-gradient(
90deg,
var(--green-mid),
var(--green-deep)
);
}

.impact-row{
display:grid;
grid-template-columns:220px 1fr 60px;
gap:20px;
align-items:center;
margin-bottom:22px;
}

.impact-bar{
height:14px;
background:#e9ecef;
border-radius:50px;
overflow:hidden;
}

.impact-bar div{
height:100%;
background:linear-gradient(
90deg,
var(--green-mid),
var(--green-deep)
);
}

@media(max-width:768px){

.impact-row{
grid-template-columns:1fr;
gap:10px;
}

}
.impact-row{
display:grid;
grid-template-columns:220px 1fr 60px;
gap:20px;
align-items:center;
margin-bottom:20px;
}

.impact-bar{
height:14px;
background:#e9ecef;
border-radius:50px;
overflow:hidden;
}

.impact-bar div{
height:100%;
background:linear-gradient(
90deg,
var(--green-mid),
var(--green-deep)
);
}

@media(max-width:768px){

.impact-row{
grid-template-columns:1fr;
gap:10px;
}

}
.social-links{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-top:15px;
}

.social-links a{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#f3f3f3;
  color:#2e7d32;
  text-decoration:none;
  transition:0.3s;
}

.social-links a:hover{
  background:#2e7d32;
  color:#fff;
  transform:translateY(-3px);
}
/* ===========================
   PRODUCTS PAGE
=========================== */

.products-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.product-card{
background:#fff;
border-radius:24px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.35s;
position:relative;
border:1px solid #edf2f7;
}

.product-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.product-image{
overflow:hidden;
}

.product-image img{
width:100%;
height:280px;
object-fit:cover;
transition:.4s;
}

.product-card:hover .product-image img{
transform:scale(1.06);
}

.sale-badge{
position:absolute;
top:15px;
left:15px;
z-index:10;
background:#16a34a;
color:#fff;
padding:8px 14px;
border-radius:50px;
font-size:.8rem;
font-weight:700;
}

.product-content{
padding:25px;
}

.product-category{
display:inline-block;
font-size:.8rem;
font-weight:700;
color:var(--green-mid);
margin-bottom:10px;
text-transform:uppercase;
}

.product-content h3{
margin-bottom:12px;
}

.rating{
color:#f59e0b;
margin-bottom:15px;
font-size:.95rem;
}

.rating span{
color:#777;
}

.price-box{
display:flex;
align-items:center;
gap:12px;
margin:18px 0;
}

.old-price{
text-decoration:line-through;
color:#999;
font-size:.95rem;
}

.new-price{
font-size:1.5rem;
font-weight:700;
color:var(--green-deep);
}

.stock{
display:inline-block;
padding:6px 12px;
border-radius:50px;
background:#dcfce7;
color:#15803d;
font-size:.8rem;
font-weight:700;
margin-bottom:20px;
}

.product-buttons{
display:flex;
gap:10px;
}

.cart-btn{
flex:1;
border:none;
cursor:pointer;
padding:14px;
border-radius:12px;
font-weight:700;
background:#0f172a;
color:#fff;
transition:.3s;
}

.cart-btn:hover{
transform:translateY(-3px);
}

.buy-btn{
flex:1;
text-decoration:none;
text-align:center;
padding:14px;
border-radius:12px;
font-weight:700;
background:linear-gradient(
135deg,
var(--green-mid),
var(--green-deep)
);
color:#fff;
transition:.3s;
}

.buy-btn:hover{
transform:translateY(-3px);
color:#fff;
}

.product-filter{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:12px;
margin-bottom:40px;
}

.filter-btn{
padding:12px 22px;
border:none;
border-radius:50px;
cursor:pointer;
font-weight:600;
background:#f1f5f9;
transition:.3s;
}

.filter-btn.active{
background:var(--green-deep);
color:#fff;
box-shadow:0 8px 20px rgba(0,0,0,.15);
}

@media(max-width:1200px){
.products-grid{
grid-template-columns:repeat(3,1fr);
}
}

@media(max-width:992px){
.products-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:768px){

.products-grid{
grid-template-columns:1fr;
}

.product-buttons{
flex-direction:column;
}

}