body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #333;
}

.navbar {
  display: flex;
  align-items: center;
  background: #111;
  padding: 10px 20px;
}

.nav-logo {
  height: 50px;
  margin-right: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.hero-banner {
  position: relative;
  text-align: center;
}

.banner-img {
  width: 100%;
  height: auto;
}

.hero-btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #007bff;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 18px;
}

.featured-section {
  padding: 40px 20px;
  text-align: center;
}

.carousel {
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.carousel-item {
  min-width: 250px;
  margin: 0 10px;
  background: #eee;
  padding: 20px;
  border-radius: 10px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

footer {
  text-align: center;
  padding: 20px;
  background: #eee;
  margin-top: 40px;
}


