* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fffbe8;
  color: #222;
}

/* Navbar */
header {
  background: #0b3b2e;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  font-size: 1.3rem;
  font-weight: bold;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-size: 1rem;
}

nav a:hover {
  color: #ffd700;
}

.menu-icon {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(to right, #0b3b2e, #135f49);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.hero-logo {
  width: 100px;
  margin-bottom: 15px;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
}

.kan {
  font-size: 1.3rem;
  font-weight: bold;
  color: #ffd700;
}

/* About Section */
.about, .services, .products, .contact {
  padding: 50px 20px;
  text-align: center;
}

.about h2, .services h2, .products h2, .contact h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #0b3b2e;
}

.about p {
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.about h3 {
  color: #0b3b2e;
  font-size: 1.4rem;
  margin-top: 25px;
  margin-bottom: 15px;
}

.why-choose {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.why-choose li {
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.why-choose li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0b3b2e;
  font-weight: bold;
}

/* Services Section */
.service-boxes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.box {
  background: #0b3b2e;
  color: white;
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  text-align: left;
}

.box h3 {
  margin-bottom: 10px;
  color: #ffd700;
}

.box ul {
  list-style: disc;
  padding-left: 20px;
}

.box ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* Products */
.product-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
}

.product-card {
  background: white;
  border: 2px solid #0b3b2e;
  border-radius: 8px;
  width: 200px;
  flex: 0 0 auto;
  text-align: center;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

.product-card h3 {
  color: #0b3b2e;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.product-card p {
  font-size: 0.9rem;
  color: #444;
}

/* Contact */
.contact-info p {
  margin: 10px 0;
  font-size: 1rem;
}

/* Footer */
footer {
  background: #0b3b2e;
  color: white;
  padding-top: 30px;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px;
}

.footer-column {
  max-width: 300px;
}

.footer-column h3 {
  color: #ffd700;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a, 
.footer-column a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-column a:hover {
  text-decoration: underline;
}

.social a {
  display: inline-block;
  margin-right: 10px;
  font-size: 0.95rem;
}

.footer-bottom {
  background: #073326;
  text-align: center;
  padding: 10px 0;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: #0b3b2e;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 10px 0;
  }

  nav a {
    margin: 10px 0;
  }

  .menu-icon {
    display: block;
  }

  nav.show {
    display: flex;
  }

  .service-boxes {
    flex-direction: column;
    align-items: center;
  }

  .product-card {
    width: 200px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}