/* 
   AquaSaathi – Complete CSS Redesign
   Design System: Premium, Clean, Modern, Bio-inspired (Aqua-Green)
   Primary Colors:
     - Blue:  #0089dd  (Water / Aquaculture)
     - Green: #00ce10  (Prosperity / Sustainable Growth)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&family=Gelasio:ital,wght@0,400;0,500;1,400&display=swap');

/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
  /* Colors */
  --primary-blue: #0089dd;
  --primary-green: #00ce10;
  --primary-blue-rgb: 0, 137, 221;
  --primary-green-rgb: 0, 206, 16;

  --blue-dark: #006eb3;
  --green-dark: #00a40d;
  --blue-light: rgba(0, 137, 221, 0.08);
  --green-light: rgba(0, 206, 16, 0.08);

  --navy-blue: #0b1329;
  --dark-slate: #1e293b;
  --slate-text: #475569;
  --light-bg: #f8fafc;
  --white: #ffffff;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 4px 30px rgba(0, 137, 221, 0.06);

  /* Elevation */
  --card-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --hover-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);

  /* Misc */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 16px;
  --container-width: 1200px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--dark-slate);
  background-color: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy-blue);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

section {
  padding: 100px 0;
  position: relative;
}

.section-bg-light {
  background-color: var(--light-bg);
}

/* =============================================
   SECTION HEADER (shared)
   ============================================= */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2.5px;
  color: var(--primary-blue);
  background: var(--blue-light);
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  color: var(--navy-blue);
}

.section-title span {
  color: var(--primary-green);
}

.section-desc {
  color: var(--slate-text);
  font-size: 1.4rem;
  line-height: 1.8;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 1.25rem;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--blue-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 137, 221, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 137, 221, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-blue);
  border: 2px solid rgba(0, 137, 221, 0.2);
}

.btn-secondary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}

.btn-outline-green {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}

.btn-outline-green:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 206, 16, 0.3);
}

/* =============================================
   STICKY HEADER & NAVIGATION
   ============================================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: var(--transition);
}

header.scrolled {
  padding: 4px 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  transition: var(--transition);
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 45px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--navy-blue);
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary-blue);
}

/* =============================================
   LANGUAGE TOGGLE PILL
   ============================================= */
.lang-toggle-container {
  display: flex;
  align-items: center;
  background: var(--light-bg);
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  padding: 3px;
  position: relative;
  width: 90px;
  height: 38px;
  cursor: pointer;
  user-select: none;
}

.lang-toggle-btn {
  flex: 1;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  z-index: 2;
  color: var(--slate-text);
  transition: var(--transition);
}

.lang-toggle-btn.active {
  color: var(--white);
}

.lang-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 42px;
  height: 30px;
  background: linear-gradient(135deg, var(--primary-blue), var(--blue-dark));
  border-radius: 50px;
  z-index: 1;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 137, 221, 0.25);
}

.lang-toggle-container.telugu .lang-slider {
  transform: translateX(40px);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--navy-blue);
  transition: var(--transition);
}

.btn-desktop-only {
  display: none;
}

.mobile-cta-only {
  display: none;
}

/* =============================================
   1. HERO SECTION  —  WHITE BACKGROUND, SPLIT LAYOUT
   ============================================= */
.hero {
  
  background: var(--white);
  display: flex;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero .container {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

/* Hide decorative accents to prevent clashing with image corner curves */
.hero::before,
.hero::after {
  display: none;
}

.hero-content {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

.hero-logo-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 15px;
  margin-bottom: 40px;
  position: relative;
  z-index: 10;
}

/* =============================================
   2. ABOUT SECTION
   ============================================= */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-content-block {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-text {
  width: 100%;
}

.about-text p {
  color: var(--navy-blue);
  font-size: 1.15rem;
  line-height: 1.85;
  margin-bottom: 25px;
  text-align: center;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* Legacy about grid (if still used) */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--hover-shadow);
  aspect-ratio: 4/3;
  background: var(--light-bg);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-content p {
  color: var(--slate-text);
  margin-bottom: 22px;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Founder Quote Card */
.founder-quote-card {
  background: var(--light-bg);
  border-left: 4px solid var(--primary-blue);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  padding: 30px 35px;
  font-family: 'Gelasio', Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--dark-slate);
  line-height: 1.8;
  margin-bottom: 30px;
  position: relative;
}

.founder-quote-card span,
.founder-quote-card .founder-name {
  display: block;
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 14px;
  color: var(--primary-blue);
}

/* Legacy founder quote overlay */
.founder-quote {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 110, 179, 0.95) 70%, rgba(0, 110, 179, 0.8));
  color: var(--white);
  padding: 25px;
  font-family: 'Gelasio', Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.founder-quote span {
  display: block;
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
  color: var(--primary-green);
}

/* Values */
.values-heading {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  margin-top: 80px;
  margin-bottom: 40px;
  color: var(--navy-blue);
  text-shadow: 0 2px 20px #ffffff, 0 0 10px #ffffff, 0 0 5px #ffffff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--border-radius);
  padding: 45px 35px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hover-shadow);
}

.value-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.value-icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  background: var(--blue-light);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.value-card:nth-child(2) .value-icon {
  background: var(--green-light);
  color: var(--primary-green);
}

.value-card h4 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--navy-blue);
}

.value-card p {
  font-size: 1.25rem;
  color: var(--slate-text);
  line-height: 1.7;
  margin-bottom: 0;
}

.value-tagline {
  font-style: italic;
  color: var(--primary-blue);
  font-size: 0.9rem;
  margin-top: 10px;
}

/* =============================================
   3. WHAT WE DO SECTION
   ============================================= */
.what-we-do-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  font-size: 1.15rem;
  color: var(--slate-text);
  line-height: 1.8;
}

/* Process Flow Bar */
.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: var(--white);
  padding: 25px 40px;
  border-radius: var(--border-radius);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy-blue);
  margin-bottom: 55px;
  flex-wrap: wrap;
  box-shadow: 0 10px 30px rgba(0, 137, 221, 0.04);
  border: 2px solid rgba(0, 137, 221, 0.12);
}

.flow-arrow {
  color: var(--primary-green);
  font-size: 1.5rem;
  font-weight: 700;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 45px;
}

.step-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 45px 35px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: var(--transition);
  border-top: 4px solid var(--primary-blue);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--primary-blue);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.step-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--navy-blue);
}

.step-card p {
  font-size: 1.25rem;
  color: var(--slate-text);
  line-height: 1.7;
}

.step-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-card ul li {
  font-size: 1rem;
  color: var(--slate-text);
  padding: 5px 0;
  padding-left: 22px;
  position: relative;
  line-height: 1.6;
}

.step-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: 700;
  font-size: 0.95rem;
}

/* Legacy card grids */
.points-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.points-grid .point-card-full {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 35px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.points-grid .point-card-full:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.points-grid .point-card-full:nth-child(5) {
  grid-column: 1 / -1;
  max-width: 620px;
  margin: 0 auto;
  width: 100%;
}

.point-card-full .point-num-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--primary-blue);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.point-card-full:nth-child(even) .point-num-badge {
  background: var(--green-light);
  color: var(--primary-green);
}

.point-card-full .point-header h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
  color: var(--navy-blue);
  padding-right: 50px;
}

.point-card-full .point-tagline {
  font-family: var(--font-heading);
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.point-card-full:nth-child(even) .point-tagline {
  color: var(--primary-green);
}

.compare-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 15px 0;
  border-top: 1px dashed #e2e8f0;
  border-bottom: 1px dashed #e2e8f0;
  padding: 18px 0;
}

.compare-col {
  font-size: 0.92rem;
}

.compare-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.compare-col.alone .compare-label {
  color: #e53e3e;
}

.compare-col.cluster .compare-label {
  color: var(--primary-green);
}

.compare-col p {
  color: var(--slate-text);
  line-height: 1.55;
}

.payoff-badge {
  background: var(--green-light);
  border: 1px solid rgba(0, 206, 16, 0.2);
  color: var(--green-dark);
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
}

.payoff-badge::before {
  content: '✓';
  color: var(--primary-green);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* =============================================
   4. IMPACT SECTION  —  LIGHT BRAND BACKGROUND
   ============================================= */
.impact {
  background: linear-gradient(135deg, #f0f7fd 0%, #f2faf3 100%);
  color: var(--navy-blue);
}

.impact .section-tag {
  background: rgba(0, 137, 221, 0.1);
  color: var(--primary-blue);
}

.impact .section-title {
  color: var(--navy-blue);
}

.impact .section-desc {
  color: var(--slate-text);
}

/* Side-by-Side Stat Highlights Row */
.impact-highlights-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
  width: 100%;
}

.impact-highlight-card {
  flex: 1 1 calc(50% - 20px);
  max-width: 500px;
  min-width: 280px;
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 45px 35px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 137, 221, 0.06);
}

.impact-highlight-card .stat-goal-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--white);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.impact-highlight-card.achieved-highlight .stat-goal-label {
  background: var(--primary-blue);
}

.impact-highlight-card.goal-highlight-2028 .stat-goal-label {
  background: var(--primary-green);
}

.impact-highlight-card.goal-highlight .stat-goal-label {
  background: #f59e0b; /* Amber/Orange for 2030 goal */
}

.impact-highlight-card .stat-number {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1.1;
  margin-bottom: 10px;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: 12px;
}

.stat-desc {
  font-size: 1.2rem;
  color: var(--slate-text);
  line-height: 1.6;
}

/* Legacy stat cards (light bg) */
.impact-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 70px;
}

.stat-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  padding: 35px 20px;
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.stat-card:nth-child(even) .stat-number {
  color: var(--primary-green);
}

.stat-card:nth-child(even) .stat-goal-label {
  background: var(--primary-green);
}

/* Impact Pillars */
.impact-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.pillar-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--border-radius);
  padding: 30px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

.pillar-card:hover {
  background: var(--white);
  border-color: var(--primary-blue);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 137, 221, 0.05);
}

.pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.pillar-card h4 {
  font-size: 1.25rem;
  color: var(--navy-blue);
  margin-bottom: 10px;
  font-weight: 700;
}

.pillar-card p {
  color: var(--slate-text);
  font-size: 1rem;
  line-height: 1.7;
}

/* Vision / Mission Block */
.vision-mission-block {
  display: flex;
  gap: 30px;
  margin-top: 50px;
}

.vm-card {
  flex: 1;
  padding: 35px;
  border-radius: var(--border-radius);
  background: var(--white);
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: var(--transition);
}

.vm-card:hover {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 137, 221, 0.05);
  transform: translateY(-4px);
}

.vision-card {
  border-left: 4px solid var(--primary-blue);
}

.mission-card {
  border-left: 4px solid var(--primary-green);
}

.vm-card h3 {
  color: var(--navy-blue);
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.vm-card p {
  color: var(--slate-text);
  font-size: 1.15rem;
  line-height: 1.8;
}

/* Legacy vision outer block */
.vision-outer {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 50px;
  margin-top: 30px;
}

.vision-title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  color: var(--white);
}

.vision-title span {
  color: var(--primary-green);
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.vision-card-legacy {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  padding: 30px;
  position: relative;
  transition: var(--transition);
}

/* Also keep .vision-card for the grid if used in legacy */
.vision-grid .vision-card {
  border-left: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  padding: 30px;
  position: relative;
  transition: var(--transition);
}

.vision-grid .vision-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.vision-year {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-green);
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1.5px;
}

.vision-target {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--white);
}

.vision-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.7;
}

/* =============================================
   5. GALLERY SECTION
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(11, 19, 41, 0.85) 0%, transparent 100%);
  color: var(--white);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  height: 100%;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

/* Video */
.gallery-video {
  max-width: 900px;
  margin: 0 auto;
}

.gallery-video-heading {
  font-size: 1.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 30px;
  color: var(--navy-blue);
}

.gallery-video-heading span {
  color: var(--primary-green);
}

.video-wrapper {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--hover-shadow);
  aspect-ratio: 16/9;
  background: #000;
}

.video-thumbnail {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.video-thumbnail:hover img {
  transform: scale(1.03);
  filter: brightness(0.85);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.85;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.video-thumbnail:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  opacity: 1;
}

.video-play-bg {
  transition: fill 0.3s ease;
}

.video-thumbnail:hover .video-play-bg {
  fill: #cc0000;
}

/* =============================================
   6. ACTIVITIES SECTION
   ============================================= */
.diary-list {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.diary-post {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid #e2e8f0;
  transition: var(--transition);
}

@media (min-width: 900px) {
  .diary-post {
    flex-direction: row;
  }
}

.diary-post:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.diary-img-wrapper {
  flex: 0 0 45%;
  position: relative;
  min-height: 250px;
}

@media (min-width: 900px) {
  .diary-img-wrapper {
    min-height: auto;
  }
}

.diary-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #f8fafc;
  position: absolute;
  top: 0;
  left: 0;
}

.diary-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.diary-tag {
  color: var(--primary-green);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.diary-content h3 {
  font-size: 1.7rem;
  color: var(--navy-blue);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.3;
}

.diary-content p {
  color: var(--slate-text);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.diary-content p:last-child {
  margin-bottom: 0;
}

.diary-quote {
  font-family: 'Gelasio', Georgia, serif;
  font-style: italic;
  color: var(--primary-blue);
  background: var(--blue-light);
  border-left: 4px solid var(--primary-green);
  padding: 15px 20px;
  margin: 20px 0;
  font-size: 1.15rem;
  border-radius: 0 8px 8px 0;
}

/* =============================================
   7. CONTACT / CONNECT SECTION
   ============================================= */
.connect-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 60px;
  align-items: stretch;
}

.connect-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--blue-light);
  border-radius: var(--border-radius);
  padding: 40px;
  border: 1px solid rgba(0, 137, 221, 0.1);
}

.connect-info-header h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--navy-blue);
}

.connect-info-header p {
  color: var(--slate-text);
  font-size: 1.05rem;
  margin-bottom: 30px;
  line-height: 1.7;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.channel-card {
  display: flex;
  align-items: center;
  gap: 20px;
}

.channel-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--white);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 10px rgba(0, 137, 221, 0.05);
  flex-shrink: 0;
}

.channel-card.whatsapp .channel-icon {
  color: #25d366;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.05);
}

.channel-details span {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--slate-text);
  font-weight: 600;
}

.channel-details a {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-blue);
}

.channel-details a:hover {
  color: var(--primary-blue);
}

.channel-card.whatsapp .channel-details a:hover {
  color: #128c7e;
}

.connect-tagline {
  font-family: 'Gelasio', Georgia, serif;
  font-style: italic;
  color: var(--slate-text);
  border-left: 3px solid var(--primary-blue);
  padding-left: 15px;
  margin-top: 30px;
  font-size: 1rem;
  line-height: 1.7;
}

/* Contact Form Card */
.contact-form-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.form-group {
  margin-bottom: 22px;
  position: relative;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-blue);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark-slate);
  background: var(--light-bg);
  transition: var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--primary-blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 137, 221, 0.1);
}

textarea.form-input {
  height: 130px;
  resize: vertical;
}

.form-alert {
  margin-top: 15px;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  display: none;
}

.form-alert.success {
  background: var(--green-light);
  color: var(--green-dark);
  border: 1px solid rgba(0, 206, 16, 0.2);
  display: block;
}

.form-alert.error {
  background: #fff5f5;
  color: #c53030;
  border: 1px solid rgba(229, 62, 62, 0.2);
  display: block;
}

/* =============================================
   FLOATING WHATSAPP BUTTON
   ============================================= */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  cursor: pointer;
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-2px);
  background-color: #128c7e;
  box-shadow: 0 8px 25px rgba(18, 140, 126, 0.5);
}

.floating-whatsapp::after {
  content: '';
  position: absolute;
  top: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background-color: #ff3b30;
  border-radius: 50%;
  border: 2px solid var(--white);
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%   { transform: scale(1); opacity: 1; }
  50%  { transform: scale(1.4); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

/* =============================================
   CTA BANNER (Before Footer)
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, #e6f3fc 0%, #f0fdf4 100%);
  color: var(--navy-blue);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 137, 221, 0.08);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(0, 137, 221, 0.05);
  filter: blur(60px);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(0, 206, 16, 0.05);
  filter: blur(60px);
}

.cta-banner-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-banner-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--navy-blue);
}

.cta-banner-content h2 span {
  color: var(--primary-green);
}

.cta-banner-content p {
  font-size: 1.15rem;
  color: var(--slate-text);
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #f4f9fd;
  color: var(--slate-text);
  padding: 70px 0 30px 0;
  font-size: 0.95rem;
  border-top: 1px solid rgba(0, 137, 221, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-bottom: 50px;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.footer-col h4 {
  color: var(--navy-blue);
  font-size: 1.15rem;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 30px;
  height: 2px;
  background-color: var(--primary-blue);
}

.footer-col p {
  line-height: 1.7;
}

.footer-links {
  list-style: none;
}

.footer-link {
  margin-bottom: 12px;
}

.footer-link a {
  color: var(--slate-text);
  transition: var(--transition);
}

.footer-link a:hover {
  color: var(--primary-blue);
  padding-left: 5px;
}

.footer-col.about p {
  margin-top: 15px;
  margin-bottom: 0;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.05);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 137, 221, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.copyright span {
  color: var(--primary-blue);
  font-weight: 600;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
}

.footer-bottom-links a {
  color: var(--slate-text);
  font-size: 0.85rem;
}

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 1;
  transform: translateY(0);
}



/* =============================================
   RESPONSIVE — 1024px
   ============================================= */
@media (max-width: 1024px) {


  .about-grid,
  .connect-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content-block {
    flex-direction: column;
    padding: 30px 20px;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-highlights-row {
    grid-template-columns: 1fr;
  }
  .impact-highlight-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =============================================
   RESPONSIVE — 768px
   ============================================= */
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }

  section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .navbar {
    padding: 10px 0;
  }

  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 75px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    padding: 40px 0;
    z-index: 99;
    gap: 25px;
  }

  .nav-menu.active {
    left: 0;
  }

  .header-right {
    gap: 15px;
  }

  /* Hero stacking */
  .hero {
    height: auto;
    padding: 120px 0 60px 0;
  }



  /* Grids to 1-col */
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .impact-highlights-row {
    grid-template-columns: 1fr;
  }
  .impact-highlight-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .impact-pillars {
    grid-template-columns: 1fr;
  }

  .impact-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .activities-grid {
    grid-template-columns: 1fr;
  }

  .points-grid {
    grid-template-columns: 1fr;
  }

  .points-grid .point-card-full:nth-child(5) {
    max-width: 100%;
  }

  .compare-block {
    grid-template-columns: 1fr;
  }

  .vision-grid {
    grid-template-columns: 1fr;
  }

  .vision-mission-block {
    flex-direction: column;
  }

  .vision-outer {
    padding: 30px;
  }

  .process-flow {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.9rem;
    gap: 10px;
    padding: 18px 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .connect-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 26px;
  }

  .cta-banner {
    padding: 70px 0;
  }

  .cta-banner-content h2 {
    font-size: 2.4rem;
  }
}

/* =============================================
   RESPONSIVE — 480px
   ============================================= */
@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  section {
    padding: 55px 0;
  }

  .section-title {
    font-size: 1.9rem;
  }



  .stat-number {
    font-size: 2.8rem;
  }

  .impact-stats {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cta-banner-content h2 {
    font-size: 1.9rem;
  }

  .values-heading {
    font-size: 1.7rem;
    margin-top: 50px;
  }

  .connect-info {
    padding: 28px;
  }

  .contact-form-card {
    padding: 28px;
  }
}


/* =============================================
   HERO SPLIT (RESPONSIVE)
   ============================================= */

.hero-split {
  padding: 0;
  margin-top: 100px;
  
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.hero-left {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 60px;
  background: linear-gradient(135deg, var(--white) 0%, #f1f5f9 100%);
  min-width: 300px;
}

.hero-logo-wrapper {
  margin-bottom: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-logo-img {
  max-width: 900px;
  width: 100%;
  height: auto;
  max-height: 800px;
  object-fit: contain;
}

.hero-actions {
  margin-top: 0;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-right {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  background-image: linear-gradient(rgba(240, 244, 248, 0.85), rgba(240, 244, 248, 0.85)), url('hero-ponds.jpg');
  background-size: cover;
  background-position: center center;
  color: var(--navy-blue);
  min-width: 300px;
}

.hero-right .reveal p {
  text-align: justify;
}


@media (max-width: 992px) {
  
.hero-split {
  padding: 0;
  margin-top: 100px;
  
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.hero-left {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 60px;
  background: linear-gradient(135deg, var(--white) 0%, #f1f5f9 100%);
  min-width: 300px;
}

.hero-logo-wrapper {
  margin-bottom: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-logo-img {
  max-width: 900px;
  width: 100%;
  height: auto;
  max-height: 800px;
  object-fit: contain;
}

.hero-actions {
  margin-top: 0;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-right {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  background-image: linear-gradient(rgba(240, 244, 248, 0.85), rgba(240, 244, 248, 0.85)), url('hero-ponds.jpg');
  background-size: cover;
  background-position: center center;
  color: var(--navy-blue);
  min-width: 300px;
}

.hero-right .reveal p {
  text-align: justify;
}

