/* General Styles */
body {
  font-family: Arial, 'Helvetica', sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}

h2, h3 {
  color: #1f2937;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.8;
}

/* Navigation */
#nav {
  top: 0;
  left: 0;
  width: 100%;
  position: sticky;
  z-index: 10;
  background-color: #f4f4f4;
}

#nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#nav ul {
  display: flex;
  gap: 3rem;
  list-style: none;
}

#nav a {
  color: #04451e;
  text-decoration: none;
  font-weight: 900;
  padding: 10px 0;
  transition: all 0.3s ease;
}

#nav a:hover {
  color: #bea30c;
}

nav img {
  height: 100px;
  object-fit: contain;
}

/* Burger Menu */
#burger {
  display: none;
  flex-direction: column;
  gap: 5px;
}

#burger span {
  width: 30px;
  height: 3px;
  background-color: #4b5563;
}

.landing {
  height: 100vh;
  width: 100%;
  background: url('your-image.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.landing::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0); /* dark overlay */
  z-index: 1;
}

.landing-content {
  position: relative;
  z-index: 2;
}

/* Main Content */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

section {
  padding: 4rem 0;
}

section.bg-gray-100 {
  background-color: #f9fafb;
}

/* About Us Section */
#about-us p {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.8;
}

/* Who We Are Section */
#who-we-are p {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.8;
}

/* What We Offer Section */
#what-we-offer ul {
  margin-left: 2rem;
  list-style-type: disc;
}

#what-we-offer li {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.8;
}

#what-we-offer li strong {
  font-weight: bold;
}

/* Why Choose Us Section */
#why-choose-us ul {
  margin-left: 2rem;
  list-style-type: disc;
}

#why-choose-us li {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.8;
}

#why-choose-us li strong {
  font-weight: bold;
}

/* Contact Us Section */
#contact-us {
  background-color: #fff;
}

#contact-us form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #f9fafb;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#contact-us input, #contact-us textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
  margin-bottom: 1rem;
}

#contact-us button {
  background-color: #04451e;
  color: white;
  padding: 1rem;
  border: none;
  font-size: 1.125rem;
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
}

#contact-us button:hover {
  background-color: #bea30c;
}

/* Scroll to Top Button */
#scrollToTopBtn {
  background-color: #04451e;
  color: white;
  padding: 1rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

#scrollToTopBtn:hover {
  background-color: #374151;
}

/* Footer */
footer {
  background-color: #1f2937;
  color: white;
  padding: 2rem 0;
  text-align: center;
}

footer a {
  color: #ffffff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Media Queries */
@media (max-width: 768px) {
  #nav ul {
      display: none;
      flex-direction: column;
      gap: 1rem;
      background-color: #1f2937;
      position: absolute;
      top: 60px;
      left: 0;
      right: 0;
      padding: 1rem;
      z-index: 1;
  }

  #nav ul li {
      margin-bottom: 0.5rem;
  }

  #burger {
      display: flex;
  }

  #burger.active + ul {
      display: flex;
  }
}

@media (max-width: 640px) {
  .container {
      padding-left: 1rem;
      padding-right: 1rem;
  }

  h2 {
      font-size: 1.5rem;
  }

  h3 {
      font-size: 1.2rem;
  }
}
