body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #0f0f0f;
  color: #f5f5f5;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1c1c1c;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  color: #ffcc00;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover {
  color: #ff3b3b;
}

.hero {
  position: relative;
  text-align: center;
}

.hero img {
  width: 100%;
  opacity: 0.65;
}

.hero-text {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-text h2 {
  font-size: 36px;
  color: #ffcc00;
}

section {
  padding: 40px;
  max-width: 1100px;
  margin: auto;
}

.service-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.service-box {
  width: 30%;
  background-color: #1e1e1e;
  margin: 10px;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.service-box:hover {
  background-color: #ffcc00;
  color: #1e1e1e;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.gallery-item {
  background-color: #1c1c1c;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}

.gallery-item img {
  width: 100%;
  border-radius: 6px;
}

.gallery-item h3 {
  margin-top: 10px;
  color: #ffcc00;
}

#contact form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: auto;
}

#contact input, #contact textarea {
  margin: 10px 0;
  padding: 10px;
  border: none;
  border-radius: 6px;
}

#contact button {
  background-color: #ffcc00;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 6px;
  font-weight: bold;
}

footer {
  background-color: #1c1c1c;
  text-align: center;
  padding: 15px;
  color: #bbb;
}

.whatsapp-btn {
  color: #25d366;
  text-decoration: none;
  font-weight: bold;
}
