body {
  padding: 0;
  margin: 0;
  font-family: Calibri, sans-serif;
  padding-top: 80px; /* adjust according to navbar height */
}

.navbar {
  position: fixed; /* always on top */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgb(0, 83, 6);
  /* display: flex; */
  /* justify-content: center;  */
  padding: 3px 5px;
}

.container {
  width: 100%;
  /* max-width: 1200px; */
  /* padding: 0 20px; */
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  flex-wrap: wrap;
}

.nav-left {
  display: flex;
  flex-direction: column;
}

.nav-left .brand {
  font-weight: bold;
  font-size: 1.5rem;
  color: rgb(0, 255, 68);
}

.web {
  color: rgb(64, 214, 255);
}
.tax {
  color: #f28202;
}

.nav-left .contact {
  font-size: 0.9rem;
  color: #005835;
}

.nav-right {
  margin: 0px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-right a {
  text-decoration: none;
  color: white;
  padding: 5px 10px;
  border: 1px solid #b6fac15d;
  border-radius: 5px;
  transition: 0.3s;
}

.nav-right a:hover {
  border: 1.5px solid #1ce3c2ee;
  color: #00f731ff;
  box-shadow: -1px 0px 6px 0px rgba(22, 237, 225, 0.75);
}

.burger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
  z-index: 1001;
}
/* whatsapp */
.whatsapp-btn {
  position: fixed; /* always on top */
  bottom: 20px; /* distance from bottom */
  right: 20px; /* distance from right */
  z-index: 2000; /* above navbar */
  width: 60px; /* size of button */
  height: 60px;
  border-radius: 50%; /* make it round */
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.3s;
}

a {
  text-decoration: none;
}
.whatsapp-btn i {
  color: #25d366; /* WhatsApp green */
  font-size: 2.5rem; /* adjust size */
  line-height: 60px; /* vertically center */
  text-align: center;
  display: block;
}

.whatsapp-btn:hover {
  transform: scale(1.1); /* small zoom on hover */
}

/* Responsive */
@media (max-width: 768px) {
  .nav-right {
    flex-direction: column;
    width: 100%;
    display: none;
    margin: 5px 5px;
    /* background-color: #7c8152ff; */
    background-color: rgb(0, 83, 6);
    padding: 10px 0;
    position: relative;
  }
  .nav-right a {
    margin: 0px 5px;
    padding: 5px 5px;
  }

  .nav-right.active {
    display: flex;
  }

  .burger {
    margin-right: 10px;
    display: block;
    position: relative;
    z-index: 1001;
  }

  /* Close button position */
  .burger.close {
    position: absolute;
    top: 10px; /* distance from top of navbar container */
    right: 20px; /* distance from right */
    color: red;
  }
}
