html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
}

header {
  background: #007bff;
  color: white;
  padding: 10px 0;
}

header .container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

h1 {
  margin: 0;
}

nav {
  display: flex;
  gap: 15px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

.hero {
  text-align: center;
  background: url('../images/webvt logo.png') no-repeat center center/cover;
  color: white;
  padding: 300px 20px;
}

.btn {
  background: white;
  color: #007bff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
}

.features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 50px;
  background: white;
}

.feature {
  text-align: center;
  width: 30%;
  margin: 15px 0;
}

footer {
  text-align: center;
  padding: 20px;
  background: #007bff;
  color: white;
}

.bc {
  margin-right: 46%;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    justify-content: space-between;
  }

  nav {
    display: none;
    flex-direction: column;
    background: #007bff;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 10px;
    border-radius: 0 0 0 10px;
  }

  nav.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .feature {
    width: 80%;
  }

  .hero {
    padding: 200px 20px;
  }

  .bc {
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 98px 15px;
    font-size: 14px;
  }

  h1 {
    font-size: 20px;
  }

  .btn {
    padding: 5px 2px;
        
  }
  .browse{
      font-size: 7px;
  }

  .feature {
    width: 90%;
  }
  .bc{
      margin-right:170px;
  }
}
