
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.7);
  padding: 15px 30px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.logo {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: #f39c12;
}


.hamburger {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

#menu-toggle {
  display: none;
}


.banner {
  background: url('../images/education.jpg') no-repeat center center/cover;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background-blend-mode: overlay;
  background-color: rgba(12, 12, 12, 0.418);
  /* position: relative; */
}

/* .banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 1;
} */

/* .banner-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
} */
.banner-content {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.banner-content p {
 
  width: 60%;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  background: #f39c12;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #d35400;
}


@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(0,0,0,0.9);
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 20px;
  }

  
  #menu-toggle:checked ~ .nav-links {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}
