/* GLOBAL RESET & TYPOGRAPHY */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

body {
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
}

h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

h3 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
}

h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
}

p {
  color: #555;
  font-size: 15px;
}

/* SECTION UTILITIES */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

/* HERO SECTION - EXACT MATCH */
.hero {
  background: linear-gradient(135deg, #0f7654 0%, #065f46 100%); /* Adjusted Gradient */
  color: #fff;
  text-align: center;
  padding: 100px 20px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-badge-top {
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
  display: inline-block;
}

.hero h2 {
  color: #fff;
  font-size: 42px;
  max-width: 800px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 40px;
}

.hero-tags {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-tags span {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px;
  backdrop-filter: blur(4px);
}

/* STATS SECTION */
.stats {
  padding: 60px 0;
  background: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: #e6fcf5; /* Light mint bg */
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 15px;
  color: #065f46;
}

.stat-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
}

/* ABOUT SECTION */
.about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-label {
  color: #065f46;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.about p {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.8;
}

.btn-primary {
  display: inline-block;
  background: #065f46;
  color: #fff;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  transition: transform 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #054e39;
}

/* VISION & MISSION */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

.vm-card {
  background: #e6fcf5; /* Light mint background */
  padding: 40px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.vm-icon {
  width: 40px;
  height: 40px;
  background: #065f46;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
}

.vm-icon svg {
  width: 20px;
  height: 20px;
  stroke: white;
}

.vm-card h4 {
  color: #065f46;
}

/* KEY STRENGTHS */
.features {
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  text-align: left;
}

.feature-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 35px;
  border-radius: 12px;
  transition: 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transform: translateY(-5px);
  border-color: transparent;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
  .hero h2 { font-size: 32px; }
  .stats-grid, .vm-grid, .feature-grid { grid-template-columns: 1fr; }
  .hero-tags { flex-direction: column; }
}
/* ===== HEADER RESET & BASE ===== */
.site-header {
  background: #ffffff;
  /* Adds a subtle shadow like the image */
  box-shadow: 0 2px 10px rgba(0,0,0,0.03); 
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

.header-inner {
  max-width: 1400px; /* Wide container to fit everything */
  margin: 0 auto;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== BRANDING (Left) ===== */
.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

/* The Green SS Box */
.logo-box {
  width: 42px;
  height: 42px;
  background-color: #065f46; /* Emerald Green */
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border-radius: 8px; /* Rounded corners */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(6, 95, 70, 0.3);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text h1 {
  font-size: 16px;
  font-weight: 800;
  color: #1f2937; /* Dark Grey/Black */
  letter-spacing: -0.5px;
  margin: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand-text span {
  font-size: 11px;
  color: #9ca3af; /* Light Grey subtitle */
  font-weight: 500;
}

/* ===== NAVIGATION (Center) ===== */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px; /* Spacing between links */
}

.desktop-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280; /* Grey text for normal links */
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.desktop-nav a:hover {
  color: #065f46;
  background: #f0fdf9;
}

/* The Active "Green Pill" Button Style */
.desktop-nav a.active {
  background-color: #065f46;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(6, 95, 70, 0.25); /* Glow effect */
}

/* ===== RIGHT SIDE (Lang & Mobile) ===== */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #4b5563;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.lang-switch svg {
  color: #6b7280;
}

/* ===== MOBILE MENU ===== */
.menu-toggle {
  display: none; /* Hidden on desktop */
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #1f2937;
  transition: 0.3s;
}

.mobile-nav {
  display: none; /* Hidden by default */
  background: white;
  border-top: 1px solid #eee;
  flex-direction: column;
  padding: 10px 0;
}

.mobile-nav a {
  padding: 12px 25px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #f9f9f9;
}

.mobile-nav.open {
  display: flex;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 1024px) {
  .desktop-nav {
    display: none; /* Hide standard nav on tablets/mobile */
  }
  
  .menu-toggle {
    display: flex; /* Show hamburger */
  }

  .brand-text h1 {
    font-size: 14px; /* Slightly smaller text on mobile */
  }
}
/* ===== FOOTER STYLES ===== */
.site-footer {
  background-color: #0f172a; /* Dark Navy Background */
  color: #94a3b8; /* Light Grey Text */
  padding-top: 70px;
  font-size: 14px;
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 50px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.8fr; /* 3 Columns layout */
  gap: 40px;
}

/* Branding Column */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-logo-box {
  width: 32px;
  height: 32px;
  background-color: #065f46; /* Emerald Green Box */
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.footer-desc {
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 320px;
  font-size: 13px;
}

/* CIN Badge */
.cin-badge {
  display: inline-block;
  background-color: #1e293b;
  border: 1px solid #334155;
  color: #cbd5e1;
  padding: 6px 12px;
  border-radius: 6px;
  font-family: monospace;
  font-size: 11px;
}

/* Headings */
.footer-heading {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Address */
address {
  font-style: normal;
  line-height: 1.8;
  color: #94a3b8;
}

/* Links */
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  text-decoration: none;
  color: #94a3b8;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #10b981; /* Green hover */
  padding-left: 5px; /* Subtle slide effect */
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid #1e293b;
  background-color: #0b1120;
  padding: 20px 0;
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: #64748b;
}

.powered-by a {
  color: #10b981;
  text-decoration: none;
  font-weight: 500;
}

.powered-by a:hover {
  text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr; /* Stack into 1 column */
    gap: 30px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  cursor: pointer;
  color: #0a5c3d;
  font-size: 13px;
}

.lang-switch:hover {
  opacity: 0.85;
}

.lang-switch svg {
  stroke: #0a5c3d;
}
/* === FORCE HIDE GOOGLE TRANSLATE UI === */
#google_translate_element,
.goog-te-gadget,
.goog-te-gadget-simple,
.goog-te-gadget span,
.goog-logo-link,
.goog-te-combo,
.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-te-menu-frame {
  display: none !important;
}

/* Remove space created by Google bar */
html, body {
  top: 0 !important;
}
/* FORCE HIDE GOOGLE TRANSLATE TOP BAR */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame {
  display: none !important;
}

body {
  top: 0px !important;
}

html {
  top: 0px !important;
}

/* Hide Google translate popup + branding */
.goog-te-gadget,
.goog-te-gadget-simple,
.goog-logo-link,
.goog-te-balloon-frame {
  display: none !important;
}
/* ===== FORCE HIDE GOOGLE TRANSLATE UI ===== */
.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-te-gadget,
.goog-te-gadget-simple,
.goog-te-combo,
.goog-logo-link,
.goog-te-menu-value,
.goog-te-menu-frame,
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip:hover {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

body {
  top: 0 !important;
  position: static !important;
}
/* FINAL GOOGLE TRANSLATE KILL */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
.goog-logo-link,
.goog-te-gadget,
iframe.goog-te-banner-frame {
  display: none !important;
}

body, html {
  top: 0 !important;
}
/* ===== HARD BLOCK GOOGLE TRANSLATE BANNER ===== */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-te-menu-frame,
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip:hover {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* Remove top space added by Google */
html, body {
  top: 0 !important;
  position: static !important;
}
/* ===== MOBILE MENU WHITE VERSION ===== */

.mobile-nav{
  position:fixed;
  top:0;
  right:-100%;
  width:100%;
  height:100vh;
  background:#ffffff;
  color:#1a1a1a;
  z-index:9999;
  transition:0.4s ease;
  padding:20px;
}

.mobile-nav.show{
  right:0;
}

.mobile-nav-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:1px solid #eee;
  padding-bottom:15px;
  margin-bottom:25px;
}

.mobile-brand span{
  color:#777;
}

.close-menu{
  font-size:32px;
  background:none;
  border:none;
  color:#1a1a1a;
  cursor:pointer;
}

.mobile-links{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.mobile-links a{
  color:#444;
  text-decoration:none;
  font-size:18px;
  padding:14px 16px;
  border-radius:12px;
  border:1px solid #e5e5e5;
  transition:0.3s;
}

/* ✅ ACTIVE = GREEN */
.mobile-links a.active{
  background:#1c7c54;
  color:#fff;
  border-color:#1c7c54;
}

/* HOVER GREEN */
.mobile-links a:hover{
  background:#1c7c54;
  color:#fff;
  border-color:#1c7c54;
}
/* ===== FIX HAMBURGER CLICK ISSUE ===== */

/* keep header above overlay */
.site-header{
  position:relative;
  z-index:10000;
}

/* hamburger must be clickable */
.menu-toggle{
  position:relative;
  z-index:10001;
  cursor:pointer;
}

/* mobile menu overlay */
.mobile-nav{
  position:fixed;
  top:0;
  right:-100%;
  width:100%;
  height:100vh;
  background:#fff;
  transition:0.4s ease;
  z-index:9999;
}

/* when opened */
.mobile-nav.show{
  right:0;
}
/* ===== FINAL MOBILE MENU FIX (ADD AT END ONLY) ===== */

.mobile-nav{
  display:block !important;      /* override old display:none */
  position:fixed !important;
  top:0;
  right:-100%;
  width:100%;
  height:100vh;
  background:#ffffff;
  z-index:9999;
  transition:0.4s ease;
  padding:20px;
}

.mobile-nav.show{
  right:0 !important;
}
/* ===== REDUCE HEADER LOGO SIZE ===== */

.logo-box {
  width: 42px;
  height: 42px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box img{
  width: 108px;     /* 🔥 change this value to adjust size */
  height: auto;
  object-fit: contain;
}
/* ===== LOGO WITHOUT GREEN BOX ===== */

.logo-box{
  width:auto;
  height:auto;
  background:none !important;   /* ❌ remove green box */
  box-shadow:none !important;   /* ❌ remove shadow */
  padding:0;
}

.logo-box img{
  width:150px;     /* adjust logo size here */
  height:auto;
  object-fit:contain;
  display:block;
}
/* ===== LOGO + TAGLINE ONLY HEADER ===== */

.brand-wrapper{
  flex-direction:column;
  align-items:flex-start;
  gap:4px;
}

.brand-tagline{
  font-size:12px;
  color:#9ca3af;
  font-weight:500;
}
/* ===== MOVE NAV BUTTONS SLIGHTLY LEFT ===== */

.desktop-nav{
  margin-left:-150px;   /* 🔥 adjust value to control position */
}
/* ===== CENTER TAGLINE UNDER LOGO ===== */

.brand-wrapper{
  display:flex;
  flex-direction:column;
  align-items:center;   /* 🔥 centers logo + text */
  text-align:center;
}

.brand-text{
  align-items:center;
}

.brand-tagline{
  display:block;
  text-align:center;
  font-size:12px;
  color:#9ca3af;
  margin-top:4px;
}
/* ===== MOBILE MENU ONLY ===== */

@media (min-width:768px){
  .mobile-nav{
    display:none !important;
  }
}
/* ===== MAKE NON-PROFIT TEXT WHITE ===== */

.footer-desc{
  color:#ffffff !important;
}
/* ===== MOBILE STATS 2x2 CARD LAYOUT ===== */

@media (max-width:768px){

  .stats-grid{
    grid-template-columns:repeat(2,1fr) !important;
    gap:20px;
  }

  .stat-item{
    background:#ffffff;
    border-radius:14px;
    padding:20px 10px;
    box-shadow:0 4px 12px rgba(0,0,0,0.06);
  }

}
.parent-btn{
  background:#065f46;
  color:#fff !important;
  padding:8px 14px;
  border-radius:6px;
  margin-left:8px;
  font-weight:600;
}

.parent-btn:hover{
  background:#054e39;
}
/* ===== PARENT ORGANISATION BUTTON STYLE ===== */

.parent-btn{
  background:#065f46;
  color:#ffffff !important;
  padding:8px 16px;
  border-radius:8px;
  font-weight:600;
  transition:0.2s ease;
}

/* 👉 MOVE ONLY IN DESKTOP NAV */
.desktop-nav .parent-btn{
  margin-left:50px;
}

/* STOP DISSOLVE EFFECT */
.desktop-nav a.parent-btn:hover{
  background:#054e39 !important;
  color:#ffffff !important;
}
/* ===== MOBILE PARENT BUTTON CENTERED (NOT BOTTOM) ===== */

@media (max-width:768px){

  .mobile-links .parent-btn{
    display:block;
    width:100%;
    text-align:center;
    margin-top:15px;   /* space from Contact */
  }

}
/* ===== MOBILE PARENT BUTTON SMALLER WIDTH ===== */

@media (max-width:768px){

  .mobile-links .parent-btn{
    width:auto !important;     /* 🔥 remove full width */
    display:inline-block;      
    padding:12px 24px;
    margin:15px auto 0;        /* center horizontally */
    text-align:center;
  }

  .mobile-links{
    text-align:center;         /* center inline button */
  }

}
