/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: linear-gradient(to bottom right, #ffffff, #e6ffe6);
  color: #000;
  overflow-x: hidden;
}

/* GENERAL ELEMENTS */
img {
  max-width: 100%;
  display: block;
}

/* SCROLL TO TOP BUTTON */
#scrollBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #007a33;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
}

/* NAVBAR */
.navbar {
  background: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #e6ffe6;
  position: sticky;
  top: 0;
  z-index: 999;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.5rem;
  color: #007a33;
  font-weight: bold;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #007a33;
  cursor: pointer;
}

/* Default nav styles (desktop) */
nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #007a33;
}

/* ACTIVE NAV LINK GLOW */
nav a.active {
  color: #007a33;
  font-weight: bold;
  position: relative;
}

nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #00cc66;
  box-shadow: 0 0 6px #00cc66, 0 0 12px #00cc66;
  border-radius: 4px;
}

/* ABOUT PAGE HERO */
.about-hero {
 background: linear-gradient(to bottom right, #ffffff, #e6ffe6);
  height: 60vh;
  color:  #007a33;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.about-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* ABOUT SECTION */
.about-main {
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
}

.container {
  margin-bottom: 40px;
}

.mission-vision {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.mission-vision .box {
  flex: 1 1 300px;
  background: #e6ffe6;
  padding: 20px;
  border-left: 5px solid #007a33;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.reasons {
  list-style: none;
  padding-left: 0;
  line-height: 1.8;
  font-size: 1rem;
}

.reasons li::before {
  content: '✔️ ';
  color: #007a33;
}

/* CORE VALUES SECTION */
.core-values {
  background: #f5fff5;
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
}

.core-values h2 {
  text-align: center;
  color: #007a33;
  margin-bottom: 40px;
  font-size: 2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.value-card {
  background: white;
  border-left: 5px solid #007a33;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-radius: 5px;
}

.value-card h3 {
  color: #007a33;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.value-card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}


/* FOOTER */
.footer {
  background-color: #003d1f; /* deep green */
  color: white;
  padding: 50px 20px 30px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 250px;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #e6ffe6;
}

.footer-col p,
.footer-col a {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
  text-decoration: none;
}

.footer-col a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #aaa;
  border-top: 1px solid #2a5d4a;
  margin-top: 30px;
}
/* RESPONSIVE STYLES */

/* RESPONSIVE TOGGLE MENU */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 60px;
    right: 0;
    width: 0;
    overflow: hidden;
    flex-direction: column;
    background-color: white;
    transition: width 0.3s ease;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    padding: 0;
    z-index: 999;
  }

  nav.active {
    width: 200px;
    padding: 15px 20px;
  }

  nav a {
    font-size: 1.1rem;
    color: #007a33;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
  }

  nav.active a {
    opacity: 1;
    transform: translateX(0);
  }

  /* Active nav glow for mobile */
  nav a.active {
    background-color: #e6ffe6;
    border-left: 4px solid #00cc66;
    padding-left: 10px;
    box-shadow: inset 3px 0 5px rgba(0, 204, 102, 0.3);
  }

  nav a.active::after {
    display: none;
  }

  .navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
  }


  .about-hero h1 {
    font-size: 2rem;
  }

  .about-hero p {
    font-size: 1rem;
  }

  .mission-vision {
    flex-direction: column;
    gap: 20px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  .footer-col h3 {
    font-size: 1.1rem;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }

  .btn {
    font-size: 1rem;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 1.6rem;
  }

  .about-hero p {
    font-size: 0.95rem;
  }

  .mission-vision .box h3,
  .value-card h3 {
    font-size: 1rem;
  }

  .mission-vision .box p,
  .value-card p {
    font-size: 0.9rem;
  }

  .core-values h2,
  .about-main h2 {
    font-size: 1.6rem;
  }
}