
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background-color: #121212;
  color: #eeeeee;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
}
.navbar {
  background-color: #1e1e1e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}
.logo {
  color: #00adb5;
  font-size: 26px;
  font-weight: bold;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: #00adb5;
}
.search-container {
  display: flex;
  align-items: center;
}
.search-input {
  padding: 6px 10px;
  border-radius: 4px 0 0 4px;
  border: none;
}
.search-btn {
  padding: 6px 12px;
  background-color: #00adb5;
  color: white;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}
.hero-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to right, #0f0f0f, #1f1f1f);
}
.hero-section h2 {
  font-size: 36px;
  margin-bottom: 15px;
}
.hero-section p {
  font-size: 18px;
  max-width: 800px;
  margin: auto;
}
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #00adb5;
  color: #121212;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
}
.container {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
}
ul {
  list-style: disc;
  margin-left: 30px;
  margin-top: 15px;
}
.footer {
  background-color: #1e1e1e;
  text-align: center;
  padding: 15px;
  color: #aaa;
  margin-top: 50px;
}
.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}
.slides {
  display: flex;
}
.slide {
  width: 100%;
  display: none;
}
.slide.active {
  display: block;
  width: 100%;
}
