* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", sans-serif;
  background: #111;
  color: #fff;
}
header {
  background: #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  flex-wrap: wrap;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 40px;
  margin-right: 10px;
  border-radius: 10px;
}
.nav-container {
  position: relative;
}
#nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
#nav-links a {
  color: yellow;
  text-decoration: none;
  font-weight: 500;
}
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}
#nav-links.show {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50px;
  right: 0;
  background: #222;
  padding: 10px;
  border-radius: 8px;
  width: 200px;
  z-index: 999;
}

.hero {
  position: relative;
  text-align: center;
  padding: 80px 20px;
  background: url('assets/banner.png') no-repeat center/cover;
  color: #fff;
}
.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.hero ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.hero li {
  margin-bottom: 10px;
}
.whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.whatsapp:hover {
  background: #128C7E;
}

.services {
  background: #fff176;
  padding: 50px 20px;
  text-align: center;
  color: #222;
}
.updated {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 10px;
}
.services h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  font-weight: 700;
  color: #333;
  text-shadow: 0 0 5px #ffeb3b;
}

#service-search {
  width: 300px;
  padding: 10px 15px;
  margin-bottom: 30px;
  border: none;
  border-radius: 20px;
  font-size: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  outline: none;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  width: 200px;
  padding: 20px;
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-10px);
}
.card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
}
.card h3 {
  margin-top: 15px;
  font-size: 1.2rem;
  color: #222;
}
.card p {
  font-size: 0.9rem;
  color: #666;
}

footer {
  text-align: center;
  padding: 20px;
  background: #000;
  color: #ccc;
  margin-top: 40px;
}

@media (max-width: 768px) {
  #nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .menu-toggle {
    display: block;
  }
  .hero h2 {
    font-size: 1.5rem;
  }
  .cards {
    flex-direction: column;
    align-items: center;
  }
  #service-search {
    width: 80%;
  }
}
