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: 80vh;
  background: url('assets/5904608588167056312_121.jpg') center/cover no-repeat;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  z-index: 1000;
}

.lead {
  background: rgba(0,0,0,0.7);
  color: yellow;
  padding: 10px;
  display: inline-block;
}

/* ===== SECTIONS ===== */
.section {
  padding: 60px 0;
}

.card {
  transition: transform 0.3s;
}
.card:hover {
  transform: scale(1.05);
}

/* ===== FOOTER ===== */
footer {
  background: #2e7d32;
  color: white;
  padding: 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: yellow ;
}
.navbar-toggler{
    background: white !important;
}
a img{
    height: 50px;
    width: 50px !important;
    /* border-radius: 100%; */
    margin-right: 10px;
    /* margin-left: -10px; */
  }