body, html {
  height: 100%;
  margin: 0;
  font-family: 'Poppins', sans-serif;
 

}

    
 .custom-toggler-icon .icon-toggle {
  transition: transform 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.custom-toggler-icon:hover .icon-toggle {
  color: #0d6efd; /* Bootstrap primary */
}

.custom-toggler-icon .bi-x {
  transform: rotate(180deg);
}

    
.hero {
  position: relative;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
              url('assets/hero-bg.jpg') no-repeat center center/cover;
  height: 100vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
