
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: linear-gradient(to bottom, #FEFABF, #FAED21);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Navigation Bar Styling */
.navbar {
  background: #faed21;
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  font-family: 'Poppins', sans-serif;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
  margin: 0 1rem;
}

.nav-item > a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  display: inline-block;
  transition: color 0.3s ease;
}

.nav-item > a:hover {
  color: #ff69b4;
}

.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fffef0;
  border: 1px solid #f0e68c;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  z-index: 999;
}

.sub-menu li {
  margin: 0;
}

.sub-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.sub-menu li a:hover {
  background-color: #fffacd;
  color: #ff69b4;
}

.nav-item:hover .sub-menu {
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-item {
    width: 100%;
  }
}

.logo {
  max-width: 440px;
  margin-bottom: 1rem;
}

.hero.bright {
  background: transparent;
  color: #333;
  text-align: center;
  padding: 4rem 2rem;
}

.cta {
  background: #ff69b4;
  color: white;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}

.video {
  text-align: center;
  padding: 2rem;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}

.card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  width: 280px;
  text-align: center;
}

.footer {
  background: transparent;
  color: #333;
  text-align: center;
  padding: 1rem;
  width: 100%;
}
