* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #1e2f2c;
  line-height: 1.5;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #eaf3e4;
}
::-webkit-scrollbar-thumb {
  background: #c1121f;
  border-radius: 10px;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- HEADER PREMIUM WITH LARGER LOGO ---------- */
.main-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 12px 32px;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;
}
.logo-area:hover {
  transform: scale(1.02);
}
/* BIGGER & BOLDER LOGO IMAGE - FULLY VISIBLE */
.logo-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  border: 3px solid white;
  background: white;
  display: block;
}
.logo-img:hover {
  transform: rotate(6deg) scale(1.08);
  box-shadow: 0 12px 24px rgba(193,18,31,0.3);
}
.logo-text h1 {
  font-size: 1.9rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0a6e3a, #c1121f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.3px;
}
.logo-text span {
  font-size: 0.7rem;
  font-weight: 600;
  color: #4e6e4a;
  letter-spacing: 1.5px;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
nav ul li {
  position: relative;
}
nav ul li a {
  text-decoration: none;
  font-weight: 600;
  color: #1c3e2b;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  position: relative;
}
nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0a6e3a, #c1121f);
  transition: width 0.3s ease;
}
nav ul li a:hover::after {
  width: 100%;
}
nav ul li a i {
  font-size: 0.85rem;
  color: #4d784e;
}
nav ul li a:hover {
  color: #c1121f;
}
.dropdown-content {
  position: absolute;
  top: 38px;
  left: -20px;
  background: white;
  min-width: 280px;
  max-height: 500px;
  overflow-y: auto;
  box-shadow: 0 20px 35px rgba(0,0,0,0.1);
  border-radius: 20px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 100;
  border: 1px solid #eef2e6;
}
.dropdown-content a {
  display: block;
  padding: 10px 24px;
  color: #2a5238;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.85rem;
  transition: 0.2s;
}
.dropdown-content a:hover {
  background: linear-gradient(90deg, #f9faf5, #eef5ea);
  color: #c1121f;
  padding-left: 30px;
}
.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
}
.donate-nav-btn {
  background: linear-gradient(135deg, #c1121f, #a00e1a);
  padding: 10px 22px;
  border-radius: 40px;
  color: white !important;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(193,18,31,0.3);
}
.donate-nav-btn:hover {
  background: linear-gradient(135deg, #0a7f3f, #086a35);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(10,127,63,0.4);
}
.donate-nav-btn::after {
  display: none;
}

/* HORIZONTAL SCROLLING BANNER */
.scrolling-banner {
  width: 100%;
  background: linear-gradient(90deg, #f8faf5, #eef5ea);
  border-bottom: 1px solid #e2ecdb;
  border-top: 1px solid #e2ecdb;
  overflow: hidden;
  padding: 18px 0;
  position: relative;
}
.banner-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: scrollHorizontal 40s linear infinite;
}
.banner-track:hover {
  animation-play-state: paused;
}
.banner-track img {
  width: 220px;
  height: 140px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 18px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 2px solid white;
}
.banner-track img:hover {
  transform: scale(1.06) rotate(1deg);
  box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}
@keyframes scrollHorizontal {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Hero section - Parallax Effect */
.hero-home {
  min-height: 90vh;
  background: linear-gradient(102deg, rgba(8,65,32,0.85) 0%, rgba(193,18,31,0.78) 100%), url('home.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.hero-left {
  flex: 1;
  color: white;
  animation: fadeInUp 1s ease;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-left h2 {
  font-size: 3.7rem;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.hero-left p {
  font-size: 1.2rem;
  margin: 24px 0 32px;
  max-width: 550px;
}
.btn-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-primary {
  background: white;
  color: #c1121f;
  padding: 14px 36px;
  border-radius: 60px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}
.btn-primary:hover::before {
  left: 100%;
}
.btn-primary:hover {
  background: #fff2f0;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.btn-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 12px 34px;
  border-radius: 60px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-secondary:hover {
  background: white;
  color: #0a7f3f;
  transform: translateY(-3px);
  border-color: white;
}
.hero-right { flex: 0.7; min-width: 260px; }

/* Projects section - 4 BOXES PER LINE */
.section-padding {
  padding: 80px 0;
}
.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(125deg, #0a5c32, #c1121f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
  width: 100%;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #0a6e3a, #c1121f);
  border-radius: 3px;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.project-card {
  background: white;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 30px -15px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid #eef0e6;
  display: flex;
  flex-direction: column;
  position: relative;
}
.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10,127,63,0.05), rgba(193,18,31,0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.project-card:hover::before {
  opacity: 1;
}
.project-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 40px -20px rgba(10,127,63,0.25);
}
.project-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.project-card:hover .project-img {
  transform: scale(1.05);
}
.project-content {
  padding: 20px 18px;
  flex: 1;
}
.project-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.project-content p {
  font-size: 0.85rem;
  color: #4a6741;
}
.view-more-btn {
  background: none;
  border: 2px solid #0a7f3f;
  color: #0a7f3f;
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: 600;
  margin-top: 14px;
  cursor: pointer;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  text-decoration: none;
}
.view-more-btn:hover {
  background: #0a7f3f;
  color: white;
  gap: 12px;
}

/* Mission Section */
.mission-premium {
  background: linear-gradient(120deg, #fef9f0 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.mission-grid-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
}
.mission-left {
  flex: 1.2;
}
.mission-badge {
  display: inline-block;
  background: #c1121f10;
  padding: 6px 18px;
  border-radius: 40px;
  color: #c1121f;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid #c1121f30;
}
.mission-left h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #1a3b2c;
  margin-bottom: 24px;
  line-height: 1.2;
}
.mission-highlight {
  font-size: 1.2rem;
  color: #2d5a3b;
  border-left: 4px solid #c1121f;
  padding-left: 24px;
  margin: 28px 0;
  font-weight: 500;
}
.mission-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.stat-bubble {
  background: white;
  border-radius: 80px;
  padding: 12px 28px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.03);
  border: 1px solid #e0ecd9;
  transition: 0.3s ease;
}
.stat-bubble:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}
.mission-right {
  flex: 1;
  position: relative;
}
.mission-img-stack {
  background: linear-gradient(145deg, #0a7f3f, #c1121f);
  border-radius: 40px;
  padding: 12px;
  transition: 0.3s ease;
}
.mission-img-stack:hover {
  transform: scale(1.02);
}
.mission-img-stack img {
  width: 100%;
  border-radius: 32px;
  display: block;
}

/* Team Section */
.team-section {
  background: #fafcf8;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 42px;
  margin-top: 52px;
}
.team-card {
  background: white;
  border-radius: 48px;
  text-align: center;
  padding: 32px 20px 28px;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 20px 30px -12px rgba(0,0,0,0.08);
  border: 1px solid #eef2e4;
  position: relative;
  overflow: hidden;
}
.team-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0a7f3f, #c1121f);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.team-card:hover::after {
  transform: scaleX(1);
}
.team-card:hover {
  transform: translateY(-16px);
  box-shadow: 0 35px 40px -18px rgba(10,127,63,0.2);
}
.team-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid #0a7f3f;
  padding: 4px;
  background: white;
  transition: 0.3s ease;
}
.team-card:hover .team-img {
  border-color: #c1121f;
  transform: scale(1.05);
}
.team-card h3 {
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.team-role {
  color: #c1121f;
  font-weight: 600;
  margin-bottom: 14px;
}
.team-bio {
  color: #4a6741;
  font-size: 0.9rem;
}
.social-icons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 16px;
}
.social-icons a {
  color: #6f8f6a;
  transition: 0.2s;
  font-size: 1.2rem;
}
.social-icons a:hover {
  color: #c1121f;
  transform: translateY(-3px);
}

/* Core Values */
.core-values-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fefcf8 0%, #ffffff 100%);
}
.values-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.value-card-enhanced {
  background: linear-gradient(145deg, #ffffff, #f8faf5);
  border-radius: 40px;
  padding: 32px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid #eef2e6;
  box-shadow: 0 15px 35px -12px rgba(0,0,0,0.05);
  cursor: pointer;
}
.value-card-enhanced:hover {
  transform: translateY(-8px);
  background: white;
  box-shadow: 0 25px 40px -12px rgba(10,127,63,0.15);
}
.value-icon-enhanced {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0a6e3a, #c1121f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.value-icon-enhanced i {
  color: white;
}
.value-card-enhanced:hover .value-icon-enhanced {
  transform: scale(1.1) rotate(5deg);
}
.value-card-enhanced h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a3b2c;
}
.value-quote {
  font-size: 0.9rem;
  color: #c1121f;
  font-style: italic;
  line-height: 1.5;
  margin-top: 8px;
}
.value-quote i {
  font-size: 0.8rem;
  margin-right: 5px;
  opacity: 0.7;
}

/* Counter Section */
.counter-section {
  background: linear-gradient(115deg, #0f4028, #1d5a3a);
  color: white;
  padding: 70px 0;
  text-align: center;
}
.counter-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}
.counter-item h2 {
  font-size: 3.5rem;
  font-weight: 800;
  transition: 0.3s;
}
.counter-item:hover h2 {
  transform: scale(1.05);
}

/* Glimpse Slider */
.glimpse-slider {
  background: #f2f7ef;
  padding: 60px 0;
}
.swiper-slide img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 28px;
  transition: 0.3s ease;
}
.swiper-slide img:hover {
  transform: scale(1.02);
}

/* Footer */
.custom-footer {
  background: linear-gradient(135deg, #0a6e3a 0%, #c1121f 100%);
  padding: 50px 0 20px;
  color: #ffffff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand h2 {
  font-weight: 800;
  margin-bottom: 10px;
  color: white;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}
.footer-socials {
  margin-top: 20px;
}
.footer-socials a {
  display: inline-block;
  margin-right: 10px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: white;
  transition: 0.3s;
}
.footer-socials a:hover {
  background: white;
  color: #c1121f;
  transform: translateY(-3px) rotate(360deg);
}
.footer-grid h4 {
  margin-bottom: 15px;
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: white;
  font-weight: 600;
}
.footer-grid ul {
  list-style: none;
}
.footer-grid ul li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  color: rgba(255,255,255,0.85);
  transition: 0.2s;
}
.footer-grid ul li:hover {
  color: white;
  transform: translateX(5px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255,255,255,0.8);
}

/* Responsive */
@media (max-width: 1100px) {
  .projects-grid, .values-grid-enhanced {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .header-inner { flex-direction: column; gap: 16px; }
  nav ul { justify-content: center; }
  .hero-left h2 { font-size: 2.4rem; }
  .mission-left h2 { font-size: 2.2rem; }
  .hero-home { background-attachment: scroll; }
  .logo-img {
    width: 64px;
    height: 64px;
  }
  .logo-text h1 {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .values-grid-enhanced, .projects-grid {
    grid-template-columns: 1fr;
  }
  .counter-grid { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-socials { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-title { font-size: 2rem; }
  .hero-left h2 { font-size: 1.8rem; }
  .logo-img {
    width: 56px;
    height: 56px;
  }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn-primary, .btn-secondary { padding: 10px 24px; font-size: 0.9rem; }
  .logo-img {
    width: 52px;
    height: 52px;
  }
  .logo-text h1 {
    font-size: 1.4rem;
  }
}