   body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f6faf7;
}

/* ===== CANVAS ===== */
#canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Keep content above canvas */
nav, section, footer {
  position: relative;
  z-index: 1;
}

/* ===== NAV ===== */
.navbar {
  background: #2e7d32;
}
.navbar-brand,
.nav-link {
  color: #fff !important;
}

/* ===== HERO ===== */
.hero {
  height: 60vh;
  background: url('assets/plantation2.jpg') center/cover no-repeat;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* ===== SECTIONS ===== */
.section {
  padding: 60px 0;
  z-index: 200;
}

.card {
  transition: transform 0.3s;
}
.card:hover {
  transform: scale(1.05);
}

/* ===== FOOTER ===== */
footer {
  background: #2e7d32;
  color: white;
  padding: 60px 0 20px;
}
footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
footer a:hover {
  color: #ffd700;
}
footer h5 {
  font-weight: bold;
  margin-bottom: 20px;
}
footer ul {
  list-style: none;
  padding: 0;
}
footer ul li {
  margin-bottom: 10px;
}
.footer-logo {
  max-width: 150px;
  margin-bottom: 20px;
}

/* ===== SCROLL ANIMATION ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}
.animate-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}
.section{ 
    background-color: #f6faf7;
}
.navbar-toggler{
    background: white !important;
}
a img{
    height: 50px;
    width: 50px !important;
    /* border-radius: 100%; */
    margin-right: 10px;
    /* margin-left: -10px; */
  }

  .lead {
  background: rgba(0,0,0,0.7);
  color: yellow;
  padding: 10px;
  display: inline-block;
}