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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
  color: #1a1a1a;
  padding-bottom: 2rem;
}





/* Navbar */
.navbar {
  background-color: #022904;
  color: white;
  padding: 1.5rem 0;
  position: relative;
  width: 100%;
  z-index: 1000;
}

.nav-container {
  width: 95%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3rem;
  color: #222;
}

.logo {
  height: 100px;
  width: auto;
  margin-right: 0.5rem;
  border-radius: 7px;
}

.brand-name {
  font-size: 1.4rem;
  color: #D4AF37;
  font-weight: 700;
}

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

.nav-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  display: none;
  cursor: pointer;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-menu a:not(.btn),
.nav-menu button:not(.btn) {
  color: white;
  text-decoration: none;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem 0.8rem;
  transition: background 0.3s;
}


.btn:hover {
  opacity: 0.9;
}


.nav-menu a:hover, .nav-menu button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #004f6d;
  margin-top: 0.5rem;
  border-radius: 5px;
  z-index: 999;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  width: 180px;
}



/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal[hidden] {
  display: none;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}



/* Responsive */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #003f5c;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .nav-menu.show {
    display: flex;
  }
}












/* accessibility section */


  :root {
    --jungle-green: #29AB87;
    --accessible-yellow: #FFC107;
    --accessible-border: #ddd;
  }
  
  
  #accessibility-button {

    position: absolute;
    top: 80%;
    left: 90%;
    right: 20px;
    bottom: 20px;
    background-color: var(--accessible-yellow);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 24px;
    line-height: 50px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    z-index: 1000;
  }
  
  #accessibility-toolbar {
    position: absolute;
    top: 60%;
    left: 60%;
    right: 20px;
    bottom: 80px;
    width: 270px;
    background: white;
    border: 1px solid var(--accessible-border);
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    font-family: inherit;
    display: none;
    z-index: 1001;
    border-radius: 6px;
  }
  
  .toolbar-header {
    background: var(--jungle-green);
    color: rgb(155, 120, 120);
    padding: 10px;
    font-weight: bold;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
  }
  
  .toolbar-content {
    padding: 10px;
    color: #111;
  }
  
  .toolbar-content label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
  }
  
  .powered {
    padding: 6px;
    font-size: 12px;
    text-align: center;
    background: #f8f8f8;
    border-top: 1px solid var(--accessible-border);
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
  }
  
  .no-animations *, .no-animations *::before, .no-animations *::after {
    animation: none !important;
    transition: none !important;
  }
  
  .gentle-contrast *:not(img) {
    background-color: #f9f9f9 !important;
    color: #111 !important;
  }
  
  .gentle-contrast header, .gentle-contrast footer {
    background-color: #1e8e6d !important;
  }
  
  .readable-font *:not(img) {
    font-family: Verdana, Arial, sans-serif !important;
  }
  
  .highlight-links a,
  .highlight-links button {
    background-color: #eefcee !important;
    outline: 2px solid #29AB87 !important;
  }
  
  .marked-titles h1,
  .marked-titles h2,
  .marked-titles h3 {
    border-bottom: 2px dashed #29AB87;
    padding-bottom: 4px;
  }

  


  /* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  
  .slides {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-image: 
    linear-gradient(to right, rgba(0, 0, 0, 0.6), transparent),
    var(--slide-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 2rem;
}

.slide.active {
  opacity: 1;
}
  
  .slide.active {
    opacity: 1;
    z-index: 2;
  }


  
  .caption {
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    color: #FFD700;
    padding: 2rem;
    border-radius: 12px;
    max-width: 90%;
  }
  
  .caption h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .caption p {
    font-size: 1.25rem;
  }
  
  @media (min-width: 768px) {
    .caption h1 {
      font-size: 3.5rem;
    }
  
    .caption p {
      font-size: 1.5rem;
    }
  }
  .donate-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #ff6b00;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .donate-btn:hover,
  .donate-btn:focus {
    background-color: #e55c00;
    transform: scale(1.05);
    outline: none;
  }

  



  .about-mission-section {
    top: -100px;
    background: #f9fafc;
    padding: 80px 20px;
    color: #1b1b1f;
  }
  
  .about-mission-section .container {
    max-width: 1200px;
    margin: auto;
  }
  
  .about-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #024d27;
  }
  
  .about-header p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
  }
  
  .about-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
  }
  
  .column {
    flex: 1 1 45%;
  }
  
  .column h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #024d27;
  }
  
  .column p,
  .column ul {
    font-size: 1.05rem;
    line-height: 1.7;
  }
  
  .column ul {
    padding-left: 20px;
    list-style: disc;
    margin-bottom: 20px;
  }
  
  .about-actions {
    margin-top: 40px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .btn-primary {
    background: #074710;
    color: white;
  }
  
  .btn-primary:hover {
    background: #023b05;
  }
  
  .btn-secondary {
    background: #e2e6ea;
    color: #333;
  }
  
  .btn-secondary:hover {
    background: #d0d4d9;
  }
  
  .btn-outline {
    border: 2px solid #3d4042;
    color: #007bff;
    background: transparent;
  }
  
  .btn-outline:hover {
    background: #093b26;
    color: white;
  }

  


  @media (max-width: 768px) {
    .about-columns {
      flex-direction: column;
    }
  
    .about-actions {
      flex-direction: column;
      align-items: stretch;
    }
  
    .btn {
      width: 100%;
      text-align: center;
    }
  }

  





  /* What We Do Section */
.what-we-do {
  width: 80%;
  margin: 0 auto;
  background: #f9fafc;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.section-subtitle {
  color: #f7a400;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.5rem;
  color: #1b1b1b;
  margin-bottom: 10px;
}

.section-description {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

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

.work-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  text-align: left;
}

.work-card:hover {
  transform: translateY(-5px);
}

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

.card-content {
  padding: 25px 20px;
}

.card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #222;
}

.card-content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

/* Responsive Text Adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
    .what-we-do {
    width: 95%;
  }

  .section-description {
    font-size: 1rem;
  }

  .card-content h3 {
    font-size: 1.2rem;
  }
}








  .impact-section {
    padding: 4rem 2rem;
    background: #f8f9fc;
    text-align: center;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #222;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #555;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .impact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .impact-card {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    flex: 1 1 250px;
    max-width: 300px;
  }
  
  .impact-number {
    font-size: 3rem;
    color: #e6cf06;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  
  .impact-label {
    font-size: 1rem;
    color: #333;
  }

  




  .events-section {
    padding: 4rem 2rem;
    background-color: #fff;
    text-align: center;
  }
  
  .events-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
  }
  
  .event-card {
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    max-width: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  }
  
  .event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .event-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .event-content {
    padding: 1rem;
    text-align: left;
  }
  
  .event-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #024d27;
  }
  
  .event-content p {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 1rem;
  }
  
  .read-more {
    color: #024d27;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
  }
  
  .read-more:hover {
    text-decoration: underline;
  }

  



  .quick-access {
    padding: 4rem 2rem;
    background-color: #f0f4f8;
    text-align: center;
  }
  
  .section-title {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 0.5rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
  }
  
  .access-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .access-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    width: 300px;
    max-width: 90%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .access-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  
  .access-icon {
    width: 60px;
    margin-bottom: 1rem;
  }
  
  .access-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .access-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1rem;
  }
  
  .action-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  
  .action-btn.donate {
    background-color:#FFD700;
  }
  
  .action-btn.join {
    background-color: #0c6621;
  }
  
  .action-btn.shop {
    background-color: #ff9800;
  }
  
  .action-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .access-grid {
      flex-direction: column;
      align-items: center;
    }
  
    .access-card {
      width: 90%;
    }
  }

  


  .site-footer {
    background-color:rgb(1, 36, 19);
    color: #f0f0f0;
    padding: 4rem 2rem 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
  }
  
  .site-footer h3, .site-footer h4 {
    color: #ffffff;
    margin-bottom: 1rem;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links ul li {
    margin-bottom: 0.5rem;
  }
  
  .footer-links ul li a {
    color: #f0f0f0;
    text-decoration: none;
  }
  
  .footer-links ul li a:hover {
    text-decoration: underline;
  }
  
  .footer-contact i, .footer-social i {
    margin-right: 0.5rem;
    color: #1c7ed6;
  }
  
  .social-icons a {
    color: #f0f0f0;
    margin-right: 1rem;
    font-size: 1.4rem;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #1c7ed6;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #444;
    padding-top: 1rem;
    font-size: 0.85rem;
  }
  













  