:root {
  --primary: #6fb42f;
  --primary-dark: #4c8f22;
  --accent: #f59b22;
  --dark: #1f2e17;
  --text: #6f7b68;
  --muted: #f4f8ef;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(23, 54, 12, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
  transition: 0.25s ease;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--white);
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}
.preloader span {
  width: 54px;
  height: 54px;
  border: 5px solid #dbeacb;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.section-pad {
  padding: 120px 0;
}
.bg-soft {
  background: var(--muted);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: var(--white);
  box-shadow: 0 4px 18px rgba(16, 41, 11, 0.08);
}
.header-top {
  background: var(--primary);
  color: var(--white);
  padding: 9px 0;
  font-size: 14px;
}
.top-contact,
.top-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.top-contact a,
.top-actions a,
.top-dropdown {
  color: var(--white);
  border: 0;
  background: transparent;
}
.top-contact i,
.top-actions i,
.top-dropdown i {
  margin-right: 7px;
  color: #e9ffd6;
}
.top-actions a:hover,
.top-contact a:hover {
  color: #16360e;
}

.main-nav {
  min-height: 86px;
  padding: 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 8px 0;
}
.logo span,
.footer-logo i {
  width: 45px;
  height: 45px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--primary);
}
.logo img,
.footer-logo img {
  display: block;
  height: auto;
  width: auto;
  object-fit: contain;
}
.logo img {
  max-height: 68px;
  max-width: clamp(58px, 8vw, 78px);
  border-radius: 50%;
}
.footer-logo img {
  max-height: 92px;
  max-width: 92px;
  border-radius: 50%;
}
.navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 700;
  padding: 32px 14px;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--primary);
}
.dropdown-menu {
  border: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  padding: 12px;
}
.dropdown-item {
  color: var(--dark);
  font-weight: 600;
  border-radius: 6px;
  padding: 9px 14px;
}
.dropdown-item:hover {
  color: var(--white);
  background: var(--primary);
}
.fade-up {
  animation: fadeUp 0.22s ease;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-actions,
.mobile-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile-tools {
  display: none;
}
.icon-btn {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #e2edd8;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
}
.icon-btn:hover {
  color: var(--white);
  background: var(--primary);
}
.navbar-toggler {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  color: var(--white);
  background: var(--primary);
}
.navbar-toggler:focus {
  box-shadow: none;
}

.theme-btn,
.theme-border-btn,
.theme-border-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 800;
  line-height: 1;
  transition: 0.28s ease;
}
.theme-btn {
  color: var(--white);
  background: var(--primary);
  border: 2px solid var(--primary);
}
.theme-btn:hover {
  color: var(--white);
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}
.theme-border-btn {
  color: var(--white);
  border: 2px solid var(--white);
}
.theme-border-btn:hover {
  color: var(--dark);
  background: var(--white);
}
.theme-border-dark {
  color: var(--dark);
  border: 2px solid #d8e7cc;
}
.theme-border-dark:hover {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

.search-popup,
.video-popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(15, 31, 9, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}
.search-popup.active,
.video-popup.active {
  opacity: 1;
  visibility: visible;
}
.close-search,
.close-video {
  position: absolute;
  top: 28px;
  right: 34px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--primary);
}
.search-popup form {
  width: min(700px, 100%);
  display: flex;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}
.search-popup input {
  flex: 1;
  min-width: 0;
  color: var(--white);
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 34px;
  font-weight: 700;
}
.search-popup input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}
.search-popup form button {
  border: 0;
  color: var(--white);
  background: transparent;
  font-size: 30px;
}
.video-frame {
  width: min(920px, 100%);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.4);
}

.hero-single {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-single::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 35, 7, 0.82), rgba(15, 35, 7, 0.46) 44%, rgba(15, 35, 7, 0.14));
  z-index: 1;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: var(--white);
  padding-top: 20px;
  animation: heroIn 0.8s ease both;
}
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-sub-title {
  color: #d8ffba;
  font-size: 20px;
  font-weight: 800;
}
.hero-content h1 {
  margin: 16px 0 20px;
  font-size: 68px;
  line-height: 1.08;
  font-weight: 900;
}
.hero-content p {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}
.full-intro-text {
  color: var(--text);
  font-size: 17px;
  line-height: 1.85;
}
.full-intro-notes {
  padding: 22px;
  background: #f4f8ef;
  border-left: 4px solid var(--primary);
  border-radius: 8px;
}
.full-intro-notes h5 {
  margin-bottom: 10px;
  color: var(--dark);
  font-weight: 800;
}
.full-intro-notes p {
  margin-bottom: 0;
  color: var(--text);
  line-height: 1.75;
}
.donation-hero {
  position: relative;
  padding: 120px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 55, 13, 0.9), rgba(18, 55, 13, 0.58)),
    url("../img/generated/landio-1.png") center/cover;
}
.donation-hero h1 {
  max-width: 760px;
  margin: 12px 0 20px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.05;
  font-weight: 900;
}
.donation-hero p {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.75;
}
.donation-impact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 680px;
  margin-top: 34px;
}
.donation-impact div,
.donation-card,
.donation-info-card {
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.donation-impact div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}
.donation-impact strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}
.donation-impact span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}
.donation-card {
  padding: 30px;
  color: var(--dark);
  background: var(--white);
}
.donation-card h2 {
  margin-bottom: 18px;
  font-weight: 900;
}
.tree-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.tree-option {
  min-height: 48px;
  color: var(--dark);
  background: #f4f8ef;
  border: 1px solid #dbe9ce;
  border-radius: 8px;
  font-weight: 800;
}
.tree-option.active,
.tree-option:hover {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}
.donation-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 16px 18px;
  background: #f4f8ef;
  border-radius: 8px;
}
.donation-total span {
  color: var(--text);
  font-weight: 800;
}
.donation-total strong {
  color: var(--primary);
  font-size: 30px;
}
.donation-note {
  margin-top: 14px;
  color: var(--text);
  font-size: 13px;
  text-align: center;
}
.donation-info-card {
  height: 100%;
  padding: 30px;
  background: var(--white);
}
.donation-info-card i {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--white);
  background: var(--primary);
  border-radius: 50%;
  font-size: 24px;
}
.donation-info-card h3 {
  color: var(--dark);
  font-weight: 900;
}
.donation-info-card p {
  margin-bottom: 0;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.carousel-control-prev,
.carousel-control-next {
  width: 58px;
  height: 58px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  opacity: 1;
}
.carousel-control-prev {
  left: 28px;
}
.carousel-control-next {
  right: 28px;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--primary);
  color: var(--white);
}

.site-heading {
  max-width: 680px;
  margin-bottom: 48px;
}
.site-title-tagline {
  color: var(--primary);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}
.site-title {
  color: var(--dark);
  margin: 10px 0 12px;
  font-size: 44px;
  line-height: 1.18;
  font-weight: 900;
}
.site-title span {
  color: var(--primary);
}
.heading-divider {
  width: 70px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
}

.feature-item,
.service-card,
.process-item,
.testimonial-card,
.blog-card {
  height: 100%;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: 0.28s ease;
}
.feature-item {
  padding: 34px 26px;
  text-align: center;
}
.feature-item:hover,
.feature-item.active,
.service-card:hover,
.blog-card:hover {
  transform: translateY(-8px);
}
.feature-icon,
.service-icon,
.process-item i {
  width: 76px;
  height: 76px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--primary);
  font-size: 32px;
}
.feature-item h4,
.service-card h3,
.process-item h4,
.choose-list h3 {
  color: var(--dark);
  font-weight: 850;
}

.about-img {
  position: relative;
  padding: 0 34px 34px 0;
}
.about-img img,
.video-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-img::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 70%;
  height: 70%;
  border-radius: var(--radius);
  background: var(--primary);
}
.experience-badge {
  position: absolute;
  left: 24px;
  bottom: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 260px;
  padding: 18px 20px;
  color: var(--white);
  border-radius: var(--radius);
  background: var(--accent);
}
.experience-badge strong {
  font-size: 46px;
  line-height: 1;
}
.experience-badge span {
  font-weight: 800;
  line-height: 1.25;
}
.lead-copy {
  color: #596653;
}
.about-list p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--dark);
  font-weight: 700;
}
.about-list i {
  color: var(--primary);
}

.service-card {
  position: relative;
  padding: 38px 28px;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(111, 180, 47, 0.12);
  transition: 0.28s ease;
}
.service-card:hover::after {
  transform: scale(1.5);
}
.service-card h3 {
  margin: 22px 0 10px;
}
.service-card a {
  color: var(--primary);
  font-weight: 800;
}

.process-row {
  counter-reset: step;
}
.process-item {
  position: relative;
  padding: 36px 24px;
  text-align: center;
}
.process-item span {
  position: absolute;
  top: 18px;
  right: 18px;
  color: #d5e6c9;
  font-size: 34px;
  font-weight: 900;
}
.process-item i {
  margin-bottom: 22px;
}

.counter-area {
  padding: 70px 0;
  color: var(--white);
  background:
    linear-gradient(rgba(35, 75, 16, 0.93), rgba(35, 75, 16, 0.93)),
    url("../img/generated/landio-1.png") center/cover fixed;
}
.counter-box {
  text-align: center;
}
.counter-box i {
  color: #ceffad;
  font-size: 42px;
  margin-bottom: 12px;
}
.counter-box strong {
  display: block;
  font-size: 46px;
  line-height: 1;
  font-weight: 900;
}
.counter-box span {
  font-weight: 800;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.portfolio-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: 0.45s ease;
}
.portfolio-card:hover img {
  transform: scale(1.08);
}
.portfolio-info {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(43, 100, 19, 0.92);
  transform: translateY(18px);
  opacity: 0;
  transition: 0.28s ease;
}
.portfolio-card:hover .portfolio-info {
  transform: translateY(0);
  opacity: 1;
}
.portfolio-info h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 850;
}
.portfolio-info span {
  color: #ddffcb;
  font-weight: 700;
}

.choose-list {
  display: grid;
  gap: 18px;
}
.choose-list > div {
  display: grid;
  grid-template-columns: 72px 1fr;
  column-gap: 18px;
  align-items: start;
}
.choose-list i {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--primary);
  font-size: 28px;
}
.choose-list p {
  grid-column: 2;
  margin-top: -8px;
}
.video-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--primary);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 16px rgba(255, 255, 255, 0.35);
}

.testimonial-card {
  padding: 32px;
  margin: 8px;
}
.quote-icon {
  color: var(--primary);
  font-size: 42px;
  margin-bottom: 10px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}
.avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--primary);
  font-weight: 900;
}
.testimonial-author h4 {
  margin: 0;
  color: var(--dark);
  font-weight: 850;
}
.stars {
  color: var(--accent);
  font-size: 14px;
}
.slider-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}
.slider-buttons button {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--primary);
}

.blog-card {
  overflow: hidden;
}
.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}
.blog-info {
  padding: 24px;
}
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}
.blog-info h3 {
  margin: 12px 0 18px;
  color: var(--dark);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 850;
}
.blog-btn {
  color: var(--primary);
  font-weight: 850;
}

.cta-area {
  padding: 0 0 120px;
}
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 44px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(100deg, var(--primary), #2f6f16);
  box-shadow: var(--shadow);
}
.cta-box span {
  color: #dcffbf;
  font-weight: 850;
  text-transform: uppercase;
}
.cta-box h2 {
  margin: 6px 0 0;
  font-weight: 900;
}
.theme-btn.light {
  color: var(--primary);
  border-color: var(--white);
  background: var(--white);
}

.footer-area {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  background: #15240f;
}
.footer-widget {
  padding: 100px 0 70px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
}
.copyright-logo {
  display: inline-flex;
  align-items: center;
  margin: 0 6px;
  vertical-align: middle;
}
.copyright-logo img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: contain;
}
.footer-area h4 {
  color: var(--white);
  font-weight: 850;
  margin-bottom: 24px;
}
.footer-list li {
  margin-bottom: 12px;
}
.footer-list a:hover {
  color: var(--primary);
  padding-left: 4px;
}
.contact-list i {
  width: 22px;
  color: var(--primary);
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}
.footer-social a:hover {
  background: var(--primary);
}
.newsletter input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 0;
  border-radius: 50px;
  margin-bottom: 12px;
}
.newsletter .theme-btn {
  width: 100%;
}
.copyright {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.copyright p {
  margin: 0;
}
.copyright a {
  color: var(--white);
  margin-left: 16px;
}
.copyright p a {
  color: var(--primary);
  margin-left: 0;
}

#scrollTop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}
#scrollTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
  }
}

@media (max-width: 1199px) {
  .hero-content h1 {
    font-size: 56px;
  }
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

@media (max-width: 991px) {
  .section-pad {
    padding: 86px 0;
  }
  .header-top {
    display: none;
  }
  .main-nav {
    min-height: 74px;
  }
  .mobile-tools {
    display: flex;
  }
  .nav-actions {
    display: none;
  }
  .navbar-collapse {
    max-height: calc(100vh - 74px);
    overflow-y: auto;
    padding: 10px 0 22px;
  }
  .navbar-nav .nav-link {
    padding: 12px 0;
  }
  .dropdown-menu {
    box-shadow: none;
    border-left: 3px solid var(--primary);
    padding: 8px 0 8px 10px;
  }
  .hero-single {
    min-height: 100vh;
    min-height: 100svh;
  }
  .hero-content h1 {
    font-size: 44px;
  }
  .site-title {
    font-size: 36px;
  }
  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .donation-hero {
    padding: 80px 0;
  }
  .donation-impact {
    grid-template-columns: 1fr;
  }
  .tree-options {
    grid-template-columns: repeat(2, 1fr);
  }
  .donation-card {
    padding: 22px;
  }
  .hero-single {
    min-height: 100vh;
    min-height: 100svh;
    background-position: center;
  }
  .hero-single::before {
    background: rgba(15, 35, 7, 0.72);
  }
  .hero-content h1 {
    font-size: 36px;
  }
  .hero-content p {
    font-size: 16px;
  }
  .theme-btn,
  .theme-border-btn,
  .theme-border-dark {
    width: 100%;
  }
  .hero-btns {
    width: 100%;
  }
  .site-title {
    font-size: 31px;
  }
  .about-img {
    padding: 0 18px 24px 0;
  }
  .experience-badge {
    left: 14px;
    bottom: 36px;
    padding: 14px 16px;
  }
  .experience-badge strong {
    font-size: 36px;
  }
  .choose-list > div {
    grid-template-columns: 58px 1fr;
  }
  .choose-list i {
    width: 58px;
    height: 58px;
    font-size: 23px;
  }
  .cta-box {
    padding: 30px 22px;
  }
  .footer-widget {
    padding: 76px 0 50px;
  }
  .copyright a {
    margin-left: 0;
    margin-right: 12px;
  }
}

@media (max-width: 480px) {
  .logo {
    padding: 6px 0;
  }
  .logo img {
    max-height: 56px;
    max-width: 56px;
  }
  .hero-content h1 {
    font-size: 32px;
  }
  .search-popup input {
    font-size: 24px;
  }
  .counter-box strong {
    font-size: 36px;
  }
}

/* About page */
.about-page {
  --about-green: #2f9336;
  --about-dark: #063728;
  --about-text: #687796;
  --about-soft: #ecf8ef;
}

.contact-page {
  --about-green: #2f9336;
  --about-dark: #063728;
  --about-text: #687796;
  --about-soft: #ecf8ef;
}

.about-page .header,
.contact-page .header {
  position: relative;
}

.about-page .main-nav,
.contact-page .main-nav {
  min-height: 76px;
}

.about-page .navbar-nav .nav-link,
.contact-page .navbar-nav .nav-link {
  padding-top: 26px;
  padding-bottom: 26px;
}

.about-breadcrumb {
  position: relative;
  min-height: 292px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(rgba(8, 62, 42, 0.78), rgba(8, 62, 42, 0.78)),
    url("../img/about/about-banner.png") center 52% / cover no-repeat;
}

.about-breadcrumb h1 {
  margin: 0 0 8px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
}

.about-breadcrumb .breadcrumb {
  margin: 0;
  color: var(--white);
  font-weight: 700;
}

.about-breadcrumb .breadcrumb-item,
.about-breadcrumb .breadcrumb-item a,
.about-breadcrumb .breadcrumb-item.active {
  color: var(--white);
}

.about-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "//";
  color: var(--white);
  padding-right: 9px;
}

.about-detail {
  padding: 49px 0 39px;
  background: var(--white);
  box-shadow: inset 0 10px 20px rgba(20, 31, 18, 0.06);
}

.about-photo-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 272px) minmax(220px, 272px);
  grid-template-rows: 88px 128px 216px;
  gap: 20px 24px;
  max-width: 568px;
  margin: 0 auto;
}

.about-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.about-photo-main {
  grid-row: 1 / 4;
  min-height: 324px;
}

.about-photo-small:first-of-type {
  grid-column: 2;
  grid-row: 1 / 3;
}

.about-photo-small:last-of-type {
  grid-column: 2;
  grid-row: 3;
}

.about-exp-card {
  position: absolute;
  left: -20px;
  bottom: 78px;
  min-width: 218px;
  height: 90px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px 14px 20px;
  border-left: 5px solid var(--about-green);
  color: var(--about-dark);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(11, 35, 16, 0.08);
}

.about-exp-card span {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  border-radius: 50%;
  background: var(--about-green);
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.about-exp-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.12;
  font-weight: 800;
}

.about-copy {
  max-width: 570px;
  padding-left: 8px;
}

.about-kicker,
.about-section-heading > span {
  display: block;
  margin-bottom: 8px;
  color: var(--about-green);
  font-size: 17px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.about-copy h2,
.about-section-heading h2 {
  margin: 0;
  color: var(--about-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 39px;
  line-height: 1.14;
  font-weight: 800;
}

.about-copy h2 span,
.about-section-heading em {
  color: var(--about-green);
  font-style: normal;
}

.about-copy > p {
  max-width: 565px;
  margin: 18px 0 27px;
  color: var(--about-text);
  font-size: 16px;
  line-height: 1.85;
}

.about-benefit {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 28px;
}

.about-benefit i {
  color: var(--about-green);
  font-size: 42px;
  line-height: 1;
}

.about-benefit h3 {
  margin: -3px 0 2px;
  color: var(--about-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
}

.about-benefit p {
  margin: 0;
  color: var(--about-text);
  line-height: 1.6;
}

.about-discover {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 176px;
  min-height: 52px;
  padding: 14px 23px;
  border-radius: 4px;
  color: var(--white);
  background: var(--about-green);
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(47, 147, 54, 0.2);
}

.about-discover:hover {
  color: var(--white);
  background: #247a2b;
  transform: translateY(-2px);
}

.about-stats {
  position: relative;
  overflow: hidden;
  padding: 51px 0 49px;
  color: var(--white);
  background: var(--about-green);
}

.about-leaf-line {
  position: absolute;
  left: -8px;
  top: 28px;
  width: 136px;
  height: 206px;
  opacity: 0.14;
  background:
    radial-gradient(ellipse at 70% 20%, transparent 39%, #fff 40% 43%, transparent 44%) 0 0 / 70px 70px,
    radial-gradient(ellipse at 30% 70%, transparent 39%, #fff 40% 43%, transparent 44%) 30px 44px / 78px 78px;
}

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

.about-stat i {
  width: 100px;
  height: 100px;
  display: inline-grid;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: var(--white);
  font-size: 39px;
}

.about-stat strong {
  display: block;
  margin-top: 20px;
  color: var(--white);
  font-size: 52px;
  line-height: 1;
  font-weight: 900;
}

.about-stat span {
  display: block;
  margin-top: 12px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.about-testimonials {
  padding: 0 0 31px;
  background: #eaf7ed;
}

.about-team {
  padding: 0 0 11px;
  background: var(--white);
}

.about-section-heading {
  max-width: 610px;
  margin: 0 auto 49px;
  padding-top: 7px;
  text-align: center;
}

.about-team .about-section-heading {
  margin-bottom: 40px;
}

.about-section-heading h2 {
  font-size: 38px;
  line-height: 1.12;
}

.about-divider {
  position: relative;
  width: 82px;
  height: 3px;
  margin: 17px auto 7px;
  background: var(--about-green);
}

.about-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--about-green);
  transform: translate(-50%, -50%);
}

.about-section-heading p {
  margin: 0 auto;
  color: var(--about-text);
  line-height: 1.7;
}

.about-testimonial-card {
  max-width: 332px;
  margin: 0 auto;
}

.testimonial-bubble {
  position: relative;
  min-height: 185px;
  padding: 37px 27px 32px;
  border-radius: 5px;
  color: var(--white);
  background: var(--about-green);
  box-shadow: 0 14px 28px rgba(20, 70, 27, 0.13);
  transition: 0.25s ease;
}

.testimonial-bubble::after {
  content: "";
  position: absolute;
  left: 42px;
  bottom: -14px;
  width: 30px;
  height: 30px;
  background: var(--about-green);
  transform: rotate(45deg);
}

.testimonial-bubble p {
  margin: 0;
  max-width: 245px;
  color: var(--white);
  font-weight: 700;
  line-height: 1.85;
}

.testimonial-bubble i {
  position: absolute;
  right: 18px;
  bottom: 7px;
  color: var(--white);
  font-size: 44px;
  opacity: 0.92;
}

.about-testimonial-card:hover .testimonial-bubble {
  transform: translateY(-6px);
}

.about-client {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 28px 0 0 20px;
}

.about-client img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border: 2px dashed var(--about-green);
  border-radius: 50%;
  padding: 5px;
  background: var(--white);
}

.about-client h3 {
  margin: 0;
  color: #1b503b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.15;
  font-weight: 800;
}

.about-client span {
  display: block;
  color: #2a6248;
  line-height: 1.3;
}

.about-client .stars {
  color: #ff9723;
  font-size: 15px;
  letter-spacing: 2px;
}

.team-card {
  position: relative;
  max-width: 246px;
  margin: 0 auto 39px;
  padding-bottom: 47px;
  transition: 0.25s ease;
}

.team-card:hover,
.team-card:focus-within {
  transform: translateY(-6px);
  filter: drop-shadow(0 18px 24px rgba(16, 60, 20, 0.16));
}

.team-photo {
  position: relative;
  height: 268px;
  overflow: hidden;
  border-radius: 6px;
  background-image: url("../img/about/team-strip.png");
  background-repeat: no-repeat;
  background-size: 400% 100%;
  box-shadow: 0 12px 24px rgba(16, 41, 11, 0.08);
}

.team-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 55, 40, 0.1), rgba(6, 55, 40, 0.76)),
    rgba(47, 147, 54, 0.18);
  opacity: 0;
  transition: opacity 0.32s ease;
  will-change: opacity;
}

.team-card:hover .team-photo::after,
.team-card:focus-within .team-photo::after {
  opacity: 1;
}

.team-one {
  background-position: 0 0;
}

.team-two {
  background-position: 33.333% 0;
}

.team-three {
  background-position: 66.666% 0;
}

.team-four {
  background-position: 100% 0;
}

.dynamic-team-photo {
  background-size: cover;
  background-position: center;
}

.team-social {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition:
    opacity 0.28s ease,
    transform 0.32s ease;
  will-change: opacity, transform;
}

.team-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--about-green);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(5, 45, 25, 0.18);
  opacity: 0;
  transform: translateY(14px) scale(0.92);
  transition:
    color 0.24s ease,
    background-color 0.24s ease,
    transform 0.24s ease,
    opacity 0.24s ease;
  will-change: opacity, transform;
}

.team-card:hover .team-social,
.team-card:focus-within .team-social {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.team-card:hover .team-social a,
.team-card:focus-within .team-social a {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.team-social a:nth-child(1) {
  transition-delay: 0.02s;
}

.team-social a:nth-child(2) {
  transition-delay: 0.07s;
}

.team-social a:nth-child(3) {
  transition-delay: 0.12s;
}

.team-social a:nth-child(4) {
  transition-delay: 0.17s;
}

.team-social a:hover,
.team-social a:focus-visible {
  color: var(--white);
  background: var(--about-green);
  transform: translateY(-3px) scale(1.1);
}

.team-social a:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.8);
  outline-offset: 3px;
}

.team-info {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  min-height: 96px;
  display: grid;
  align-content: center;
  text-align: center;
  border-radius: 7px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.93)),
    radial-gradient(circle at 30% 30%, transparent 28%, rgba(47, 147, 54, 0.25) 29% 31%, transparent 32%) 0 0 / 90px
      90px;
  box-shadow: 0 14px 30px rgba(13, 37, 19, 0.12);
}

.team-info h3 {
  margin: 0;
  color: var(--about-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.18;
  font-weight: 800;
}

.team-info span {
  color: #1f513c;
  font-size: 14px;
}

.about-chat {
  position: fixed;
  right: 29px;
  bottom: 20px;
  z-index: 1010;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #3d0be9;
  font-size: 28px;
  box-shadow: 0 10px 22px rgba(61, 11, 233, 0.26);
}

.about-chat::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: var(--about-green);
  z-index: -1;
}

.about-chat:hover {
  color: var(--white);
  transform: translateY(-3px);
}

.contact-breadcrumb {
  min-height: 292px;
}

.contact-area {
  padding: 49px 0 66px;
  background: #f8f9f7;
  box-shadow: inset 0 10px 20px rgba(20, 31, 18, 0.06);
}

.contact-form-card {
  min-height: 447px;
  padding: 35px 24px 34px;
  border-radius: 3px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(13, 37, 19, 0.05);
}

.contact-form-card h2 {
  margin: 0 0 8px;
  color: var(--about-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
}

.contact-form-card > p {
  max-width: 740px;
  margin: 0 0 26px;
  color: var(--about-text);
  font-size: 14px;
  line-height: 1.7;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid #d9dee7;
  border-radius: 4px;
  color: #314259;
  background: var(--white);
  font-size: 14px;
  outline: 0;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.contact-form textarea {
  min-height: 117px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #314259;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--about-green);
  box-shadow: 0 0 0 3px rgba(47, 147, 54, 0.12);
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  margin-top: 20px;
  padding: 12px 18px;
  border: 0;
  border-radius: 4px;
  color: var(--white);
  background: var(--about-green);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(47, 147, 54, 0.2);
  transition:
    background-color 0.24s ease,
    transform 0.24s ease;
}

.contact-submit:hover {
  background: #247a2b;
  transform: translateY(-2px);
}

.contact-info-list {
  display: grid;
  gap: 20px;
}

.contact-info-card {
  min-height: 84px;
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 17px;
  padding: 15px 18px;
  border: 1px solid var(--about-green);
  border-radius: 7px;
  background: var(--white);
  transition:
    box-shadow 0.24s ease,
    transform 0.24s ease,
    background-color 0.24s ease;
}

.contact-info-card:hover {
  background: #fbfffb;
  box-shadow: 0 14px 30px rgba(13, 72, 22, 0.1);
  transform: translateY(-3px);
}

.contact-info-card > i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 2px solid var(--about-green);
  border-radius: 50%;
  color: var(--white);
  background: var(--about-green);
  box-shadow: inset 0 0 0 7px var(--white);
  font-size: 21px;
}

.contact-info-card h3 {
  margin: 0 0 2px;
  color: var(--about-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
}

.contact-info-card p {
  margin: 0;
  color: var(--about-text);
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 1199px) {
  .about-photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-copy h2 {
    font-size: 35px;
  }
}

@media (max-width: 991px) {
  .about-page .header,
  .contact-page .header {
    position: sticky;
  }

  .about-page .navbar-nav .nav-link,
  .contact-page .navbar-nav .nav-link {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .about-detail {
    padding: 72px 0 64px;
  }

  .about-copy {
    max-width: 100%;
    padding-left: 0;
  }

  .about-copy h2 {
    font-size: 34px;
  }

  .about-stats {
    padding: 58px 0;
  }

  .about-testimonials,
  .about-team {
    padding: 72px 0 40px;
  }

  .contact-area {
    padding: 64px 0;
  }
}

@media (max-width: 767px) {
  .about-breadcrumb {
    min-height: 230px;
  }

  .about-breadcrumb h1 {
    font-size: 34px;
  }

  .about-photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
  }

  .about-photo-main,
  .about-photo-small:first-of-type,
  .about-photo-small:last-of-type {
    grid-column: auto;
    grid-row: auto;
  }

  .about-photo-main,
  .about-photo-small {
    height: 255px;
  }

  .about-exp-card {
    left: 14px;
    bottom: 18px;
    min-width: 202px;
  }

  .about-copy h2,
  .about-section-heading h2 {
    font-size: 31px;
  }

  .about-benefit {
    grid-template-columns: 44px 1fr;
  }

  .about-benefit i {
    font-size: 36px;
  }

  .about-stat i {
    width: 82px;
    height: 82px;
    font-size: 32px;
  }

  .about-stat strong {
    font-size: 40px;
  }

  .about-stat span {
    font-size: 17px;
  }

  .about-testimonial-card,
  .team-card {
    max-width: 100%;
  }

  .team-photo {
    height: 320px;
  }

  .about-chat {
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    font-size: 23px;
  }

  .contact-form-card {
    padding: 30px 20px;
  }

  .contact-info-card {
    grid-template-columns: 58px 1fr;
    padding: 14px;
  }
}

@media (hover: none) {
  .team-photo::after {
    opacity: 1;
    background: linear-gradient(180deg, transparent 45%, rgba(6, 55, 40, 0.72));
  }

  .team-social {
    top: auto;
    bottom: 74px;
    height: auto;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .team-social a {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .team-card,
  .team-photo::after,
  .team-social,
  .team-social a {
    transition: none;
  }
}

@media (max-width: 480px) {
  .about-detail {
    padding: 52px 0 46px;
  }

  .about-copy h2,
  .about-section-heading h2 {
    font-size: 28px;
  }

  .about-kicker,
  .about-section-heading > span {
    letter-spacing: 2px;
  }

  .testimonial-bubble {
    padding: 28px 22px 30px;
  }

  .testimonial-bubble p {
    max-width: none;
  }

  .about-client {
    margin-left: 6px;
  }
}

/* Mission page */
.mission-page {
  background: #ffffff;
  color: #6d7280;
}

.mission-page .main-nav {
  min-height: 76px;
}

.mission-page .navbar-nav .nav-link {
  padding-top: 26px;
  padding-bottom: 26px;
}

.mission-banner {
  position: relative;
  min-height: 292px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #ffffff;
  background:
    linear-gradient(rgba(5, 70, 45, 0.78), rgba(5, 70, 45, 0.78)),
    url("../img/about/about-banner.png") center 52% / cover no-repeat;
}

.mission-banner h1 {
  margin: 0 0 8px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
}

.mission-banner .breadcrumb {
  margin: 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
}

.mission-banner .breadcrumb-item,
.mission-banner .breadcrumb-item a,
.mission-banner .breadcrumb-item.active {
  color: #ffffff;
}

.mission-banner .breadcrumb-item + .breadcrumb-item::before {
  content: "//";
  color: #ffffff;
  padding-right: 9px;
}

.mission-causes {
  padding: 8px 0;
  background: linear-gradient(#f4f8ff 0 76%, #ffffff 76% 100%);
}

.mission-section-heading {
  max-width: 640px;
  margin: 0 auto 58px;
  text-align: center;
}

.mission-section-heading h2 {
  margin: 0;
  color: #151923;
  font-size: 34px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0;
}

.mission-section-heading span {
  display: inline-block;
  width: 82px;
  height: 4px;
  margin-top: 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, #35d596 0 64%, transparent 64% 74%, #35d596 74% 100%);
}

.mission-card-row {
  align-items: stretch;
}

.mission-cause-card {
  height: 100%;
  min-height: 323px;
  padding: 61px 28px 40px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #f3f5f8;
  box-shadow: 0 12px 28px rgba(24, 31, 45, 0.035);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mission-cause-card:hover {
  transform: translateY(-7px);
  border-color: rgba(52, 211, 153, 0.32);
  box-shadow: 0 22px 40px rgba(24, 31, 45, 0.1);
}

.mission-cause-card i {
  display: block;
  margin-bottom: 31px;
  font-size: 48px;
  line-height: 1;
}

.mission-icon-red {
  color: #ff5757;
}

.mission-icon-green {
  color: #34d399;
}

.mission-icon-orange {
  color: #ffa72b;
}

.mission-icon-blue {
  color: #566ed8;
}

.mission-cause-card h3 {
  margin: 0 0 15px;
  color: #101621;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 800;
}

.mission-cause-card p {
  margin: 0 0 7px;
  color: #6e7583;
  font-size: 14px;
  line-height: 1.5;
}

.mission-story {
  position: relative;
  padding: 48px 0 62px;
  overflow: hidden;
}

.vision-story {
  padding-top: 28px;
}

.mission-image-stack {
  position: relative;
  min-height: 426px;
}

.mission-image-main {
  width: 69%;
  height: 337px;
  object-fit: cover;
  object-position: center;
}

.mission-video-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 69%;
  height: 244px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(22, 31, 46, 0.12);
}

.vision-image-stack .mission-image-main {
  display: block;
  margin-left: auto;
}

.vision-image-stack .mission-video-card {
  right: auto;
  left: 0;
}

.mission-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  color: #36c98f;
  background: #ffffff;
  border: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 26px rgba(20, 31, 44, 0.16);
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.mission-play:hover {
  color: #ffffff;
  background: #34d399;
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 16px 34px rgba(52, 211, 153, 0.34);
}

.mission-play i {
  margin-left: 4px;
  font-size: 26px;
}

.mission-copy {
  position: relative;
  z-index: 0;
  max-width: 604px;
  padding: 22px 0 0 8px;
}

.vision-copy {
  padding-left: 0;
  padding-right: 8px;
}

.mission-copy > :not(.mission-watermark) {
  position: relative;
  z-index: 1;
}

.mission-kicker {
  display: inline-block;
  margin-bottom: 17px;
  color: #35d596;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.mission-watermark {
  position: absolute;
  top: -31px;
  right: 0;
  z-index: 0;
  color: rgba(52, 211, 153, 0.08);
  font-size: clamp(72px, 11vw, 128px);
  line-height: 0.8;
  font-weight: 900;
  letter-spacing: 0;
  pointer-events: none;
}

.vision-copy .mission-watermark {
  right: auto;
  left: 0;
}

.mission-copy h2 {
  margin: 0 0 45px;
  color: #282b31;
  font-size: 34px;
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: 0;
}

.mission-copy p {
  max-width: 640px;
  margin: 0 0 16px;
  color: #777d86;
  font-size: 13px;
  line-height: 2;
}

.mission-copy h3 {
  margin: 15px 0 17px;
  color: #2a2d33;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
}

.mission-copy ul {
  display: grid;
  gap: 15px;
  margin-bottom: 27px;
}

.mission-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #616875;
  font-size: 13px;
}

.mission-copy li i {
  color: #35d596;
  font-size: 12px;
}

.mission-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 146px;
  min-height: 46px;
  padding: 12px 28px;
  color: #30343b;
  font-size: 13px;
  font-weight: 800;
  border: 1px solid #35d596;
  border-radius: 999px;
  background: transparent;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.mission-outline-btn:hover {
  color: #ffffff;
  background: #35d596;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(53, 213, 150, 0.26);
}

.mission-stats {
  padding: 0 0 72px;
  background: #ffffff;
}

.mission-stats-inner {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(rgba(52, 211, 153, 0.82), rgba(52, 211, 153, 0.82)),
    url("../img/about/team-strip.png") center / cover no-repeat;
}

.mission-stat-item {
  min-height: 156px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  border-right: 1px dashed rgba(255, 255, 255, 0.55);
}

.mission-stats .col-6:nth-child(4n) .mission-stat-item {
  border-right: 0;
}

.mission-stat-item strong {
  display: block;
  margin-bottom: 7px;
  color: #ffffff;
  font-size: 45px;
  line-height: 1;
  font-weight: 900;
}

.mission-stat-item span {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
}

@media (max-width: 991px) {
  .mission-page .navbar-nav .nav-link {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .mission-causes {
    padding-top: 52px;
  }

  .mission-story {
    padding-top: 66px;
  }

  .mission-copy {
    max-width: 100%;
    padding-left: 0;
  }

  .mission-watermark {
    left: 0;
    right: auto;
  }

  .mission-stats .col-6:nth-child(2n) .mission-stat-item {
    border-right: 0;
  }
}

@media (max-width: 767px) {
  .mission-banner {
    min-height: 230px;
  }

  .mission-banner h1 {
    font-size: 34px;
  }

  .mission-section-heading h2 {
    font-size: 28px;
  }

  .mission-card-row {
    --bs-gutter-y: 20px;
  }

  .mission-cause-card {
    min-height: 270px;
    padding: 44px 22px 34px;
  }

  .mission-image-stack {
    min-height: 0;
    display: grid;
    gap: 16px;
  }

  .mission-image-main,
  .mission-video-card {
    position: relative;
    width: 100%;
    height: 280px;
  }

  .vision-image-stack .mission-image-main {
    margin-left: 0;
  }

  .vision-image-stack .mission-video-card {
    left: auto;
  }

  .mission-copy h2 {
    margin-bottom: 26px;
    font-size: 30px;
  }

  .mission-stat-item {
    min-height: 132px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.48);
  }

  .mission-stats .col-6:nth-last-child(-n + 2) .mission-stat-item {
    border-bottom: 0;
  }

  .mission-stat-item strong {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .mission-causes {
    padding-top: 44px;
  }

  .mission-section-heading {
    margin-bottom: 36px;
  }

  .mission-section-heading h2,
  .mission-copy h2 {
    font-size: 27px;
  }

  .mission-copy p {
    font-size: 12px;
  }

  .mission-stat-item span {
    font-size: 13px;
  }
}

/* Volunteer reference page */
.volunteer-reference-page {
  --volunteer-green: #06462d;
  --volunteer-green-2: #0f6f4a;
  --volunteer-mint: #34d399;
  --volunteer-gold: #f7b65c;
  --volunteer-ink: #10253a;
  --volunteer-muted: #657586;
  background: #f4faf7;
}

.volunteer-reference-page .main-nav {
  min-height: 76px;
}

.volunteer-reference-page .navbar-nav .nav-link {
  padding-top: 26px;
  padding-bottom: 26px;
}

.volunteer-banner {
  position: relative;
  min-height: 292px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #ffffff;
  background:
    linear-gradient(rgba(5, 70, 45, 0.78), rgba(5, 70, 45, 0.78)),
    url("../img/about/about-banner.png") center 52% / cover no-repeat;
}

.volunteer-banner h1 {
  margin: 0 0 8px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
}

.volunteer-banner .breadcrumb {
  margin: 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
}

.volunteer-banner .breadcrumb-item,
.volunteer-banner .breadcrumb-item a,
.volunteer-banner .breadcrumb-item.active {
  color: #ffffff;
}

.volunteer-banner .breadcrumb-item + .breadcrumb-item::before {
  content: "//";
  color: #ffffff;
  padding-right: 9px;
}

.volunteer-join-section {
  padding: 76px 0 88px;
  background:
    radial-gradient(circle at 8% 16%, rgba(52, 211, 153, 0.14), transparent 28%),
    linear-gradient(180deg, #f4faf7 0%, #ffffff 52%, #f6fbf8 100%);
}

.volunteer-join-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
  gap: 32px;
  max-width: 1136px;
  margin: 0 auto;
  align-items: stretch;
}

.volunteer-info-panel {
  padding: 38px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(6, 70, 45, 0.08);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(6, 70, 45, 0.12);
}

.volunteer-title-block,
.volunteer-form-heading {
  text-align: center;
}

.volunteer-title-block h2,
.volunteer-form-heading h2 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.2;
  font-size: 24px;
  font-weight: 900;
}

.volunteer-title-block h2 {
  color: var(--volunteer-ink);
}

.volunteer-form-heading h2 {
  color: #ffffff;
}

.volunteer-title-block p,
.volunteer-form-heading p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.4;
}

.volunteer-title-block p {
  color: var(--volunteer-muted);
}

.volunteer-form-heading p {
  color: #ffffff;
}

.volunteer-title-block span,
.volunteer-form-heading span {
  display: inline-block;
  width: 64px;
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
}

.volunteer-title-block span {
  background: linear-gradient(90deg, var(--volunteer-green), var(--volunteer-mint));
}

.volunteer-form-heading span {
  background: rgba(255, 255, 255, 0.92);
}

.volunteer-image-card {
  position: relative;
  overflow: hidden;
  min-height: 292px;
  margin: 30px 0 25px;
  border-radius: 24px;
  background: var(--volunteer-green);
  box-shadow: 0 20px 48px rgba(6, 70, 45, 0.2);
}

.volunteer-feature-img {
  width: 100%;
  height: 100%;
  min-height: 292px;
  object-fit: cover;
  object-position: center 36%;
  transform: scale(1.02);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.volunteer-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 70, 45, 0.02) 20%, rgba(6, 70, 45, 0.84) 100%),
    linear-gradient(90deg, rgba(6, 70, 45, 0.46), transparent 58%);
}

.volunteer-image-card:hover .volunteer-feature-img {
  filter: saturate(1.08);
  transform: scale(1.07);
}

.volunteer-image-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  color: #ffffff;
}

.volunteer-image-overlay strong {
  display: block;
  font-size: 25px;
  line-height: 1.1;
  font-weight: 900;
}

.volunteer-image-overlay span {
  display: block;
  max-width: 360px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.45;
}

.volunteer-copy {
  color: #425568;
  font-size: 14px;
  line-height: 1.85;
}

.volunteer-copy p {
  margin: 0 0 16px;
}

.volunteer-contact-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}

.volunteer-contact-list a {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
  min-height: 82px;
  padding: 16px;
  color: var(--volunteer-ink);
  background: #f7fbf8;
  border: 1px solid rgba(6, 70, 45, 0.08);
  border-radius: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.volunteer-contact-list i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 16px;
  background: linear-gradient(135deg, var(--volunteer-green), var(--volunteer-mint));
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(6, 70, 45, 0.18);
}

.volunteer-contact-list span {
  grid-column: 2;
  color: var(--volunteer-green-2);
  font-size: 11px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
}

.volunteer-contact-list strong {
  grid-column: 2;
  min-width: 0;
  margin-top: 5px;
  color: var(--volunteer-ink);
  font-size: clamp(13px, 1.25vw, 15px);
  line-height: 1.1;
  font-weight: 900;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.volunteer-contact-list a[href^="tel:"] strong {
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

.volunteer-contact-list a:hover {
  border-color: rgba(52, 211, 153, 0.36);
  box-shadow: 0 16px 34px rgba(6, 70, 45, 0.11);
  transform: translateY(-4px);
}

.volunteer-contact-list a:hover strong {
  color: var(--volunteer-green-2);
}

.volunteer-form-panel {
  position: relative;
  overflow: hidden;
  padding: 42px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(6, 70, 45, 0.96), rgba(15, 111, 74, 0.92)),
    url("../img/about/about-banner.png") center / cover no-repeat;
  border-radius: 28px;
  box-shadow: 0 26px 80px rgba(6, 70, 45, 0.28);
}

.volunteer-form-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(52, 211, 153, 0.28), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%);
  pointer-events: none;
}

.volunteer-form-panel > * {
  position: relative;
  z-index: 1;
}

.volunteer-reference-form {
  margin-top: 28px;
}

.volunteer-alert {
  margin: 16px 0 0;
  border: 0;
  border-radius: 14px;
  font-size: 12px;
}

.volunteer-reference-form .form-field {
  margin-bottom: 18px;
}

.volunteer-reference-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.volunteer-reference-form label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
}

.volunteer-reference-form .input-wrap {
  position: relative;
}

.volunteer-reference-form .input-wrap > i {
  position: absolute;
  left: 16px;
  top: 50%;
  z-index: 1;
  color: var(--volunteer-green-2);
  font-size: 14px;
  transform: translateY(-50%);
  pointer-events: none;
}

.volunteer-reference-form input,
.volunteer-reference-form select,
.volunteer-reference-form textarea {
  width: 100%;
  min-height: 48px;
  display: block;
  padding: 0 16px 0 44px;
  color: #172838;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 14px;
  outline: 0;
  box-shadow: 0 10px 26px rgba(3, 33, 22, 0.08);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.volunteer-reference-form input,
.volunteer-reference-form select {
  height: 48px;
  line-height: 48px;
}

.volunteer-reference-form textarea {
  min-height: 118px;
  padding-top: 14px;
  line-height: 1.5;
  resize: vertical;
}

.volunteer-reference-form input[type="file"] {
  padding-top: 12px;
  line-height: 1.2;
}

.volunteer-reference-form .textarea-wrap > i {
  top: 24px;
}

.volunteer-reference-form select {
  appearance: none;
  color: #526171;
  background-image:
    linear-gradient(45deg, transparent 50%, #0f6f4a 50%),
    linear-gradient(135deg, #0f6f4a 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 20px,
    calc(100% - 13px) 20px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.volunteer-reference-form input:focus,
.volunteer-reference-form select:focus,
.volunteer-reference-form textarea:focus {
  background: #ffffff;
  border-color: rgba(52, 211, 153, 0.72);
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.2), 0 16px 34px rgba(3, 33, 22, 0.14);
  transform: translateY(-1px);
}

.volunteer-reference-form input::placeholder,
.volunteer-reference-form textarea::placeholder {
  color: #8a98a6;
}

.volunteer-reference-form .form-submit {
  margin-top: 26px;
  padding-top: 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.volunteer-reference-form button {
  min-width: 100%;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  color: var(--volunteer-green);
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff, #eafff6);
  border: 0;
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(3, 33, 22, 0.18);
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.volunteer-reference-form button:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--volunteer-gold), #f49d34);
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(3, 33, 22, 0.24);
}

@media (max-width: 991px) {
  .volunteer-reference-page .navbar-nav .nav-link {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .volunteer-join-layout {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .volunteer-info-panel {
    padding: 34px;
  }

  .volunteer-form-panel {
    padding: 38px;
  }
}

@media (max-width: 767px) {
  .volunteer-banner {
    min-height: 230px;
  }

  .volunteer-banner h1 {
    font-size: 34px;
  }

  .volunteer-info-panel {
    padding: 26px;
  }

  .volunteer-form-panel {
    padding: 30px 22px 32px;
  }

  .volunteer-reference-form .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .volunteer-reference-form input,
  .volunteer-reference-form select,
  .volunteer-reference-form textarea {
    height: 46px;
    min-height: 46px;
    font-size: 13px;
    line-height: 46px;
  }

  .volunteer-reference-form textarea {
    height: auto;
    min-height: 112px;
    line-height: 1.5;
  }

  .volunteer-reference-form label {
    font-size: 12px;
  }

  .volunteer-copy {
    font-size: 13px;
  }

  .volunteer-contact-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .volunteer-image-card,
  .volunteer-feature-img {
    min-height: 230px;
  }

  .volunteer-title-block h2,
  .volunteer-form-heading h2 {
    font-size: 22px;
  }

  .volunteer-contact-list strong {
    font-size: 15px;
  }
}

/* Foundation inner pages: activity, gallery, choose us */
.foundation-page {
  --foundation-green: #06462d;
  --foundation-green-soft: #0f6f4a;
  --foundation-mint: #34d399;
  --foundation-gold: #f7b65c;
  --foundation-ink: #10253a;
  --foundation-muted: #667789;
  background: #f6fbf8;
}

.foundation-page .main-nav {
  min-height: 76px;
}

.foundation-page .navbar-nav .nav-link {
  padding-top: 26px;
  padding-bottom: 26px;
}

.foundation-banner {
  min-height: 292px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 20%, rgba(52, 211, 153, 0.18), transparent 30%),
    linear-gradient(rgba(5, 70, 45, 0.8), rgba(5, 70, 45, 0.82)),
    url("../img/about/about-banner.png") center 52% / cover no-repeat;
}

.foundation-banner span {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.foundation-banner h1 {
  margin: 0 0 9px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 43px;
  line-height: 1.12;
  font-weight: 900;
}

.foundation-banner .breadcrumb {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
}

.foundation-banner .breadcrumb-item,
.foundation-banner .breadcrumb-item a,
.foundation-banner .breadcrumb-item.active {
  color: #ffffff;
}

.foundation-banner .breadcrumb-item + .breadcrumb-item::before {
  content: "//";
  color: rgba(255, 255, 255, 0.86);
  padding-right: 9px;
}

.foundation-section-title {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.foundation-section-title > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--foundation-green-soft);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.foundation-section-title > span::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--foundation-mint);
}

.foundation-section-title h2 {
  margin: 0;
  color: var(--foundation-ink);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.16;
  font-weight: 900;
}

.foundation-section-title p {
  margin: 16px 0 0;
  color: var(--foundation-muted);
  font-size: 16px;
  line-height: 1.8;
}

.activity-hero-block,
.chooseus-intro,
.gallery-section {
  padding: 86px 0;
  background:
    radial-gradient(circle at top left, rgba(52, 211, 153, 0.11), transparent 26%),
    #f6fbf8;
}

.activity-focus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}

.activity-focus-grid article,
.chooseus-feature-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid rgba(6, 70, 45, 0.08);
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(6, 70, 45, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.activity-focus-grid article:hover,
.chooseus-feature-list article:hover {
  transform: translateY(-5px);
  border-color: rgba(52, 211, 153, 0.35);
  box-shadow: 0 24px 46px rgba(6, 70, 45, 0.13);
}

.activity-focus-grid i,
.chooseus-feature-list i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 22px;
  background: linear-gradient(135deg, var(--foundation-green), var(--foundation-mint));
  border-radius: 16px;
}

.activity-focus-grid h3,
.chooseus-feature-list h3 {
  margin: 0 0 6px;
  color: var(--foundation-ink);
  font-size: 18px;
  font-weight: 900;
}

.activity-focus-grid p,
.chooseus-feature-list p {
  margin: 0;
  color: var(--foundation-muted);
  font-size: 14px;
  line-height: 1.6;
}

.activity-hero-image,
.chooseus-image {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(6, 70, 45, 0.2);
}

.activity-hero-image img,
.chooseus-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.activity-hero-image:hover img,
.chooseus-image:hover img {
  transform: scale(1.06);
}

.activity-hero-image::after,
.chooseus-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(6, 70, 45, 0.86));
}

.activity-hero-image div,
.chooseus-image div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 1;
  color: #ffffff;
}

.activity-hero-image strong,
.chooseus-image strong {
  display: block;
  color: #ffffff;
  font-size: 46px;
  line-height: 1;
  font-weight: 900;
}

.activity-hero-image span,
.chooseus-image div strong {
  color: #ffffff;
}

.activity-card-section {
  padding: 86px 0 96px;
  background: #ffffff;
}

.activity-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.activity-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(6, 70, 45, 0.08);
  border-radius: 26px;
  box-shadow: 0 20px 50px rgba(6, 70, 45, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(6, 70, 45, 0.16);
}

.activity-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.activity-card-body {
  position: relative;
  padding: 34px 26px 28px;
}

.activity-icon {
  position: absolute;
  top: -31px;
  left: 26px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 25px;
  background: linear-gradient(135deg, var(--foundation-green), var(--foundation-mint));
  border: 5px solid #ffffff;
  border-radius: 20px;
}

.activity-card h3 {
  margin: 8px 0 12px;
  color: var(--foundation-ink);
  font-size: 22px;
  font-weight: 900;
}

.activity-card p {
  color: var(--foundation-muted);
  line-height: 1.75;
}

.activity-card a,
.chooseus-cta-box a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--foundation-green-soft);
  font-weight: 900;
}

.activity-card a:hover,
.chooseus-cta-box a:hover {
  color: var(--foundation-gold);
}

.gallery-section {
  background: #ffffff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin: 0;
  border-radius: 18px;
  background: var(--foundation-green);
  box-shadow: 0 16px 36px rgba(6, 70, 45, 0.1);
}

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

.gallery-item figcaption {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 16px;
  text-align: center;
  color: #ffffff;
  background: rgba(6, 70, 45, 0.68);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-item figcaption i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--foundation-green);
  background: #ffffff;
  border-radius: 50%;
}

.gallery-item figcaption span {
  font-weight: 900;
}

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

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

.chooseus-feature-list {
  display: grid;
  gap: 16px;
}

.chooseus-image div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.chooseus-image i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--foundation-green);
  background: #ffffff;
  border-radius: 50%;
}

.chooseus-image div strong {
  max-width: 330px;
  font-size: 28px;
  line-height: 1.18;
}

.chooseus-stats {
  padding: 0 0 86px;
  background: #f6fbf8;
}

.chooseus-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background:
    linear-gradient(rgba(52, 211, 153, 0.86), rgba(15, 111, 74, 0.9)),
    url("../img/about/team-strip.png") center / cover no-repeat;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(6, 70, 45, 0.2);
}

.chooseus-stat-grid article {
  min-height: 170px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.chooseus-stat-grid article:last-child {
  border-right: 0;
}

.chooseus-stat-grid strong {
  color: #ffffff;
  font-size: 44px;
  line-height: 1;
  font-weight: 900;
}

.chooseus-stat-grid span {
  margin-top: 8px;
  font-weight: 800;
}

.chooseus-cta {
  padding: 0 0 96px;
  background: #f6fbf8;
}

.chooseus-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--foundation-green), var(--foundation-green-soft));
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(6, 70, 45, 0.22);
}

.chooseus-cta-box span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
  text-transform: uppercase;
}

.chooseus-cta-box h2 {
  max-width: 710px;
  margin: 8px 0 0;
  color: #ffffff;
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 900;
}

.chooseus-cta-box a {
  flex: 0 0 auto;
  min-height: 52px;
  padding: 0 24px;
  color: var(--foundation-green);
  background: #ffffff;
  border-radius: 999px;
}

@media (max-width: 991px) {
  .foundation-page .navbar-nav .nav-link {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .activity-card-grid,
  .chooseus-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .activity-hero-image img,
  .chooseus-image img {
    height: 420px;
  }
}

@media (max-width: 767px) {
  .foundation-banner {
    min-height: 230px;
  }

  .foundation-banner h1 {
    font-size: 34px;
  }

  .activity-hero-block,
  .chooseus-intro,
  .gallery-section,
  .activity-card-section {
    padding: 62px 0;
  }

  .activity-focus-grid,
  .activity-card-grid,
  .chooseus-stat-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .chooseus-cta-box {
    display: grid;
    padding: 26px;
  }
}

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

  .activity-hero-image img,
  .chooseus-image img {
    height: 320px;
  }

  .activity-focus-grid article,
  .chooseus-feature-list article {
    grid-template-columns: 1fr;
  }
}
