/* Reset dasar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #019875;
  color: white;
}

.navbar .logo {
  max-width: 100%;
  width: 150px;
  height: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #00b894;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("background.jpg") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;

}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-content p {
  margin-bottom: 20px;
}

.btn {
  background: #00b894;
  padding: 10px 20px;
  border-radius: 25px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #019875;
}

/* About Section */
.about {
  padding: 50px 20px;
  text-align: center;
}

/* Services Section */
.services {
  padding: 50px 20px;
  background: #f9f9f9;
  text-align: center;
}

.service-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.service-box {
  background: white;
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 250px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact {
  padding: 50px 20px;
  text-align: center;
}

form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input, form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

form button {
  padding: 12px;
  background: #00b894;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

form button:hover {
  background: #019875;
}

/* Responsiveness */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 10px;
    background: #444;
    padding: 10px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .service-container {
    flex-direction: column;
  }
}
