@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=SN+Pro:ital,wght@0,200..900;1,200..900&display=swap');

:root {
  --primary-green: #52c41a;
  --primary-green-dark: #389e0d;
  --primary-green-light: #73d13d;
  --primary-green-hover: #2e9b3e;

  --white: #ffffff;
  --black: #000000;

  --text-white: #ffffff;
  --text-light: rgba(255, 255, 255, 0.85);
  --text-dark: #1f1f1f;

  --nav-bg: rgb(80, 79, 79);
  --nav-bg-mobile: rgba(0, 0, 0, 0.96);


  --overlay-dark: rgba(0, 0, 0, 0.45);
  --overlay-dark-strong: rgba(0, 0, 0, 0.55);

  --dropdown-bg: #2d2b33;
  --dropdown-hover: var(--primary-green);

  --border-light: rgba(255, 255, 255, 0.14);

  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.2);
  --shadow-btn: 0 10px 25px rgba(82, 196, 26, 0.25);

  --radius-pill: 999px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --transition: all 0.35s ease;
  --transition-fast: all 0.25s ease;

  --container-padding: 1rem;
  --navbar-padding-y-scrolled: 0px;

  --logo-height: 92px;
  --logo-height-scrolled: 72px;
  --logo-height-mobile: 64px;

  --hero-height: 550px;
  --hero-min-height: 550px;

  --hero-title-size: 5rem;
  --hero-title-size-lg: 4rem;
  --hero-title-size-md: 3rem;
  --hero-title-size-sm: 2.2rem;
  --hero-title-size-xs: 1.8rem;

  --hero-text-size: 1.25rem;
  --hero-text-size-md: 1.1rem;
  --hero-text-size-sm: 1rem;
}

/* =========================
   GLOBAL
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'SN Pro', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  background: var(--white);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.heading {
  max-width: 620px;
  margin: 0 auto 40px;
}

.heading h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
  line-height: 1.2;
}

.heading p {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 14px;
  line-height: 1.6;
}

.title-line {
  display: inline-block;
  width: 42px;
  height: 3px;
  border-radius: 20px;
  background: var(--primary-green);
}

/* =========================
   NAVBAR
========================= */
.main-navbar {
  background: var(--nav-transparent);
  transition: var(--transition);
  z-index: 999;
}

.main-navbar.scrolled {
  background: var(--nav-bg);
  padding: var(--navbar-padding-y-scrolled) 0;
  box-shadow: var(--shadow-soft);
}

.main-navbar.always-scrolled {
  background: var(--nav-bg);
  padding: var(--navbar-padding-y-scrolled) 0;
  box-shadow: var(--shadow-soft);
}

.logo-img {
  height: var(--logo-height);
  width: auto;
  transition: var(--transition);
}

.main-navbar.scrolled .logo-img,
.main-navbar.always-scrolled .logo-img {
  height: var(--logo-height-scrolled);
}

.custom-toggler {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
  padding: 0.5rem 0.75rem;
  box-shadow: none !important;
}

.custom-toggler .navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

.navbar-nav .nav-link {
  color: var(--text-white) !important;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.85rem 1rem !important;
  transition: var(--transition-fast);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--primary-green-light) !important;
}

.nav-cta-btn {
  background: var(--primary-green);
  color: var(--white) !important;
  border: none;
  border-radius: var(--radius-pill);
  padding: 8px 15px;
  font-size: 1.05rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow-btn);
}

.nav-cta-btn:hover {
  background: var(--primary-green-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* =========================
   NORMAL DROPDOWN
========================= */
.main-dropdown,
.submenu-dropdown {
  background: var(--dropdown-bg);
  border: none;
  border-radius: 0;
  min-width: 280px;
  padding: 0;
  box-shadow: var(--shadow-soft);
}

.main-dropdown .dropdown-item,
.submenu-dropdown .dropdown-item {
  color: var(--white);
  padding: 0.5rem 1.1rem;
  font-size: 1rem;
  font-weight: 500;
  white-space: normal;
  transition: var(--transition-fast);
}

.main-dropdown .dropdown-item:hover,
.main-dropdown .dropdown-item:focus,
.submenu-dropdown .dropdown-item:hover,
.submenu-dropdown .dropdown-item:focus {
  background: var(--dropdown-hover);
  color: var(--white);
}

/* =========================
   SUBMENU
========================= */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .submenu-dropdown {
  top: 0;
  left: 100%;
  margin-top: 0;
  display: none;
}

.dropdown-submenu:hover > .submenu-dropdown {
  display: block;
}

.dropdown-submenu > .submenu-toggle:hover,
.dropdown-submenu > .submenu-toggle:focus,
.dropdown-submenu.show > .submenu-toggle {
  background: var(--dropdown-hover);
  color: var(--white) !important;
}

/* =========================
   MEGA DROPDOWN
========================= */
.dropdown-mega-menu {
  min-width: 620px;
  padding: 0.5rem 1.1rem;
  background: var(--dropdown-bg);
  border: none;
  border-radius: 0;
  box-shadow: var(--shadow-soft);
}

.dropdown-mega-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.dropdown-mega-col h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 24px;
}

.dropdown-mega-menu .dropdown-item {
  display: block;
  padding: 0;
  margin-bottom: 26px;
  background: transparent !important;
  color: var(--white) !important;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  white-space: normal;
}

.dropdown-mega-menu .dropdown-item:hover,
.dropdown-mega-menu .dropdown-item:focus {
  color: var(--primary-green-light) !important;
  background: transparent !important;
}

.dropdown-mega-menu .dropdown-item.active,
.dropdown-mega-menu .dropdown-item.active-item {
  color: var(--primary-green-light) !important;
  background: transparent !important;
}

.dropdown-mega-menu .dropdown-item:last-child {
  margin-bottom: 0;
}

/* =========================
   OPEN STATE
========================= */
.main-navbar .dropdown-menu.show {
  display: block;
}

/* =========================
   HERO
========================= */
.hero-section {
  position: relative;
}

.heroSwiper {
  width: 100%;
  height: var(--hero-height);
  min-height: var(--hero-min-height);
}

.hero-slide {
  position: relative;
  overflow: hidden;
}

.slide-bg,
.slide-overlay {
  position: absolute;
  inset: 0;
}

.slide-bg {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: transform 0.5s ease;
  transform: scale(1.02);
}

.slide-overlay {
  background: var(--overlay-dark-strong);
  z-index: 1;
}

.hero-slide .container,
.hero-slide .row,
.hero-slide .hero-content {
  position: relative;
  z-index: 2;
}

.hero-content {
  padding-top: 8rem;
}

.hero-content h1 {
  color: var(--text-white);
  font-size: var(--hero-title-size);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.hero-content p {
  color: var(--text-light);
  font-size: var(--hero-text-size);
  line-height: 1.6;
  max-width: 980px;
  margin: 0 auto 2rem;
}

.hero-btn {
  background: var(--primary-green);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  padding: 13px 26px;
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: var(--shadow-btn);
}

.hero-btn:hover {
  background: var(--primary-green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* swiper buttons */
.custom-swiper-btn::after {
  display: none;
}

.custom-swiper-btn i {
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
}

.swiper-button-prev {
  left: 24px !important;
}

.swiper-button-next {
  right: 24px !important;
}

/* swiper dots */
.swiper-pagination {
  bottom: 15px !important;
}

.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.65);
  opacity: 1;
  margin: 0 6px !important;
  transition: var(--transition-fast);
}

.swiper-pagination-bullet-active {
  width: 34px;
  border-radius: 999px;
  background: var(--primary-green);
}

/* =========================
   WHY VOLUNTEER
========================= */
.why-volunteer-section {
  background: #edf2f2;
  padding-top: 30px;
  padding-bottom: 30px;
}

.why-card {
  background: #f7f6f6;
  border-radius: 28px;
  padding: 20px 10px 20px;
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
}

.why-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.green-circle {
  background: #c9dea2;
}

.blue-circle {
  background: #c8e3e7;
}

.why-image img {
  max-width: 200px;
  max-height: 200px;
  object-fit: contain;
}

.why-card h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  color: #3b3b3b;
  margin-bottom: 22px;
}

.why-card p {
  font-size: 16px;
  line-height: 1.45;
  color: #4d4d4d;
  margin-bottom: 0;
}

/* =========================
   IMPACT
========================= */
.impact-values-section {
  position: relative;
  background: url('../../images/slider6.jpg') center center / cover no-repeat;
  padding: 60px 0;
  overflow: hidden;
}

.impact-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.72);
}

.impact-values-section .container {
  position: relative;
  z-index: 2;
}

.impact-stats-row {
  margin-bottom: 22px;
}

.impact-stat-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 20px;
  padding: 28px 18px 24px;
  min-height: 220px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.impact-stat-icon {
  font-size: 52px;
  color: #6b7280;
  margin-bottom: 14px;
  line-height: 1;
}

.impact-stat-line {
  width: 42px;
  height: 2px;
  background: #9ca3af;
  margin: 0 auto 14px;
}

.impact-stat-card h3 {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 6px;
  line-height: 1;
}

.impact-stat-card p {
  font-size: 0.98rem;
  color: #7b7b7b;
  margin-bottom: 0;
  font-weight: 500;
}

.impact-value-row {
  margin-top: 0;
}

.value-card {
  color: var(--white);
  padding: 28px 20px 24px;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.value-card-1 { background: var(--primary-green); }
.value-card-2 { background: #62ad2e; }
.value-card-3 { background: #4f9327; }
.value-card-4 { background: var(--primary-green-dark); }

.value-icon {
  font-size: 52px;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1;
}

.value-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: 8px;
}

.value-card span {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.96);
}

.value-btn {
  margin-top: auto;
  align-self: center;
  background: var(--white);
  color: #1565c0;
  border: none;
  border-radius: 4px;
  padding: 9px 18px;
  font-size: 0.92rem;
  font-weight: 700;
}

.value-btn:hover {
  background: #f4f4f4;
  color: #1565c0;
}

/* =========================
   VOLUNTEER
========================= */
.volunteer-section {
  background: #f7f8fa;
  padding: 70px 0;
}

.volunteer-slider-wrap {
  position: relative;
}

.volunteerSwiper {
  padding: 0 50px;
}

.volunteerSwiper .swiper-slide {
  height: auto;
}

.volunteer-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.volunteer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.volunteer-card-top {
  height: 150px;
  background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
}

.volunteer-card-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.volunteer-avatar-wrap {
  display: flex;
  justify-content: center;
  margin-top: -30px;
}

.volunteer-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #f3f4f6;
  border: 4px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.volunteer-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.volunteer-card-body {
  padding: 14px 16px 18px;
  text-align: center;
}

.volunteer-card-body h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.volunteer-button-prev,
.volunteer-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  color: #111827;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.volunteer-button-prev:hover,
.volunteer-button-next:hover {
  background: var(--primary-green);
  color: #fff;
  border-color: var(--primary-green);
}

.volunteer-button-prev { left: 0; }
.volunteer-button-next { right: 0; }

.volunteer-button-prev i,
.volunteer-button-next i {
  font-size: 0.95rem;
}

/* =========================
   RESTORATION
========================= */
.restoration-section {
  background: #f4f1e8;
  padding: 70px 0;
  overflow: hidden;
}

.restoration-section .section-title h2 {
  color: #1f2937;
  margin-bottom: 0;
}

.restoration-video-box {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.video-thumbnail {
  position: relative;
  cursor: pointer;
}

.video-thumbnail img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.video-thumbnail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.16);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 74px;
  height: 74px;
  transform: translate(-50%, -50%);
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  z-index: 3;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  transition: all 0.3s ease;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.video-iframe-wrap {
  display: none;
}

.video-iframe-wrap.active {
  display: block;
}

.video-iframe-wrap iframe {
  width: 100%;
  height: 540px;
  border: 0;
  display: block;
}

.restoration-slider-wrap {
  margin-top: 24px;
}

.restoration-slider-head {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.restoration-button-prev,
.restoration-button-next {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.restoration-button-prev:hover,
.restoration-button-next:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: #fff;
}

.restoration-button-prev i,
.restoration-button-next i {
  font-size: 0.95rem;
}

.restorationSwiper {
  width: 100%;
  padding: 0;
}

.restorationSwiper .swiper-slide {
  height: auto;
}

.restoration-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  min-height: 220px;
  height: 100%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.restoration-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.restoration-card:hover img {
  transform: scale(1.05);
}

.restoration-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.15));
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.restoration-card-overlay h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.restoration-card-overlay p {
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

/* =========================
   WHATSAPP
========================= */
.whatsapp-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
}

.whatsapp-float-btn {
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.28);
  cursor: pointer;
  transition: all 0.3s ease;
}

.whatsapp-float-btn:hover {
  transform: translateY(-3px) scale(1.03);
  background: #1ebe5d;
}

.whatsapp-chat-box {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: 320px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
}

.whatsapp-chat-box.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.whatsapp-chat-header {
  background: #25d366;
  color: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.whatsapp-chat-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.98rem;
}

.whatsapp-close-btn {
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

.whatsapp-chat-body {
  padding: 18px 16px 14px;
  background: #f7f8fa;
}

.whatsapp-chat-body p {
  margin: 0 0 8px;
  color: #374151;
  font-size: 0.92rem;
  line-height: 1.6;
}

.whatsapp-chat-footer {
  padding: 16px;
  background: #fff;
}

.whatsapp-chat-link {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-chat-link:hover {
  background: #1ebe5d;
  color: #fff;
}

/* =========================
   MEASURE
========================= */
.measure-section {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.measure-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.measure-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.measure-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 24, 18, 0.45);
}

.measure-section .container {
  position: relative;
  z-index: 2;
}

.measure-content {
  max-width: 700px;
  margin: 0 auto 42px;
}

.measure-content h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.measure-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 auto;
  max-width: 520px;
}

.measure-grid {
  max-width: 1080px;
  margin: 0 auto;
}

.measure-card {
  min-height: 200px;
  padding: 36px 28px;
  background: #62ad2e;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.measure-icon {
  margin-bottom: 20px;
}

.measure-icon img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.measure-card p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: #ffffff;
  margin: 0;
  max-width: 420px;
}

.measure-btn-wrap {
  margin-top: 28px;
}

.measure-btn {
  background: var(--primary-green);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 12px 30px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.measure-btn:hover {
  background: var(--primary-green-hover);
  color: #ffffff;
}
/* =========================
   PHOTO GALLERY
========================= */
.photo-gallery-section {
  background: #f5f5f5;
  padding: 70px 0;
}

.photo-gallery-section .heading h2 {
  color: #2f4358;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.2;
}

.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 26px;
  align-items: start;
}

.gallery-item {
  overflow: hidden;
  background: #ffffff;
}

.gallery-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease, transform 0.4s ease;
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* =========================
   FOOTER
========================= */
.weforest-footer {
  background: #0f2c3f;
  padding: 58px 0 34px;
  color: var(--text-white);
  overflow: hidden;
}

.weforest-footer a {
  text-decoration: none;
}

.footer-brand-block {
  max-width: 340px;
}

.footer-logo img {
  max-width: 165px;
  height: auto;
  margin-bottom: 26px;
}

.footer-address {
  margin-bottom: 20px;
}

.footer-address p {
  color: var(--text-white);
  font-size: 0.98rem;
  line-height: 1.55;
  margin-bottom: 4px;
}

.footer-address strong {
  font-weight: 700;
}

.weforest-footer h6 {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.footer-follow {
  margin-bottom: 18px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #8ea42a;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: #9db632;
  transform: translateY(-2px);
  color: var(--white);
}

.footer-livechat {
  margin: 24px 0 26px;
}

.footer-livechat a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}

.footer-livechat i {
  font-size: 1.55rem;
}

.footer-badge img {
  max-width: 155px;
  height: auto;
}

.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 14px;
}

.footer-links ul li a,
.language-switch {
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  transition: var(--transition-fast);
}

.footer-links ul li a:hover,
.language-switch:hover {
  color: #9db632;
}

.footer-links ul li a.active {
  color: #8ea42a;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-info ul li a {
  font-weight: 700;
}

.footer-newsletter-form {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 610px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--white);
  margin-top: 8px;
}

.footer-newsletter-form input {
  flex: 1;
  height: 54px;
  border: none;
  outline: none;
  padding: 0 18px;
  background: var(--white);
  color: #22313f;
  font-size: 0.98rem;
}

.footer-newsletter-form input::placeholder {
  color: #7a8590;
}

.footer-newsletter-form button {
  width: 120px;
  height: 54px;
  border: none;
  background: #8ea42a;
  color: var(--white);
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.footer-newsletter-form button:hover {
  background: #9db632;
}

.footer-bottom-wrap {
  margin-top: 70px;
}

.footer-membership h6 {
  margin-bottom: 20px;
}

.footer-membership-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}

.footer-membership-logos img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
}

.footer-search-form {
  display: flex;
  align-items: center;
  max-width: 370px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  overflow: hidden;
  margin: 0 auto;
}

.footer-search-form input {
  flex: 1;
  height: 48px;
  border: none;
  outline: none;
  background: transparent;
  color: var(--white);
  padding: 0 18px;
  font-size: 1rem;
}

.footer-search-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.footer-search-form button {
  width: 52px;
  height: 48px;
  border: none;
  background: #8ea42a;
  color: var(--white);
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 14px;
}

.footer-policy-links a {
  position: relative;
  color: var(--text-white);
  font-size: 0.96rem;
  line-height: 1.5;
  transition: var(--transition-fast);
}

.footer-policy-links a:hover {
  color: #9db632;
}

.footer-policy-links a:not(:last-child)::after {
  content: "|";
  margin-left: 14px;
  color: rgba(255, 255, 255, 0.35);
}


/* baner section style  */
.banner-section {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 24, 0.42);
}

.banner-section .container {
  position: relative;
  z-index: 2;
}

.banner-content {
  margin: 0 auto;
}

.banner-subtitle {
  display: inline-block;
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.banner-content h2 {
  color: var(--text-white);
  font-size: 3.50rem;
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}


.climate-goals-section {
  background: #f5f5f2;
  padding: 0px 0 60px;
}

.climate-goals-heading {
  background: var(--primary-green-hover);
  padding: 38px 20px 95px;
  margin-bottom: -60px;
}

.climate-goals-heading h2 {
  color: var(--white);
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}

.climate-goals-heading p {
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

.climate-goals-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--white);
}

.climate-goals-image img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

.climate-goals-content {
  background: var(--light-gray);
  padding: 56px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.climate-goals-content h3 {
  color: var(--primary-green);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
}

.goal-line {
  width: 38px;
  height: 3px;
  background: var(--primary-green-dark);
  border-radius: 999px;
  margin: 0 auto 20px;
  display: inline-block;
}

.climate-goals-content p {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
}

.climate-goals-footer {
  padding-top: 30px;
}

.climate-goals-footer a {
  color: var(--primary-green-dark);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.climate-goals-footer a:hover {
  color: var(--primary-green);
}



.content-section {
  background: #ffffff;
  padding: 70px 0;
}

.climate-content-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.content-block {
  margin-bottom: 42px;
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-intro h2,
.section-main-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 26px;
  line-height: 1.2;
}

.content-main h3 {
  font-size: 1.85rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 18px;
  line-height: 1.25;
}

.content-block p,
.content-block li {
  font-size: 1rem;
  line-height: 1.7;
  color: #6b7280;
}

.content-block p {
  margin-bottom: 18px;
}

.content-block ul {
  margin: 0 0 22px;
  padding-left: 22px;
}

.content-block li {
  margin-bottom: 12px;
}

.content-block strong {
  color: #6b7280;
  font-weight: 700;
}

.highlight-text {
  font-size: 1.05rem;
  font-weight: 600;
}

.content-columns p {
  margin-bottom: 0;
}

.content-main .mt-5 {
  margin-top: 52px !important;
}



.insight-section {
  background: #f3f3f3;
  padding: 70px 0;
}

.insight-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.insight-search {
  flex: 1;
  position: relative;
  border-bottom: 1px solid #9ca3af;
}

.insight-search input {
  width: 100%;
  height: 48px;
  border: none;
  background: transparent;
  outline: none;
  padding: 0 50px 0 14px;
  font-size: 1rem;
  color: #1f2937;
  font-family: 'SN Pro', sans-serif;
}

.insight-search input::placeholder {
  color: #6b7280;
}

.insight-search button {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #6b7280;
  font-size: 1.2rem;
}

.insight-sort .btn {
  min-width: 130px;
  height: 46px;
  border: 1px solid #9ca3af;
  background: #fff;
  color: #0f5132;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0 18px;
  border-radius: 0;
  box-shadow: none !important;
}

.insight-sort .btn:hover,
.insight-sort .btn:focus {
  border-color: var(--primary-green);
  color: var(--primary-green-dark);
  background: #fff;
}

.insight-sort .dropdown-menu {
  min-width: 130px;
  border-radius: 0;
  border: 1px solid #d1d5db;
  padding: 6px 0;
}

.insight-sort .dropdown-item {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
  padding: 8px 14px;
}

.insight-sort .dropdown-item:hover,
.insight-sort .dropdown-item.active {
  background: var(--primary-green);
  color: #fff;
}

.insight-card {
  background: #f8f8f8;
  border: 1px solid #bdbdbd;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.7s ease;
  height: 100%;
  border-radius: 9px;
}

.insight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.insight-card-image {
  overflow: hidden;
}

.insight-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.insight-card:hover .insight-card-image img {
  transform: scale(1.06);
}

.insight-card-body {
  padding: 15px 15px 18px;

}

.insight-card-body h3 {
  font-size: 1rem;
  line-height: 1;
  color: #111827;
  font-weight: 500;
  margin-bottom: 14px;
  font-family: 'Open Sans', sans-serif;
}

.insight-card-body p {
  font-size: 0.76rem;
  line-height: 1.65;
  color: #374151;
  margin-bottom: 18px;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.insight-date {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: #111827;
  margin-bottom: 10px;
}

.insight-card-body small {
  font-size: 0.82rem;
  color: #111827;
  font-weight: 500;
}

.reveal-card {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: transform, opacity;
}

.reveal-card.delay-0 { transition-delay: 0s; }
.reveal-card.delay-1 { transition-delay: 0.12s; }
.reveal-card.delay-2 { transition-delay: 0.24s; }
.reveal-card.delay-3 { transition-delay: 0.36s; }

.reveal-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.insight-empty p {
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #6b7280;
}


/* =========================
   RESOURCES PAGE
========================= */
.resources-page-section {
  background: #f5f5f3;
}

.resources-intro {
  max-width: 800px;
  margin: 0 auto 30px;
  padding-top: 10px;
  border-top: 1px solid #bdbdbd;
}

.resources-intro h2 {
  font-size: 1.50rem;
  line-height: 1.5;
  font-weight: 700;
  color: #111827;
  margin-bottom: 14px;
  font-family: 'Open Sans', sans-serif;
}

.resources-intro p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 0.70rem;
  line-height: 1.75;
  color: #4b5563;
  font-weight: 500;
}

.resource-year-block {
  max-width: 800px;
  margin: 0 auto 60px;
}

.resource-year-block:last-child {
  margin-bottom: 0;
}

.resource-year {
  font-size: 1.50rem;
  line-height: 1.2;
  font-weight: 700;
  color: #111827;
  margin-bottom: 28px;
  font-family: 'Open Sans', sans-serif;
}

.resource-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid #8d8d8d;
  transition: transform 0.3s ease;
}

.resource-item:hover {
  transform: translateY(-2px);
}

.resource-thumb {
  width: 110px;
  min-width: 110px;
}

.resource-thumb img {
  width: 100%;
  height: 135px;
  object-fit: cover;
  display: block;
}

.resource-content {
  flex: 1;
  padding-top: 2px;
}

.resource-item-title {
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
  font-family: 'Open Sans', sans-serif;
}

.resource-item-date {
  display: block;
  font-size: 0.60rem;
  line-height: 1.4;
  color: #6b7280;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: none;
}

.resource-item-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 18px;
  max-width: 720px;
}

.resource-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  height: 42px;
  border: 1px solid #8d8d8d;
  background: var(--primary-green-light);
  color: var(--text-white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.resource-download-btn:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: #ffffff;
}



/* =========================
   PRIORITY SCROLL SECTION
========================= */
.priority-scroll-section {
  background: #111111;
  color: #ffffff;
  position: relative;
}

.priority-scroll-layout {
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 100vh;
}

.priority-visual {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.priority-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.priority-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition: opacity 0.6s ease, transform 0.8s ease, visibility 0.6s ease;
}

.priority-image.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.priority-content-side {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 90px;
  min-height: 100vh;
  background: #111111;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.priority-content-inner {
  padding: 120px 80px 120px 80px;
}

.priority-item {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0.28;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  margin-bottom: 50px;
}

.priority-item:last-child {
  margin-bottom: 0;
}

.priority-item.active {
  opacity: 1;
  transform: translateY(0);
}

.priority-label {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 22px;
  text-transform: uppercase;
  font-family: 'SN Pro', sans-serif;
}

.priority-item h2 {
  font-size: 1.50rem;
  line-height: 1.14;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 28px;
  font-family: 'Open Sans', sans-serif;
  max-width: 780px;
}

.priority-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  max-width: 760px;
  margin: 0;
}

.priority-side-nav {
  position: sticky;
  top: 0;
  height: 100vh;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 44px;
  background: #111111;
}

.priority-nav-link {
  position: relative;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.priority-nav-link:hover {
  color: #ffffff;
}

.priority-nav-link.active {
  color: #ffffff;
}

.priority-nav-link.active::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 2px;
  background: #ffffff;
}


.solution-intro-section {
  padding: 60px 0 40px;
  background: #f5f5f5;
}

.solution-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.solution-intro p {
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  color: #1f1f1f;
  margin-bottom: 14px;
}

.solution-intro h2 {
  font-size: 1.9rem;
  line-height: 1.2;
  font-weight: 700;
  font-style: italic;
  color: #111111;
  margin-bottom: 18px;
  font-family: 'Open Sans', sans-serif;
}

.solution-intro-logo img,
.solution-intro-logo svg {
  width: 54px;
  height: 54px;
  display: block;
  margin: 0 auto;
}


.events-section {
  background: #f3f3f3;
  padding: 30px 0 50px;
}

.events-topbar {
  margin-bottom: 36px;
}

.events-sort {
  width: 390px;
  max-width: 100%;
  height: 52px;
  border: 1px solid #8f8f8f;
  background: #f8f8f8;
  color: #111827;
  font-size: 0.98rem;
  font-weight: 500;
  padding: 0 18px;
  outline: none;
  box-shadow: none;
  border-radius: 2px;
}

.event-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 175px;
  background: #ececec;
}

.event-date {
  border-right: 1px solid #d7d7d7;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.event-date span,
.event-date strong {
  display: block;
  color: #5f6c7b;
  font-weight: 700;
  line-height: 1.35;
}

.event-date span {
  font-size: 0.98rem;
}

.event-date strong {
  font-size: 0.88rem;
  margin: 16px 0;
  letter-spacing: 0.04em;
}

.event-body {
  padding: 20px 24px;
}

.event-body h3 {
  font-size: 0.98rem;
  line-height: 1.2;
  font-weight: 800;
  color: #5f6c7b;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.event-body p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #7a7a7a;
  margin: 0;

  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* =========================
   ANNOUNCEMENT PAGE
========================= */
.announcement-page-section {
  background: #f5f5f5;
  padding: 70px 0;
}

.announcement-page-intro {
  max-width: 760px;
  margin: 0 auto 40px;
}

.announcement-page-intro h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
  font-family: 'Open Sans', sans-serif;
}

.announcement-page-intro p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #6b7280;
  margin: 0;
}

.announcement-filter-bar {
  margin-bottom: 36px;
}

.announcement-search-input,
.announcement-filter-select {
  width: 100%;
  height: 52px;
  border: 1px solid #b8b8b8;
  background: #ffffff;
  color: #1f2937;
  font-size: 0.95rem;
  padding: 0 16px;
  outline: none;
  box-shadow: none;
  border-radius: 0;
}

.announcement-list-wrap {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.announcement-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  background: #efefef;
  border: 1px solid #dddddd;
  transition: all 0.3s ease;
}

.announcement-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.announcement-date-box {
  border-right: 1px solid #d7d7d7;
  padding: 24px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f3f3f3;
  text-align: center;
}

.announcement-day {
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  color: #5f6c7b;
  margin-bottom: 8px;
  font-family: 'Open Sans', sans-serif;
}

.announcement-month {
  font-size: 0.82rem;
  font-weight: 700;
  color: #5f6c7b;
  letter-spacing: 0.04em;
}

.announcement-content-box {
  padding: 24px 26px;
}

.announcement-category {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-green-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.announcement-content-box h3 {
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 700;
  color: #4f5f70;
  margin-bottom: 10px;
  font-family: 'Open Sans', sans-serif;
}

.announcement-content-box p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #727272;
  margin-bottom: 18px;
  max-width: 900px;
}

.announcement-readmore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 42px;
  padding: 0 18px;
  border: 1px solid #9ca3af;
  background: #ffffff;
  color: var(--primary-green-dark);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.announcement-readmore-btn:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: #ffffff;
}

.announcement-pagination {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.announcement-pagination a {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfcfcf;
  background: #ffffff;
  color: #374151;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.announcement-pagination a:hover,
.announcement-pagination a.active {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: #ffffff;
}


/* =========================
   PROJECT PAGE
========================= */
.project-page-section {
  background: #f5f5f5;
}

.project-page-intro {
  max-width: 760px;
  margin: 0 auto 38px;
}

.project-page-intro h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
  font-family: 'Open Sans', sans-serif;
}

.project-page-intro p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #6b7280;
  margin: 0;
}

.project-tabs-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.project-tab-btn {
  min-width: 180px;
  height: 46px;
  border: 1px solid #cfcfcf;
  background: #ffffff;
  color: #374151;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0 22px;
  transition: all 0.3s ease;
}

.project-tab-btn:hover,
.project-tab-btn.active {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: #ffffff;
}

.project-tab-content {
  display: none;
}

.project-tab-content.active {
  display: block;
}

.project-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.project-card-image {
  position: relative;
  overflow: hidden;
}

.project-card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.project-card:hover .project-card-image img {
  transform: scale(1.05);
}

.project-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  height: 34px;
  padding: 0 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge-current {
  background: var(--primary-green);
}

.badge-upcoming {
  background: #f59e0b;
}

.project-card-body {
  padding: 24px 22px 24px;
}

.project-category {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-green-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.project-card-body h3 {
  font-size: 1.28rem;
  line-height: 1.3;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
  font-family: 'Open Sans', sans-serif;
}

.project-card-body p {
  font-size: 0.60rem;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 16px;
}

.project-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.project-meta span {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #4b5563;
}

.project-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  height: 42px;
  padding: 0 18px;
  background: #ffffff;
  border: 1px solid #cfcfcf;
  color: var(--primary-green-dark);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.project-btn:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: #ffffff;
}

.upcoming-card {
  background: #fcfcfc;
}





.about-hero-section {
  background: #f5f5f5;
  padding: 0px 0 28px;
}

.about-hero-wrap {
  position: relative;
}

.about-hero-image {
  position: relative;
  overflow: hidden;
  height: 400px;
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-hero-title-bar {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: min(1220px, calc(100% - 80px));
  background: rgba(96, 176, 54, 0.9);
  padding: 8px 4px 8px;
  text-align: center;
}

.about-hero-title-bar h1 {
  margin: 0;
  color: #ffffff;
  font-size: 45px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: 'SN Pro', sans-serif;
}



.about-intro-section {
  background: #f5f5f5;
  padding: 24px 0 40px;
}

.about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  font-size: 16px;
  line-height: 1.4;
}

.about-breadcrumb a {
  color: #005aa3;
  font-weight: 700;
  text-decoration: none;
}

.about-breadcrumb span {
  color: #7b7b7b;
}

.about-intro-content p {
  font-size: 16px;
  line-height: 1.25;
  color: #7a7a7a;
  font-weight: 400;
  margin-bottom: 16px;
}

.about-intro-content p:last-child {
  margin-bottom: 0;
}

.about-intro-content a {
  color: #005aa3;
  font-weight: 600;
  text-decoration: none;
}

.about-intro-content a:hover {
  text-decoration: underline;
}

.about-intro-logo-wrap {
  text-align: center;
}

.about-intro-logo-wrap img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: inline-block;
}



.story-section {
  background: #f5f5f5;
  padding: 28px 0 40px;
}

.story-content {
  padding-right: 18px;
}

.story-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.story-title h2 {
  margin: 0;
  color: #6bb63b;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'SN Pro', sans-serif;
}

.story-content p {
  font-size: 16px;
  line-height: 1.25;
  color: #7a7a7a;
  font-weight: 400;
  margin-bottom: 16px;
}

.story-content p:last-child {
  margin-bottom: 0;
}

.story-video {
  padding-top: 6px;
}

.story-video .ratio {
  background: #000;
  overflow: hidden;
}

.story-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}


.how-we-work-section {
  background: #f5f5f5;
  padding: 24px 0 40px;
}

.how-we-work-content h2 {
  margin: 0 0 18px;
  color: #6bb63b;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'SN Pro', sans-serif;
}

.how-we-work-content p {
  font-size: 16px;
  line-height: 1.65;
  color: #7a7a7a;
  font-weight: 400;
  margin-bottom: 16px;
}

.how-we-work-content p:last-child {
  margin-bottom: 0;
}

.how-we-work-image {
  margin-top: 34px;
  text-align: center;
  height: 300px;
}

.how-we-work-image img {
  width: 100%;
  max-width: 820px;
  height: 100%;
  object-fit: cover;
  display: inline-block;
}


.annual-impact-section {
  background: #f5f5f5;
  padding: 24px 0 40px;
}

.annual-impact-wrap {
  text-align: center;
}

.annual-impact-wrap h2 {
  margin: 0 0 10px;
  color: var(--primary-green-light);
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'SN Pro', sans-serif;
}

.annual-impact-content {
  text-align: left;
  max-width: 100%;
  margin: 0 auto;
}

.annual-impact-content h3 {
  margin: 0 0 12px;
  color: #6f6f6f;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
  font-family: 'SN Pro', sans-serif;
}

.annual-impact-content p {
  font-size: 16px;
  line-height: 1.75;
  color: #6f6f6f;
  font-weight: 400;
  margin-bottom: 16px;
}

.annual-impact-content a {
  color: #005aa3;
  font-weight: 700;
  text-decoration: none;
}

.annual-impact-content a:hover {
  text-decoration: underline;
}

.annual-impact-note {
  font-style: italic;
}

.annual-impact-logo {
  margin-top: 54px;
  text-align: center;
}

.annual-impact-logo img {
  width: 100%;
  max-width: 170px;
  height: auto;
  display: inline-block;
}

.annual-impact-btn {
  margin-top: 28px;
  text-align: center;
}

.donate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  height: 34px;
  padding: 0 18px;
  background: var(--primary-green);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
  transition: 0.3s ease;
}

.donate-btn:hover {
  background: var(--primary-green-dark);
  color: #fff;
}


/* =========================
   CAREER PAGE DESIGN
   WITHOUT HERO SECTION
========================= */

.career-intro-section,
.career-why-section,
.career-openings-section,
.career-benefits-section,
.career-process-section,
.career-cta-section {
  background: #f5f5f5;
  padding: 60px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h2,
.career-intro-wrap h2,
.career-why-content h2,
.career-cta-wrap h2 {
  margin: 0 0 14px;
  color: var(--primary-green-dark);
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.section-heading p,
.career-intro-wrap p,
.career-why-content p,
.career-cta-wrap p {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 14px;
  opacity: 0.85;
}

/* =========================
   BREADCRUMB
========================= */

.career-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 15px;
  flex-wrap: wrap;
}

.career-breadcrumb a {
  color: var(--primary-green-dark);
  font-weight: 700;
  text-decoration: none;
}

.career-breadcrumb a:hover {
  color: var(--primary-green-hover);
}

.career-breadcrumb span {
  color: var(--text-dark);
  opacity: 0.65;
}

/* =========================
   INTRO
========================= */

.career-intro-wrap {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

/* =========================
   WHY SECTION
========================= */

.career-why-image img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.career-why-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  height: 100%;
  box-shadow: var(--shadow-soft);
}

.career-why-content ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.career-why-content ul li {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 8px;
  opacity: 0.85;
}

/* =========================
   JOB CARD
========================= */

.job-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: 0.3s ease;
  border: 1px solid rgba(82, 196, 26, 0.08);
}

.job-card:hover {
  transform: translateY(-6px);
}

.job-type {
  display: inline-block;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: var(--primary-green);
  color: var(--text-white);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: var(--shadow-btn);
}

.job-card h3 {
  margin: 0 0 12px;
  color: var(--text-dark);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
}

.job-card p {
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
  opacity: 0.82;
}

.job-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.job-card ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 14px;
  opacity: 0.82;
}

.job-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-green);
}

.apply-btn,
.career-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 135px;
  height: 44px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  background: var(--primary-green);
  color: var(--text-white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s ease;
  box-shadow: var(--shadow-btn);
  border: none;
}

.apply-btn:hover,
.career-cta-btn:hover {
  background: var(--primary-green-hover);
  color: var(--text-white);
}

/* =========================
   BENEFIT CARD
========================= */

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--primary-green);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: var(--shadow-btn);
}

.benefit-card h4 {
  margin: 0 0 10px;
  color: var(--text-dark);
  font-size: 20px;
  font-weight: 700;
}

.benefit-card p {
  margin: 0;
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.82;
}

/* =========================
   PROCESS CARD
========================= */

.process-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: 0.3s ease;
}

.process-card:hover {
  transform: translateY(-5px);
}

.process-card span {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--primary-green);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  box-shadow: var(--shadow-btn);
}

.process-card h4 {
  margin: 0 0 10px;
  color: var(--text-dark);
  font-size: 20px;
  font-weight: 700;
}

.process-card p {
  margin: 0;
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.82;
}

/* =========================
   CTA SECTION
========================= */

.career-cta-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 45px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.career-cta-btn {
  margin-top: 12px;
}

.career-faq-section {
  background: #f5f5f5;
  padding: 60px 0;
}

.career-faq-wrap {
  width: 100%;
}

.career-faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid rgba(82, 196, 26, 0.08);
}

.career-faq-question {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  color: var(--text-dark);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  cursor: pointer;
}

.career-faq-question i {
  color: var(--primary-green);
  font-size: 16px;
  flex-shrink: 0;
  transition: 0.3s ease;
}

.career-faq-answer {
  display: none;
  padding: 0 24px 22px;
}

.career-faq-answer p {
  margin: 0;
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.82;
}

.career-faq-item.active .career-faq-answer {
  display: block;
}

.career-faq-item.active .career-faq-question i {
  transform: rotate(45deg);
}

.donation-section {
  background: #111111;
  padding: 60px 0;
}

.donation-image-wrap {
  text-align: center;
}

.donation-image-wrap img {
  width: 100%;
  max-width: 520px;
  height: 420px;
  display: inline-block;
  border-radius: 16px;
}

.donation-content {
  max-width: 540px;
  margin-left: auto;
}

.donation-content h2 {
  color: #25d900;
  font-size: 34px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 14px;
}

.donation-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.donation-amount-preview {
  margin-bottom: 18px;
}

.donation-amount-preview input {
  width: 100%;
  height: 54px;
  border: none;
  background: #ffffff;
  color: #666666;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  border-radius: 4px;
  outline: none;
}

.donation-amount-btn {
  width: 100%;
  height: 46px;
  border: none;
  border-radius: 4px;
  background: #6adf49;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s ease;
}

.donation-amount-btn:hover,
.donation-amount-btn.active {
  background: #4bc82d;
}

.donate-now-btn {
  margin-top: 26px;
  min-width: 210px;
  height: 50px;
  border: none;
  border-radius: 4px;
  background: #25d900;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.donate-now-btn:hover {
  background: #1db300;
}


.donation-form-wrap {
  background: #f3f3f3;
  padding: 28px;
  border-radius: 6px;
  margin-top: 10px;
}

.donation-form-group label {
  display: block;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
  color: #66707c;
  margin-bottom: 8px;
}

.donation-form-group input,
.donation-form-group select,
.donation-form-group textarea {
  width: 100%;
  border: 1px solid #c8c8c8;
  background: #ffffff;
  color: #333333;
  font-size: 15px;
  padding: 10px 12px;
  min-height: 46px;
  border-radius: 3px;
  outline: none;
  box-shadow: none;
}

.donation-form-group textarea {
  min-height: 220px;
  resize: vertical;
}

.donation-form-group input:focus,
.donation-form-group select:focus,
.donation-form-group textarea:focus {
  border-color: #62bd3b;
}

.donation-submit-btn {
  min-width: 120px;
  height: 42px;
  border: none;
  background: #62bd3b;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  padding: 0 24px;
  border-radius: 3px;
  transition: 0.3s ease;
}

.donation-submit-btn:hover {
  background: #4ea32c;
}


.volunteer-form-section {
  background: #f5f5f5;
  padding: 60px 0;
}

.volunteer-form-header {
  margin-bottom: 35px;
}

.volunteer-form-header h2 {
  margin: 0 0 12px;
  color: var(--primary-green-dark);
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.volunteer-form-header p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.85;
}

.volunteer-form-wrap {
  background: var(--white);
  padding: 35px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.volunteer-form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 600;
}

.volunteer-form-group label span {
  color: #e53935;
}

.volunteer-form-group input,
.volunteer-form-group select,
.volunteer-form-group textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d9d9d9;
  background: var(--white);
  color: var(--text-dark);
  font-size: 15px;
  padding: 10px 14px;
  border-radius: 8px;
  outline: none;
  transition: 0.3s ease;
}

.volunteer-form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.volunteer-form-group input:focus,
.volunteer-form-group select:focus,
.volunteer-form-group textarea:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(82, 196, 26, 0.12);
}

.volunteer-form-group input[type="file"] {
  padding: 11px 14px;
}

.volunteer-check-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.volunteer-check-group input {
  margin-top: 4px;
}

.volunteer-check-group label {
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.volunteer-submit-btn {
  min-width: 220px;
  height: 50px;
  border: none;
  border-radius: var(--radius-pill);
  background: var(--primary-green);
  color: var(--text-white);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-btn);
  transition: 0.3s ease;
}

.volunteer-submit-btn:hover {
  background: var(--primary-green-hover);
}





