/* =========================================================
   স্বপ্ননিয়ে ফাউন্ডেশন — Premium Charity Landing Page
   Design tokens derived from brand logo
========================================================= */
:root {
  --green: #159442;
  --green-dark: #0b6b30;
  --green-light: #e6f6ec;
  --red: #e2231a;
  --red-dark: #b71810;
  --orange: #f7941d;
  --orange-light: #fff3e0;
  --cream: #fffbf4;
  --dark: #1a1a1a;
  --gray: #6b6f76;
  --gray-light: #f4f2ec;
  --border: #ece7db;

  --font-display: "Baloo Da 2", sans-serif;
  --font-body: "Hind Siliguri", sans-serif;
  --font-utility: "Poppins", sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 20px 50px -20px rgba(26, 26, 26, 0.18);
  --shadow-card: 0 10px 30px -12px rgba(26, 26, 26, 0.14);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
  position: relative;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.25;
}
p {
  margin: 0;
}
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s var(--ease);
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: var(--font-body);
  cursor: pointer;
}
::selection {
  background: var(--orange);
  color: #fff;
}

/* Focus visibility for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.container {
  max-width: 1220px;
  /* max-width: 1820px; */
}

/* loader css */

.custom-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.6s ease;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  animation: pulse 2s infinite ease-in-out;
  z-index: 2;
}

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

.custom-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 480px) {
  .loader-logo {
    width: 100px;
    height: 100px;
  }
}

/* =========================================================
   SCROLL PROGRESS
========================================================= */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 2000;
  background: transparent;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green), var(--orange), var(--red));
}

/* =========================================================
   TOPBAR
========================================================= */
.topbar {
  background: var(--dark);
  color: #e9e9e9;
  font-family: var(--font-utility);
  font-size: 0.82rem;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-left {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding: 6px;
}
.topbar-left i {
  color: var(--orange);
  margin-right: 6px;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar-right a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  /* display: flex; */
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}
.topbar-right a:hover {
  background: var(--green);
  transform: translateY(-2px);
}
.topbar-right .topbar-donate {
  width: auto;
  height: auto;
  border-radius: 30px;
  background: linear-gradient(120deg, var(--red), var(--orange));
  color: #fff !important;
  padding: 8px 20px;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(226, 35, 26, 0.4);
  transition: all 0.3s var(--ease);
}
.topbar-right .topbar-donate:hover {
  background: linear-gradient(120deg, var(--red-dark), var(--red));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(226, 35, 26, 0.5);
}





/* =========================================================
   NAVBAR
========================================================= */
.main-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fffdf9;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: 0.35s var(--ease);
  width: 100%;
}
.main-header.scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.main-header .navbar {
  padding: 10px 0;
}
.navbar-brand img {
  height: 52px;
  transition: 0.3s var(--ease);
}
.main-header.scrolled .navbar-brand img {
  height: 52px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--dark) !important;
  padding: 10px 16px !important;
  position: relative;
  border-radius: 8px;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.3s var(--ease);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}
.nav-link:hover,
.nav-link.active {
  color: var(--green-dark) !important;
}

.nav-item.dropdown {
  position: relative;
}
.dropdown-menu {
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  padding: 8px;
  margin-top: 10px;
  min-width: 210px;
}
@media (min-width: 992px) {
  .nav-item.dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s var(--ease);
    position: absolute;
    top: 100%;
    left: 0;
  }
  .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--dark);
}
.dropdown-menu li a i {
  color: var(--orange);
  width: 18px;
}
.dropdown-menu li a:hover {
  background: var(--green-light);
  color: var(--green-dark);
}

.btn-donate {
  background: linear-gradient(120deg, var(--red), var(--orange));
  color: #fff !important;
  padding: 11px 26px;
  border-radius: 30px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 24px -8px rgba(226, 35, 26, 0.55);
  margin-left: 14px;
}
.btn-donate:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -8px rgba(226, 35, 26, 0.65);
  color: #fff;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border: none;
  border-radius: 10px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: var(--green-dark);
  margin: 0 auto;
  border-radius: 2px;
  transition: 0.3s;
}
.nav-menu-head {
  display: none;
}
.nav-close {
  display: none;
}
.nav-overlay {
  display: none;
}

@media (max-width: 991.98px) {
  .nav-toggle {
    display: flex;
  }
  .navbar-brand img {
    height: 42px;
  }
  .main-header.scrolled .navbar-brand img {
    height: 32px;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: 0.35s var(--ease);
    z-index: 9998;
  }
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 86vw);
    background: var(--cream);
    z-index: 9999;
    flex-direction: column;
    align-items: stretch;
    padding: 0 22px 30px;
    transform: translateX(100%);
    transition: 0.4s var(--ease);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    overflow-x: hidden;
    pointer-events: none;
  }
  .nav-menu.active {
    transform: translateX(0);
    pointer-events: auto;
  }
  .nav-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 14px;
    overflow: hidden;
  }
  .nav-menu-head img {
    height: 34px;
    max-width: 80%;
  }
  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--green-light);
    border: none;
    color: var(--green-dark);
    font-size: 1rem;
  }
  .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 2px;
  }
  .nav-item {
    border-bottom: 1px dashed var(--border);
  }
  .nav-link {
    padding: 14px 4px !important;
    display: block;
  }
  .nav-link::after {
    display: none;
  }
  .dropdown-menu {
    position: static !important;
    box-shadow: none;
    margin: 0 0 8px 12px;
    display: none;
    background: var(--green-light);
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .nav-item.dropdown.open .dropdown-menu {
    display: block;
  }
  .navbar-nav .btn-donate {
    display: flex;
    margin: 18px 4px 0;
  }
  .nav-menu > .d-lg-none.btn-donate {
    display: flex;
    margin-top: 20px;
    justify-content: center;
  }
}

/* =========================================================
   HERO SLIDER
========================================================= */
.hero {
  position: relative;
  height: 92vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slider,
.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
  height: 100%;
}
.hero-slider .swiper-slide {
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(11, 20, 13, 0.86) 0%,
    rgba(11, 20, 13, 0.62) 42%,
    rgba(11, 20, 13, 0.35) 70%,
    rgba(11, 20, 13, 0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  max-width: 720px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-utility);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}
.hero-content h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.9rem);
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
}
.hero-content h1 span {
  background: linear-gradient(90deg, var(--orange), #ffce7d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-content p {
  font-size: 1.15rem;
  color: #f1f1e9;
  max-width: 560px;
  margin-bottom: 34px;
  font-weight: 300;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: linear-gradient(120deg, var(--red), var(--orange));
  color: #fff;
  padding: 16px 32px;
  border-radius: 40px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 16px 32px -10px rgba(226, 35, 26, 0.55);
  transition: 0.35s var(--ease);
}
.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 40px -8px rgba(226, 35, 26, 0.65);
  color: #fff;
}
.btn-hero-outline {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(4px);
}
.btn-hero-outline:hover {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}
.btn-hero-outline.light {
  border-color: rgba(11, 20, 13, 0.3);
  color: var(--dark);
}
.btn-hero-outline.light:hover {
  background: var(--dark);
  color: #fff;
}

.hero-slider .swiper-pagination {
  bottom: 34px !important;
  z-index: 4;
}
.hero-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 0.5;
}
.hero-slider .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--orange);
  width: 28px;
  border-radius: 6px;
}
.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  backdrop-filter: blur(6px);
}
.hero-nav-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
}
.hero-prev {
  left: 24px;
}
.hero-next {
  right: 24px;
}
@media (max-width: 767.98px) {
  .hero-nav-btn {
    display: none;
  }
}

.hero-leaf-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 4;
  line-height: 0;
  overflow: hidden;
}
.hero-leaf-divider svg {
  width: 100%;
  height: 80px;
  display: block;
}
.hero-leaf-divider path {
  fill: var(--cream);
}

/* =========================================================
   STATS STRIP
========================================================= */
.stats-strip {
  background: linear-gradient(120deg, var(--green-dark), var(--green));
  padding: 52px 0;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.stat-box {
  text-align: center;
  color: #fff;
}
.stat-box i {
  font-size: 2.1rem;
  color: var(--orange);
  margin-bottom: 10px;
  display: inline-block;
}
.stat-box h3 {
  font-size: 2.4rem;
  font-weight: 700;
}
.stat-box p {
  font-family: var(--font-utility);
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 4px;
}

/* =========================================================
   SECTION GENERIC
========================================================= */
.section {
  padding: 100px 0;
  position: relative;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-utility);
  font-weight: 600;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  margin-bottom: 18px;
}
.section-eyebrow.center {
  margin-left: auto;
  margin-right: auto;
}
.section-eyebrow.light {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 20px;
  font-weight: 700;
}
.section-title span {
  color: var(--red);
}
.section-text {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 16px;
  max-width: 560px;
}
.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-head .section-text {
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   ABOUT
========================================================= */
.about-section {
  background: var(--cream);
}
.about-media {
  position: relative;
  padding: 0 26px 26px 0;
}
.about-img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.about-img-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 46%;
  border: 6px solid var(--cream);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  height: 230px;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  top: 24px;
  left: -14px;
  background: #fff;
  padding: 14px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 230px;
}
.about-badge i {
  font-size: 1.6rem;
  color: var(--orange);
}
.about-badge strong {
  display: block;
  font-size: 0.92rem;
  font-family: var(--font-body);
}
.about-badge span {
  font-size: 0.76rem;
  color: var(--gray);
}
.about-list {
  margin: 20px 0 26px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: 500;
}
.about-list i {
  color: var(--green);
  margin-top: 4px;
}
.about-footer {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.about-signature {
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-signature img {
  height: 38px;
}
.about-signature span {
  font-size: 0.82rem;
  color: var(--gray);
  font-family: var(--font-utility);
}

.btn-solid {
  background: var(--green);
  color: #fff;
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  box-shadow: 0 14px 28px -10px rgba(21, 148, 66, 0.5);
  transition: 0.3s var(--ease);
}
.btn-solid:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
}



/* =========================================================
   FOUNDER'S QUOTE
========================================================= */
.founder-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.founder-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--green-light) 0%, transparent 70%);
  z-index: 0;
}
.founder-section .container {
  position: relative;
  z-index: 1;
}
.founder-media {
  position: relative;
  padding: 0 20px 20px 0;
}
.founder-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: 0.5s var(--ease);
}
.founder-img:hover {
  transform: scale(1.02);
}
.founder-quote-icon {
  position: absolute;
  top: 30px;
  right: 20px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 10px 30px rgba(226, 35, 26, 0.4);
  animation: pulse 3s infinite ease-in-out;
}
.founder-quote-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-soft);
  border-left: 5px solid var(--orange);
  position: relative;
}
.founder-quote-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--orange), var(--red));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.founder-quote-text {
  font-size: 1.18rem;
  line-height: 1.9;
  color: var(--dark);
  font-style: italic;
  margin-bottom: 28px;
  position: relative;
  padding-left: 20px;
}
.founder-quote-text::before {
  content: "\201C";
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--orange);
  opacity: 0.3;
  font-style: normal;
}
.founder-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px dashed var(--border);
  gap: 20px;
}
.founder-name-title h4 {
  font-size: 1.18rem;
  margin-bottom: 6px;
  color: var(--dark);
}
.founder-name-title span {
  font-family: var(--font-utility);
  font-size: 0.88rem;
  color: var(--gray);
}
.founder-signature img {
  height: 48px;
  /* filter: brightness(0) invert(0.4);
  opacity: 0.7; */
}

/* =========================================================
   ACTIVITIES
========================================================= */
.activities-section {
  background: var(--gray-light);
  position: relative;
  overflow: hidden;
}
.leaf-bg-shape {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-light) 0%, transparent 70%);
  z-index: 0;
}
.activities-section .container {
  position: relative;
  z-index: 1;
}
.activity-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px 30px;
  height: 100%;
  box-shadow: var(--shadow-card);
  transition: 0.4s var(--ease);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.activity-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--green), var(--orange), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s var(--ease);
}
.activity-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-soft);
}
.activity-card:hover::before {
  transform: scaleX(1);
}
.activity-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  margin-bottom: 18px;
}
.activity-icon {
  width: 66px;
  height: 66px;
  border-radius: 18px;
  background: var(--green-light);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
  transition: 0.4s var(--ease);
}
.activity-card:hover .activity-icon {
  background: var(--green);
  color: #fff;
  transform: rotate(-8deg) scale(1.05);
}
.activity-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.activity-card p {
  color: var(--gray);
  margin-bottom: 18px;
  font-size: 0.96rem;
}
.activity-link {
  font-weight: 700;
  color: var(--red);
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.activity-link i {
  transition: 0.3s;
}
.activity-link:hover i {
  transform: translateX(4px);
}

/* =========================================================
   GOALS
========================================================= */
.goals-section {
  background: var(--cream);
}
.goal-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  height: 100%;
  position: relative;
  transition: 0.35s var(--ease);
  border: 1px solid var(--border);
}
.goal-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
}
.goal-num {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--gray-light);
  -webkit-text-stroke: 1px var(--orange);
  color: transparent;
}
.goal-card i {
  font-size: 1.7rem;
  color: var(--orange);
  margin-bottom: 14px;
  display: inline-block;
}
.goal-card h4 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.goal-card p {
  color: var(--gray);
  font-size: 0.92rem;
}

/* =========================================================
   DONATE CTA
========================================================= */
.donate-cta {
  padding: 0 0 100px;
  overflow: hidden;
}
.donate-cta-inner {
  background: linear-gradient(
    120deg,
    var(--green-dark),
    var(--green) 55%,
    var(--orange)
  );
  border-radius: var(--radius-lg);
  padding: 64px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.donate-cta-inner::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.donate-text h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  color: #fff;
  margin: 10px 0 14px;
}
.donate-text h2 span {
  color: #ffe1a8;
}
.donate-text p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 480px;
}
.donate-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* =========================================================
   GALLERY
========================================================= */
.gallery-section {
  background: var(--gray-light);
}
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.gallery-tabs li {
  padding: 12px 26px;
  border-radius: 30px;
  background: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s var(--ease);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-card);
  color: var(--gray);
}
.gallery-tabs li.active,
.gallery-tabs li:hover {
  background: var(--green);
  color: #fff;
}
.gallery-panel {
  display: none;
}
.gallery-panel.active {
  display: block;
  animation: fadein 0.5s var(--ease);
}
@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
  aspect-ratio: 4/3.2;
  box-shadow: var(--shadow-card);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s var(--ease);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 20, 13, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.35s var(--ease);
  color: #fff;
  font-size: 1.4rem;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.video-grid {
  grid-template-columns: repeat(3, 1fr);
}
.video-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3.2;
  cursor: pointer;
}
.video-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s var(--ease);
}
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: 0.3s var(--ease);
}
.video-item:hover .video-play {
  background: var(--red);
  color: #fff;
  transform: translate(-50%, -50%) scale(1.1);
}
.video-item:hover img {
  transform: scale(1.08);
}
.video-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
}

@media (max-width: 767.98px) {
  .gallery-grid,
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
@media (max-width: 480px) {
  .gallery-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   NEWS
========================================================= */
.news-section {
  background: var(--cream);
}
.news-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 100%;
  transition: 0.4s var(--ease);
}
.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}
.news-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s var(--ease);
}
.news-card:hover .news-img img {
  transform: scale(1.08);
}
.news-date {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: #fff;
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
}
.news-body {
  padding: 26px;
}
.news-tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  font-family: var(--font-utility);
}
.news-body h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.5;
}
.news-body p {
  color: var(--gray);
  font-size: 0.92rem;
  margin-bottom: 16px;
}
.news-link {
  font-weight: 700;
  color: var(--green-dark);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.news-link i {
  transition: 0.3s;
}
.news-link:hover i {
  transform: translateX(4px);
}

/* =========================================================
   TESTIMONIALS
========================================================= */
.testimonial-section {
  background: var(--green-light);
}
.testi-slider {
  padding-bottom: 50px;
}
.testi-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
  position: relative;
}
.testi-quote-icon {
  color: var(--orange);
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.testi-card p {
  font-size: 1.12rem;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 24px;
}
.testi-person {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.testi-person img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--green-light);
}
.testi-person div {
  text-align: left;
}
.testi-person strong {
  display: block;
  font-size: 0.98rem;
}
.testi-person span {
  font-size: 0.8rem;
  color: var(--gray);
}
.testi-pagination {
  bottom: 0 !important;
}
.testi-pagination .swiper-pagination-bullet-active {
  background: var(--green);
}

/* =========================================================
   CONTACT
========================================================= */
.contact-section {
  background: var(--cream);
}
.contact-info-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: 0.3s var(--ease);
}
.contact-info-card:hover {
  transform: translateX(6px);
  border-left: 4px solid var(--orange);
}
.contact-info-card i {
  color: var(--green);
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.contact-info-card h4 {
  font-size: 1.02rem;
}
.contact-info-card p {
  color: var(--gray);
  font-size: 0.92rem;
}

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  background: var(--gray-light);
  transition: 0.3s var(--ease);
  resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  background: #fff;
  outline: none;
}
.contact-form button {
  width: 100%;
  justify-content: center;
}

/* =========================================================
   FOOTER
========================================================= */
.main-footer {
  background: #0e1a12;
  color: #cfd8d1;
  padding-top: 0;
  position: relative;
  overflow: hidden;
}
.footer-leaf-divider {
  line-height: 0;
  margin-top: -1px;
  overflow: hidden;
}
.footer-leaf-divider svg {
  width: 100%;
  height: 70px;
}
.footer-leaf-divider path {
  fill: var(--cream);
}
.footer-top {
  padding: 60px 0 40px;
}
.footer-logo {
  height: 60px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}
.footer-top p {
  font-size: 0.92rem;
  color: #a9b3ac;
  margin-bottom: 18px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-social a:hover {
  background: var(--orange);
  color: #0e1a12;
}
.main-footer h5 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 20px;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #a9b3ac;
  font-size: 0.92rem;
}
.footer-links a:hover {
  color: var(--orange);
  padding-left: 4px;
}
.footer-newsletter {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-newsletter input {
  flex: 1;
  border: none;
  border-radius: 30px;
  padding: 12px 20px;
  font-family: var(--font-body);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.footer-newsletter input::placeholder {
  color: #8b968e;
}
.footer-newsletter button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--orange);
  color: #0e1a12;
  flex-shrink: 0;
}
.footer-newsletter button:hover {
  background: var(--green);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #8b968e;
}

/* =========================================================
   BACK TO TOP
========================================================= */
.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px -8px rgba(21, 148, 66, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 0.35s var(--ease);
  z-index: 900;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--orange);
}

/* =========================================================
   RESPONSIVE FINE-TUNING
========================================================= */
@media (max-width: 991.98px) {
  .section {
    padding: 70px 0;
  }
  .about-media {
    padding: 0 0 26px 0;
  }
  .about-img-float {
    position: static;
    width: 100%;
    height: 220px;
    margin-top: 16px;
    border: none;
  }
  .about-badge {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 16px;
    max-width: none;
  }
  .donate-cta-inner {
    padding: 44px 28px;
    flex-direction: column;
    text-align: center;
  }
  .donate-actions {
    justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .hero {
    height: 100vh;
  }
  .hero-content {
    padding: 0 6px;
  }
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-form {
    padding: 26px;
  }
  .topbar-left span:nth-child(3) {
    display: none;
  }

  .topbar-right{
    display: none;
  }
}
