@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  /* Core Palette - Deep Forest & Vibrant Earth */
  --p-green: #0A6847;
  --p-green-dark: #0A6847;
  --p-green-deep: #000000;
  --p-green-light: #e8f8f0;
  --p-accent: #f1c40f;
  --p-white: #ffffff;
  --p-black: #111111;
  --p-gray: #f4f7f6;
  --p-text: #444444;
  --p-text-light: #777777;
  --p-border: #e0e6e4;

  /* Gradients */
  --grad-linear: linear-gradient(135deg, var(--p-green), var(--p-green-dark));
  --grad-deep: linear-gradient(135deg, var(--p-green-deep), #162e27);
  --grad-glass: rgba(255, 255, 255, 0.85);

  /* Tokens */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter Tight', sans-serif;
  background-color: var(--p-white);
  color: var(--p-black);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.heading-font {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 60px 0;
}

.text-center {
  text-align: center;
}

/* ===== Components ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  gap: 10px;
}

.btn-primary {
  background: var(--grad-linear);
  color: white;
  box-shadow: 0 10px 20px -5px rgba(46, 204, 113, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -10px rgba(46, 204, 113, 0.6);
}

.btn-outline {
  background: transparent;
  border-color: var(--p-green);
  color: var(--p-green);
}

.btn-outline:hover {
  background: var(--p-green);
  color: white;
}

.btn-white {
  background: white;
  color: var(--p-green-dark);
}

.btn-white:hover {
  background: var(--p-gray);
  transform: translateY(-2px);
}

.section-tag {
  display: inline-block;
  color: var(--p-green-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 16px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--p-green);
}

.section-title {
  font-size: clamp(32px, 5vw, 38px);
  margin-bottom: 24px;
  color: var(--p-green-deep);
}

.section-desc {
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--p-text-light);
  font-size: 18px;
}

/* ===== Welcome Section Grid ===== */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.welcome-big-logo {
  width: 100%;
  max-width: 450px;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(10, 104, 71, 0.1));
  animation: float-logo 6s ease-in-out infinite;
}

@keyframes float-logo {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 991px) {
  .welcome-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .welcome-big-logo {
    margin: 0 auto;
    max-width: 300px;
  }

  .welcome-right .section-title,
  .welcome-right .section-desc {
    text-align: center !important;
    margin: 0 auto 24px auto !important;
  }

  .welcome-right .welcome-features {
    justify-content: center !important;
    flex-wrap: wrap !important;
  }
}

/* ===== Modal Popup ===== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);

  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  width: 90%;
  max-width: 550px;
  background-image: url('../img/event/IMG-20190225-WA0079.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transform: scale(0.8) translateY(50px);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-content-wrapper {
  padding: 40px;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-form-card {
  background: #ffffffbf;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  width: 100%;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  z-index: 10;
  color: #333;
}

.modal-close:hover {
  transform: rotate(90deg);
  background: var(--p-green);
  color: white;
}

/* ===== Shared Contact Form Elements ===== */
.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  color: #333;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-control {
  width: 100%;
  padding: 12px 20px 12px 45px;
  background: #f9fbf9;
  border: 2px solid #f0f4f0;
  border-radius: 12px;
  font-size: 14px;
  color: #111;
  transition: all 0.3s ease;
  outline: none;
  font-family: inherit;
}

.input-control:focus {
  background: white;
  border-color: var(--p-green);
  box-shadow: 0 10px 25px rgba(10, 104, 71, 0.1);
}

.input-icon {
  position: absolute;
  left: 18px;
  top: 40px;
  color: #aaa;
  transition: color 0.3s ease;
  z-index: 2;
}

.input-group:focus-within .input-icon {
  color: var(--p-green);
}

.submit-btn {
  position: relative;
  background: #f1f8e9;
  color: var(--p-green);
  border: 2px solid var(--p-green);
  padding: 12px 30px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  z-index: 1;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 300%;
  background: var(--p-green);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.submit-btn:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(10, 104, 71, 0.2);
}

.submit-btn:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.submit-btn svg {
  transition: all 0.6s ease;
}

.submit-btn:hover svg {
  color: white;
  transform: translateX(3px) scale(1.1);
}

/* ===== Welcome Features ===== */
.welcome-features {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 40px;
  width: 100%;
}

.feature-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f1f8e9;
  padding: 10px 18px;
  border-radius: 99px;
  color: #1e3d33;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid rgba(46, 204, 113, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  white-space: nowrap;
  flex: 1;
  justify-content: center;
}

.feature-tag:hover {
  background: #76bc21;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(118, 188, 33, 0.2);
  border-color: #76bc21;
}

.feature-tag svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

/* ===== Navbar ===== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--grad-glass);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--p-border);
  transition: var(--transition);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--p-green-deep);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--p-green);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links.active-nav {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  background: white;
  padding: 30px;
  border-bottom: 1px solid var(--p-border);
  box-shadow: var(--shadow-md);
  z-index: 1001;
}

.header.scrolled {
  height: 70px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.header.scrolled .nav {
  height: 70px;
}

.nav-cta {
  background: var(--p-green);
  color: white !important;
  padding: 10px 24px;
  border-radius: 99px;
  font-weight: 700;
}

.mobile-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 100px 0 120px;
  overflow: hidden;
}

.hero .container {
  margin-left: 0;
  max-width: 100%;
  padding-left: 8%;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/bannr.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 650px;
  text-align: left;
}

.hero h1 {
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 600;
  color: var(--p-green-deep);

}

.hero h1 .green-text {
  color: var(--p-green);
  display: block;
}

.hero p.tagline {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 32px;
  color: var(--p-green-deep);
  opacity: 0.9;
}

.hero p.intro {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 48px;
  opacity: 0.85;
  max-width: 580px;
  font-weight: 400;
  color: var(--p-green-deep);
}

.hero-btns {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero .btn {
  padding: 12px 28px;
  font-size: 14px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.hero .btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  padding-bottom: 200%;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.hero .btn:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.hero .btn-primary {
  background: #76bc21;
  border-color: #76bc21;
  color: white;
}

.hero .btn-primary::before {
  background: #1e3d33;
  /* Dark green matching theme for primary hover */
}

.hero .btn-outline {
  background: var(--p-green);
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: white !important;
  backdrop-filter: blur(4px);
}

.hero .btn-outline:hover {
  color: #111111 !important;
}

.hero .btn-outline:hover svg {
  color: #111111;
}

.btn-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
}

/* ===== Premium Impact Section (Light Theme) ===== */
.impact-stats-premium {
  background: #ffffff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.section-tag-light {
  display: inline-block;
  color: var(--p-green);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  margin-bottom: 20px;
}

.section-title-white {
  font-size: 38px;
  color: #111111;
  margin-bottom: 60px;
  font-weight: 600;
}

.impact-minimal-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.impact-stat-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: calc(25% - 40px);
  min-width: 260px;
  position: relative;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.impact-icon-clean {
  width: 50px;
  height: 50px;
  color: var(--p-green);
  flex-shrink: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.impact-icon-clean svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

.impact-stat-item:hover .impact-icon-clean {
  color: var(--p-green);
  transform: scale(1.2) translateY(-5px);
}

.impact-info-clean {
  position: relative;
  border-left: 2px solid #eeeeee;
  padding-left: 20px;
  transition: border-color 0.8s ease;
}

.impact-stat-item:hover .impact-info-clean {
  border-color: var(--p-green);
}

.stat-large {
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 5px;
  letter-spacing: 0px;
  line-height: 1;
}

.impact-info-clean p {
  font-size: 14px;
  color: #666666;
  line-height: 1.4;
  font-weight: 500;
}

.impact-stat-item:hover .stat-large {
  color: var(--p-green);
}

/* Vertical Separator for wide screens */
@media (min-width: 1200px) {
  .impact-stat-item:not(:nth-child(3n))::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -20px;
    height: 80%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.05), transparent);
  }
}

.mb-60 {
  margin-bottom: 60px;
}

/* ===== Key Initiatives Design ===== */
.prog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.prog-card {
  background: white;
  padding: 45px 35px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: all 0.4s ease;
  height: 100%;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  position: relative;
  z-index: 1;
}

.prog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px var(--glow-color, rgba(0, 0, 0, 0.08));
}

.prog-icon {
  width: 54px;
  height: 54px;
  background: var(--init-bg, #f4f8f4);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--init-color, #76bc21);
  margin-bottom: 25px;
  box-shadow: 0 10px 20px var(--glow-color, rgba(0, 0, 0, 0.05));
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.prog-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--init-color);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 2.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: -1;
}

.prog-card:hover .prog-icon {
  color: white;
  transform: scale(1.1);
  box-shadow: 0 15px 25px var(--glow-color, rgba(0, 0, 0, 0.1));
}

.prog-card:hover .prog-icon::before {
  transform: scale(1.5);
  border-radius: 14px;
}

.prog-icon svg {
  width: 26px;
  height: 26px;
  transition: transform 2.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.prog-card:hover .prog-icon svg {
  transform: rotate(5deg);
}

.prog-card h3 {
  font-size: 19px;
  color: #111;
  font-weight: 700;
  margin-bottom: 5px;
}

.prog-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Nth-child colors for pages without explicit classes */
.prog-grid .prog-card:nth-child(6n+1) {
  --init-color: #9c27b0;
  --init-bg: #f3e5f5;
  --glow-color: rgba(156, 39, 176, 0.12);
}

.prog-grid .prog-card:nth-child(6n+2) {
  --init-color: #03a9f4;
  --init-bg: #e1f5fe;
  --glow-color: rgba(3, 169, 244, 0.12);
}

.prog-grid .prog-card:nth-child(6n+3) {
  --init-color: #e91e63;
  --init-bg: #fce4ec;
  --glow-color: rgba(233, 30, 99, 0.12);
}

.prog-grid .prog-card:nth-child(6n+4) {
  --init-color: #673ab7;
  --init-bg: #ede7f6;
  --glow-color: rgba(103, 58, 183, 0.12);
}

.prog-grid .prog-card:nth-child(6n+5) {
  --init-color: #ff5722;
  --init-bg: #fbe9e7;
  --glow-color: rgba(255, 87, 34, 0.12);
}

.prog-grid .prog-card:nth-child(6n+0) {
  --init-color: #4caf50;
  --init-bg: #e8f5e9;
  --glow-color: rgba(76, 175, 80, 0.12);
}

/* Explicit Initiative Color Variants for existing pages */
.prog-card.plantation {
  --init-color: #2e7d32;
  --init-bg: #e8f5e9;
  --glow-color: rgba(46, 125, 50, 0.12);
}

.prog-card.water {
  --init-color: #0277bd;
  --init-bg: #e1f5fe;
  --glow-color: rgba(2, 119, 189, 0.12);
}

.prog-card.wildlife {
  --init-color: #ef6c00;
  --init-bg: #fff3e0;
  --glow-color: rgba(239, 108, 0, 0.12);
}

.prog-card.waste {
  --init-color: #7b1fa2;
  --init-bg: #f3e5f5;
  --glow-color: rgba(123, 31, 162, 0.12);
}

.prog-card.climate {
  --init-color: #00838f;
  --init-bg: #e0f7fa;
  --glow-color: rgba(0, 131, 143, 0.12);
}

.prog-card.community {
  --init-color: #c62828;
  --init-bg: #ffebee;
  --glow-color: rgba(198, 40, 40, 0.12);
}

/* ===== SDGs Section New Design ===== */
.sdgs {
  background: white;
  padding: 80px 0;
}

.sdg-subtitle {
  font-size: 20px;
  font-weight: 800;
  color: #111;

  margin-bottom: 5px;
}

.sdg-main-title {
  font-size: 36px;
  font-weight: 900;
  color: #000000;
  margin-bottom: 50px;
}

.sdg-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.sdg-card {
  width: 190px;
  height: 220px;
  position: relative;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 20px;
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.sdg-card:hover {
  transform: translateY(-10px) scale(1.05);
  z-index: 2;
}

.sdg-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
}

.sdg-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.sdg-line {
  width: 60%;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
  margin: 10px 0;
  border-radius: 99px;
}

.sdg-label {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 8px;
  display: block;
}

.sdg-num {
  font-size: 16px;
  font-weight: 900;
  opacity: 0.9;
}

/* SDG Colors */
.sdg-purple {
  background: linear-gradient(135deg, #a389d4, #8b6dbd);
}

.sdg-pink {
  background: linear-gradient(135deg, #f46d82, #e5566b);
}

.sdg-yellow {
  background: linear-gradient(135deg, #f8d44b, #e6c138);
}

.sdg-green {
  background: linear-gradient(135deg, #6ec87e, #5ab16a);
}

.sdg-blue {
  background: linear-gradient(135deg, #5b7bd1, #4868bf);
}

.sdg-lime {
  background: linear-gradient(135deg, #8ec641, #7ab132);
}

@media (max-width: 768px) {
  .sdg-card {
    width: 160px;
    height: 180px;
    padding: 20px 15px;
  }

  .sdg-icon {
    font-size: 32px;
  }

  .sdg-label {
    font-size: 9px;
  }
}

.cause-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cause-card {
  position: relative;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.cause-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.cause-card:hover .cause-img {
  transform: scale(1.1);
}

.cause-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
}

.cause-overlay h3 {
  font-size: 20px;
  margin-bottom: 8px;

}

.cause-overlay p {
  font-size: 14px;
  opacity: 0.9;
}

/* ===== Partners ===== */
.partners {
  background: var(--p-gray);
  padding: 60px 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  align-items: center;
}

.partner-logo {
  height: 60px;
  background: #eee;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  filter: grayscale(1);
  transition: var(--transition);
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* ===== Recognition ===== */
.recognition-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.recognition-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  border-color: rgba(118, 188, 33, 0.3);
}

.recog-text {
  padding: 35px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.recognition-card h2 {
  font-size: 30px;
}

.recog-img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  background: #f4f8f4;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.recognition-card:hover .recog-img {
  transform: scale(1.08);
}

/* ===== Footer ===== */
.footer {
  background: var(--p-green-deep);
  color: white;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col h4 {
  margin-bottom: 24px;
  font-size: 14px;
  text-transform: uppercase;
}

.footer-col ul li {
  margin-bottom: 5px;
}

.footer-col ul li a {
  opacity: 0.7;
}

.footer-col ul li a:hover {
  opacity: 1;
  padding-left: 5px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 20px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  outline: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;

}

/* ===== Solutions & Trust Section (Integrated) ===== */
.solutions-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 40px;
  align-items: stretch;
  width: 100%;
}

.solutions-left {
  display: flex;
  flex-direction: column;
}

.solutions-right {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.solutions-img-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.solutions-placeholder {
  background: var(--p-gray);
  border-radius: 24px;
  width: 100%;
}

.sol-p-main {
  height: 500px;
}

.sol-p-sub {
  height: 240px;
}

.contact-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 130px;
  background: var(--p-green);
  border: 10px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: var(--shadow-lg);
}

.contact-badge svg {
  animation: rotate 10s linear infinite;
  width: 100%;
  height: 100%;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.badge-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--p-green-deep);
}

.trust-stats-box {
  background: var(--p-gray);
  padding: 40px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 280px;
  margin-top: 40px;
}

.trust-stat h3 {
  font-size: 36px;
  color: var(--p-green-deep);
  margin-bottom: 5px;
}

.trust-stat p {
  font-size: 14px;
  color: var(--p-text-light);
  line-height: 1.4;
}

.solutions-content-wrap {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.sol-feat-icon {
  width: 54px;
  height: 54px;
  background: var(--p-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
}

.sol-feat-info h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.sol-feat-info p {
  font-size: 15px;
  color: var(--p-text-light);
  margin-bottom: 20px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--p-green-deep);
}

.check-item i {
  width: 20px;
  height: 20px;
  background: var(--p-green-light);
  color: var(--p-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-style: normal;
}

.learn-more-btn {
  margin-top: 40px;
  background: #96ff7d;
  color: var(--p-green-deep);
  padding: 15px 35px;
  border-radius: 99px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.learn-more-btn .arrow {
  width: 32px;
  height: 32px;
  background: black;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .solutions-right {
    order: -1;
  }

  .trust-stats-box {
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
  }
}

@media (max-width: 500px) {
  .trust-stats-box {
    flex-direction: column;
  }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .prog-grid {
    grid-template-columns: 1fr;
  }

  .cause-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amount-btn.selected {
    border-color: var(--p-green) !important;
    background: var(--p-green-light) !important;
  }
}

@media (max-width: 768px) {
  .cause-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-btns {
    flex-direction: column;
  }
}

/* ===== Why Choose Us Final Design ===== */
.why-choose-us {
  background: #ffffff;
  padding: 100px 0;
}

.why-choose-us .container {
  max-width: 1400px;
}

.section-tag-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f1f8e9;
  padding: 8px 18px;
  border-radius: 99px;
  width: fit-content;
  margin-bottom: 24px;
}

.section-tag-wrapper .dot {
  width: 6px;
  height: 6px;
  background: #2ecc71;
  border-radius: 50%;
}

.section-tag-new {
  font-size: 13px;
  font-weight: 700;
  color: #1e3d33;
}

.section-title-new {
  font-size: 52px;
  font-weight: 800;
  color: #111111;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 600px;
}

.section-intro {
  color: #777777;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
}

.side-by-side-content {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.trust-stats-card {
  background: #f8f9f7;
  padding: 40px 30px;
  border-radius: 24px;
  width: 260px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.trust-stat h3 {
  font-size: 42px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 8px;
}

.trust-stat p {
  font-size: 15px;
  color: #444444;
  font-weight: 600;
  line-height: 1.4;
}

.stat-divider {
  height: 1px;
  background: #dddddd;
  width: 100%;
}

.feature-info {
  flex: 1;
}

.feature-icon-circle {
  width: 58px;
  height: 58px;
  background: #f1f8e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #2ecc71;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.6s ease;
}

.feature-icon-circle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1e3d33;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.feature-info:hover .feature-icon-circle::before {
  transform: scale(1);
}

.feature-info:hover .feature-icon-circle {
  color: #ffffff;
}

.feature-icon-circle svg {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 2;
}

.feature-info h4 {
  font-size: 22px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 12px;
}

.feature-info p {
  font-size: 16px;
  color: #777777;
  margin-bottom: 30px;
  line-height: 1.5;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #444444;
}

.check-icon {
  width: 22px;
  height: 22px;
  background: #e8f5e9;
  color: #2ecc71;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.learn-more-new {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #9cfc7e;
  padding: 14px 32px;
  border-radius: 99px;
  font-weight: 800;
  color: #111111;
  transition: all 0.3s ease;
}

.learn-more-new:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(156, 252, 126, 0.3);
}

.arrow-circle {
  width: 32px;
  height: 32px;
  background: #111111;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* Image Grid */
.image-grid-wrapper {
  position: relative;
  width: 100%;
}

.image-grid-custom {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
}

.image-placeholder {
  background: #f4f6f4;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.placeholder-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  font-weight: 700;
  color: #bbbbbb;
  text-transform: uppercase;
}

.main-img {
  height: 600px;
}

.top-img {
  height: 340px;
}

.bottom-img {
  height: 240px;
}

/* Rotating Badge */
.rotating-badge-v2 {
  position: absolute;
  top: 50%;
  right: 35%;
  transform: translateY(-50%);
  width: 130px;
  height: 130px;
  z-index: 20;
}

.rotating-badge-v2 svg {
  width: 100%;
  height: 100%;
  animation: rotateBadge 15s linear infinite;
  background: #2ecc71;
  border-radius: 50%;
  padding: 10px;
  border: 8px solid #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.badge-text-v2 {
  fill: #ffffff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.badge-inner-v2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #2ecc71;
}

.badge-inner-v2 svg {
  width: 28px;
  height: 28px;
}

@keyframes rotateBadge {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1200px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .rotating-badge-v2 {
    right: 45%;
  }
}

@media (max-width: 768px) {
  .side-by-side-content {
    flex-direction: column;
  }

  .trust-stats-card {
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
  }

  .stat-divider {
    width: 1px;
    height: 50px;
  }
}

/* ===== Premium Why Support Section ===== */
.why-support {
  background: linear-gradient(135deg, #ffffff 0%, #f4faf4 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.why-support::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, #76bc21 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.04;
  z-index: 0;
}

.support-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.support-left {
  position: relative;
}

.support-right {
  position: relative;
}

.support-img-stack {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.support-main-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.support-img-stack:hover .support-main-img {
  transform: scale(1.08);
}

.impact-badge-v3 {
  position: absolute;
  bottom: 40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: #76bc21;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 10px solid #ffffff;
  box-shadow: 0 20px 40px rgba(118, 188, 33, 0.3);
  z-index: 10;
  animation: floatBadge 6s ease-in-out infinite;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.badge-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateBadge 15s linear infinite;
}

.badge-ring svg {
  width: 100%;
  height: 100%;
  fill: white;
}

.badge-icon {
  font-size: 40px;
  z-index: 2;
}

@keyframes rotateBadge {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.support-list {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.support-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.support-item:hover {
  transform: translateX(10px);
  background: #ffffff;
  border-color: rgba(118, 188, 33, 0.2);
  box-shadow: 0 15px 35px rgba(118, 188, 33, 0.05);
}

.support-icon {
  width: 48px;
  height: 48px;
  background: #f4faf4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #76bc21;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.support-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #76bc21;
  border-radius: 12px;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.support-icon svg {
  width: 22px;
  height: 22px;
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.support-item:hover .support-icon::after {
  transform: scale(1);
}

.support-item:hover .support-icon svg {
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.support-text {
  padding-top: 2px;
}

.support-text h4 {
  font-size: 17px;
  color: #111;
  margin-bottom: 4px;
  font-weight: 700;
}

.support-text p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 991px) {
  .support-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .support-img-stack {
    height: 400px;
  }

  .impact-badge-v3 {
    right: 20px;
    bottom: -30px;
    width: 140px;
    height: 140px;
  }
}

.justify-center {
  justify-content: center;
}

.mb-30 {
  margin-bottom: 30px;
}

.relative-z {
  position: relative;
  z-index: 2;
}

/* ===== Premium CTA Banner ===== */
.cta-premium-banner {
  position: relative;
  padding: 60px 0;
  background-image: url('https://images.unsplash.com/photo-1473448912268-2022ce9509d8?auto=format&fit=crop&q=80&w=2000');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  color: white;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000cc;
  z-index: 1;
}

.cta-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
}

.cta-text {
  font-size: clamp(16px, 2vw, 22px);
  max-width: 800px;
  margin: 0 auto 40px;
  opacity: 0.9;
  line-height: 1.6;
}

.btn-large {
  padding: 18px 48px;
  font-size: 18px;
  background: #76bc21 !important;
  color: white !important;
  box-shadow: 0 20px 40px rgba(118, 188, 33, 0.3);
}

.btn-large:hover {
  background: white !important;
  color: #1e3d33 !important;
  transform: translateY(-5px);
}

/* ===== Light Footer ===== */
.footer-light {
  background: #f8faf9;
  padding: 80px 0;
  border-top: 1px solid #eef2f1;
}

.footer-para {
  max-width: 600px;
  margin: 0 auto;
  color: #777;
  font-size: 15px;
  line-height: 1.6;
}

/* ===== About Section ===== */
.about-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.img-frame {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.img-frame .main-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.img-frame:hover .main-img {
  transform: scale(1.08);
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 24px;
}

.about-text strong {
  color: #111;
  font-weight: 700;
}

/* ===== Team Page Section ===== */
.team-split-section {
  position: relative;
  background: #111111;
  padding-bottom: 80px;
}

.team-top {
  background: #ffffff;
  padding: 180px 0 140px;
}

.team-header-text {
  position: relative;
  z-index: 2;
}

.team-header-text .section-title {
  font-size: 38px;
  margin-bottom: 20px;
  color: #000000;
  font-weight: 800;
}

.team-bottom {
  position: relative;
  z-index: 2;
  margin-top: -80px;
}

.team-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.team-glass-card {
  position: relative;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
  background: #222;
}

.team-glass-card:hover {
  transform: translateY(-10px);
}

.team-img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-glass-card:hover .team-img-bg {
  transform: scale(1.05);
}

.team-glass-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.849);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 12px;
  color: white;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.glass-content {
  flex: 1;
}

.member-info h3 {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 4px;
  color: #fff;
}

.member-role {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);

}

.member-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 15px;
}



/* ===== CTA Section Premium ===== */
.cta-card {
  background: var(--p-green-deep, #14281e);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  margin-top: 40px;
}

.cta-content {
  padding: 80px;
  flex: 1;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 65%;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 500;
  color: white;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-cta-primary {
  background: var(--p-green, #76bc21);
  color: white;
  border: none;
  font-weight: 600;
  padding: 7px 8px 7px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s ease;
}

.btn-cta-primary .btn-text {
  position: relative;
  z-index: 2;
  transition: color 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-cta-primary .btn-icon {
  width: 32px;
  height: 32px;
  background: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  z-index: 2;
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-cta-primary .btn-icon svg {
  width: 18px;
  height: 18px;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-cta-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 29px;
  width: 42px;
  height: 42px;
  background: #111;
  border-radius: 50%;
  transform: translateY(-50%) scale(0);
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1;
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
}

.btn-cta-primary:hover::before {
  transform: translateY(-50%) scale(25);
}

.btn-cta-primary:hover .btn-text {
  color: white;
}

.btn-cta-primary:hover .btn-icon svg {
  transform: translateX(3px);
}

/* Secondary Button Overrides */
.btn-cta-secondary {
  background: white;
  color: #111;
}

.btn-cta-secondary .btn-icon {
  background: var(--p-green, #76bc21);
}

.btn-cta-secondary::before {
  background: var(--p-green, #76bc21);
}

.cta-graphic {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, rgb(0 0 0) 0%, rgb(0 0 0 / 84%) 50%, rgb(0 0 0 / 20%) 100%), url(../img/cta-banner.webp);
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* ===== Why Support Section ===== */
.why-support {
  background: white;
  position: relative;
  overflow: hidden;
}

.support-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.support-left {
  position: relative;
  padding-right: 20px;
}

.support-img-stack {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.support-main-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.support-img-stack:hover .support-main-img {
  transform: scale(1.05);
}

/* Impact Badge v3 */
.impact-badge-v3 {
  position: absolute;
  bottom: 40px;
  right: -10px;
  width: 140px;
  height: 140px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  z-index: 2;
  animation: float-badge 6s ease-in-out infinite;
}

.badge-ring {
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  animation: spin 15s linear infinite;
}

.badge-ring svg {
  width: 100%;
  height: 100%;
  fill: var(--p-green);
}

.badge-icon {
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--p-green);
}

.badge-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.support-right {
  padding-right: 0;
}

.support-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 40px;
}

.support-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.support-icon {
  width: 50px;
  height: 50px;
  background: var(--p-gray);
  color: var(--p-green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.support-item:hover .support-icon {
  transform: translateY(-5px);
  background: var(--p-green);
  color: white;
}

.support-icon svg {
  width: 24px;
  height: 24px;
}

.support-text h4 {
  font-size: 18px;
  color: #111;
  margin-bottom: 8px;
}

.support-text p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* ===== Collaborators Section ===== */
.bg-gray {
  background-color: var(--p-gray);
}

.collab-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.collab-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.collab-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(118, 188, 33, 0.1);
  border-color: rgba(118, 188, 33, 0.3);
}

.collab-icon {
  width: 60px;
  height: 60px;
  background: var(--p-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--p-green);
  transition: all 0.4s ease;
}

.collab-card:hover .collab-icon {
  background: var(--p-green);
  color: white;
  transform: scale(1.1);
}

.collab-icon svg {
  width: 28px;
  height: 28px;
}

.collab-name {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  line-height: 1.4;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes float-badge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ===== Environment Banner ===== */
.environment-banner {
  position: relative;
  padding: 60px 0;
  background-image: url('../img/new-bg.png');
  background-size: cover;
  background-position: center;
}

.environment-banner .env-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.environment-banner .env-container {
  position: relative;
  z-index: 2;
  text-align: left;
  color: white;
}

.environment-banner h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.environment-banner p {
  font-size: 16px;
  max-width: 530px;
  margin: 0 0 40px 0;
  opacity: 0.95;
  line-height: 1.6;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.environment-banner .btn-env {
  padding: 15px 40px;
  font-size: 18px;
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  .hero h1 {
    font-size: 56px;
  }

  .hero .container {
    padding-left: 5%;
  }

  .about-wrapper,
  .support-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .collab-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .img-frame,
  .support-img-stack {
    height: 400px;
  }

  .support-left {
    padding-right: 0;
  }

  .impact-badge-v3 {
    right: 20px;
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 80px;
    min-height: auto;
  }

  .hero .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
  }

  .hero p.tagline {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .hero p.intro {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-premium-banner {
    padding: 80px 0;
  }

  .collab-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .environment-banner {
    padding: 120px 0;
    background-position: 70% center;
  }

  .environment-banner .env-container {
    text-align: center;
  }

  .environment-banner p {
    margin: 0 auto 30px auto;
  }

  .environment-banner h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .collab-grid {
    grid-template-columns: 1fr;
  }
}

/* OUR PROGRAMMES SECTION */
.our-programmes {
  background-color: #fcfcfc;
}

.programmes-title {
  font-size: 38px;
  font-weight: 900;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 70px;
}

.programmes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 60px;
  column-gap: 40px;
  margin: 0 auto;
}

.prog-item {
  display: flex;
  align-items: center;
  gap: 25px;
}

.prog-icon-container {
  position: relative;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prog-blob {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  z-index: 1;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.prog-blob::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.blob-yellow {
  background-color: rgba(246, 194, 62, 0.3);
}

.blob-yellow::before {
  background-color: #d69817;
}

.blob-purple {
  background-color: rgba(181, 161, 194, 0.3);
}

.blob-purple::before {
  background-color: #8c6a9c;
}

.blob-teal {
  background-color: rgba(118, 190, 192, 0.3);
}

.blob-teal::before {
  background-color: #5aa1a3;
}

.blob-orange {
  background-color: rgba(225, 179, 151, 0.3);
}

.blob-orange::before {
  background-color: #b5846c;
}

.blob-green {
  background-color: rgba(82, 196, 116, 0.3);
}

.blob-green::before {
  background-color: #46a15e;
}

.blob-red {
  background-color: rgba(239, 118, 116, 0.3);
}

.blob-red::before {
  background-color: #c94b4b;
}

.prog-svg {
  position: relative;
  z-index: 2;
  width: 35px;
  height: 35px;
  color: #000000;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.prog-item {
  cursor: pointer;
}

.prog-item:hover .prog-blob {
  transform: scale(1.1);
}

.prog-item:hover .prog-blob::before {
  transform: translate(-50%, -50%) scale(1);
}

.prog-item:hover .prog-svg {
  transform: scale(1.1);
  color: #fff;
}

.prog-content {
  padding-top: 5px;
}

.prog-heading {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-bottom: 5px;
  position: relative;
  display: inline-block;
  letter-spacing: 0.5px;
}

.prog-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  opacity: 0.3;
}

.color-yellow {
  color: #d69817;
}

.color-purple {
  color: #a48bb5;
}

.color-teal {
  color: #76bec0;
}

.color-orange {
  color: #cca58d;
}

.color-green {
  color: #5cc479;
}

.color-red {
  color: #e66a6a;
}

.prog-content p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  max-width: 90%;
}

@media (max-width: 991px) {
  .programmes-grid {
    column-gap: 20px;
  }
}

@media (max-width: 768px) {
  .programmes-grid {
    grid-template-columns: 1fr;
  }

  .prog-content p {
    max-width: 100%;
  }
}

/* ===== Premium Minimalist Footer ===== */
.main-footer {
  background: #fff;
  padding: 80px 0 0;
  border-top: 1px solid var(--p-border);
  position: relative;
  z-index: 10;
}

.footer-top {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: #888;
  text-transform: capitalize;
  margin-bottom: 25px;
}

.footer-col ul {
  padding: 0;
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #111;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--p-green);
  opacity: 0.7;
}

.footer-brand .logo {
  margin-bottom: 30px;
}

.footer-headline {
  color: #111;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  max-width: 420px;
}

.footer-contact-info {
  margin-top: 0px;
}

.footer-contact-info p {
  color: #777;
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.5;
}

.app-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  color: #111;
  width: 100%;
  max-width: 160px;
  transition: var(--transition);
}

.app-btn:hover {
  background: #f8f8f8;
  border-color: #bbb;
  transform: translateY(-2px);
}

.app-btn svg {
  width: 20px;
  height: 20px;
}

/* ===== Main Footer ===== */
.main-footer {
  background: #fdfdfd;
  color: #111111;
  padding-top: 80px;
  font-family: 'Inter Tight', sans-serif;
  border-top: 1px solid #eeeeee;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 60px;
}

.footer-brand .footer-logo img {
  height: 60px;
  margin-bottom: 25px;
}

.footer-about-text {
  color: #555555;
  font-size: 15px;
  line-height: 1.8;
  margin-top: 20px;
}

.footer-col h4 {
  color: #111111;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--p-green);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-col ul li a {
  color: #444444;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 500;
}

.footer-col ul li a:hover {
  color: var(--p-green);
  transform: translateX(5px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-info p {
  display: flex;
  gap: 12px;
  color: #444444;
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact-info p svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--p-green);
  margin-top: 3px;
}

.footer-bottom {
  background: #f8fbf9;
  padding: 25px 0;
  border-top: 1px solid #eeeeee;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-text p,
.design-credits p {
  font-size: 13px;
  color: #666666;
  margin: 0;
}

.design-credits a {
  color: #111111;
  font-weight: 700;
  transition: color 0.3s ease;
}

.design-credits a:hover {
  color: var(--p-green);
}

@media (max-width: 1200px) {
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }

  .footer-brand,
  .footer-contact {
    grid-column: span 1;
  }
}

@media (max-width: 991px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
    text-align: left;
  }

  .footer-brand .footer-logo {
    display: inline-block;
  }

  .footer-brand .footer-about-text {
    max-width: 500px;
    margin: 20px 0;
  }
}

@media (max-width: 576px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-brand,
  .footer-contact {
    grid-column: span 1;
  }

  .footer-col h4::after {
    left: 0;
    transform: none;
  }

  .footer-contact-info p {
    justify-content: flex-start;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 15px;
  }
}

/* ===== Premium Gallery Section ===== */
.gallery-section {
  padding: 100px 0;
  background: #fdfdfd;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 104, 71, 0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info h4 {
  color: white;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.gallery-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  transform: translateY(10px);
  transition: transform 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-info h4,
.gallery-item:hover .gallery-info p {
  transform: translateY(0);
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 99px;
  border: 1px solid var(--p-border);
  background: white;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--p-green);
  color: white;
  border-color: var(--p-green);
}

@media (max-width: 768px) {
  .gallery-filter {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 10px;
    gap: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }
  
  .gallery-filter::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  .filter-btn {
    padding: 8px 18px;
    font-size: 13px;
    white-space: nowrap;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .recognition-card {
    grid-template-columns: 1fr !important;
  }

  .recognition-card .recog-img {
    width: 100% !important;
    height: 300px !important;
  }
}

/* ===== Contact Page Layout ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.form-container {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.form-header h2 {
  font-size: 24px;
  font-weight: 800;
  color: #111;
  margin-bottom: 6px;
}

.form-header p {
  color: #777;
  font-size: 15px;
  line-height: 1.5;
}

.submit-btn {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}

@media (max-width: 991px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ===== About Page Responsiveness ===== */
@media (max-width: 768px) {
  .hero-small h1 {
    font-size: 36px !important;
  }

  .recognition-card {
    grid-template-columns: 1fr !important;
  }

  .recognition-card .recog-img-container {
    height: 300px;
  }

  .journey-banner-flex {
    flex-direction: column !important;
    text-align: center;
    gap: 20px !important;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr !important;
  }

  .team-top {
    padding: 80px 0 40px !important;
  }

  .team-header-text h2 {
    font-size: 28px !important;
  }

  .team-bottom {
    margin-top: -26px !important;
  }

  .team-split-section {
    padding-bottom: 40px !important;
  }
}