*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}
.navbar{
    background: #FAF9F6;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;  
    position: sticky;
    top: 0;
    z-index:999;
    font-size: 1.2rem; 
}
.navbar_logo--container {
    margin-left: 5px;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 10px; /* adjust spacing between logo and text */
}
.logo_img {
    width: 30px;
    height: 40px;
    object-fit: contain;
    /* Remove position: fixed if you want the image to align naturally */
}
.navbar_logo--container h1 {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
}
.navbar_container{
    display: flex;
    justify-content: space-between;
    height: 70px;
    align-items: center;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}
.navbar_menu{
    display: flex;
    margin-left:auto;
    list-style: none;
}
.navbar_item{
    height: 70px;
    padding: 20px 15px;
    font-weight: bold;
    font-size: 0.9rem;
}
.navbar_links{
    color: #000;
    text-decoration: none;
    padding: 10px;
    height: 100%;
    transition: color 0.3s ease-in-out;
    align-items: center;
    justify-content: center;
}
.navbar_links:hover{
    color: #555;
}

/******************************* Whatsapp *********************************/
.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #0b5f2a;
  color: white;
  border-radius: 12px;
  padding: 10px 16px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  transition: background-color 0.3s;
}
.whatsapp-widget:hover {
  background-color: #20b858;
}
.whatsapp-widget img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.whatsapp-widget span {
  font-weight: bold;
  font-size: 14px;
  text-align: center;
}
/*********************************Body************************/
.about {
  max-width: 900px;
  margin: 60px auto;
  background-color: #f9f9f9;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.7;
}

.about h2 {
  font-size: 28px;
  font-weight: bold;
  color: #107800; /* or use your brand color */
  margin-bottom: 20px;
  text-align: center;
}

.about p {
  font-size: 16px;
  margin-bottom: 20px;
}

.about ul {
  padding-left: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.about ul li {
  margin-bottom: 8px;
  list-style-type: disc;
}


/***************************** Footer *****************************/
.footer_container {
  background-color: #141414;
  color: #f1f1f1;
  padding: 4rem 1rem;
  font-family: Arial, sans-serif;
}

.footer_top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.footer_col {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer_col h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer_col a {
  display: block;
  margin-bottom: 0.5rem;
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s ease;
}

.footer_col a:hover {
  color: #ffffff;
}

.footer_col p {
  margin: 0.3rem 0;
  color: #bbb;
  font-size: 0.95rem;
}

.footer_bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  text-align: center;
}

.footer_brand {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer_socials {
  margin-top: 1rem;
}

.footer_socials a {
  color: #fff;
  margin: 0 10px;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.footer_socials a:hover {
  color: #0f9d58; /* subtle highlight */
}
.copyright {
  color: #aaa;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .navbar_container {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 20px;
      }

      .navbar_toggle {
        display: block;
        cursor: pointer;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 1001;
      }

      .navbar_toggle .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: #000;
        transition: all 0.3s ease;
      }

      .navbar_menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #FAF9F6;
        margin-top: 10px;
        padding: 10px;
        max-height: 0;
      }

      .navbar_menu.active {
        display: flex;
        max-height: 500px;
      }

      .navbar_item {
        width: 100%;
        text-align: left;
        padding: 10px 0;
      }

      /* Footer */
  .footer_container {
    padding: 20px 10px;
    font-size: 14px;
  }

  .footer_link--wrapper {
    flex-direction: column;
  }

  .footer_link--items {
    margin: 10px 0;
  }

  .social_icons {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }

  .website_right {
    font-size: 12px;
    text-align: center;
  }

  .footer_logo a {
    font-size: 1rem;
  }
.navbar_toggle.is-active .bar:nth-child(1){transform:translateY(8px) rotate(45deg);}
.navbar_toggle.is-active .bar:nth-child(2){opacity:0;}
.navbar_toggle.is-active .bar:nth-child(3){transform:translateY(-8px) rotate(-45deg);}
}
