body {
  font-family: 'Inter', sans-serif;
}

.heading {
  font-family: 'Poppins', sans-serif;
}

/* HERO BACKGROUND */
.hero {
  min-height: 100vh;
  background: url('img/logo.png') center/cover no-repeat;
  position: relative;
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 3, 0.65); /* green overlay */
}
.active {
  color: #17573E; /* Active link color */
  font-weight: 600;
}

#navbar ul li a{
    transition: color 0.3s ease;
}
#navbar ul li a:hover{
    color: #DEC627; /* Hover color */
}
