


body {
      font-family: 'Inter', Arial, sans-serif;
      background: #f8f9fa;
      color: #222;
      margin: 0;
      padding: 0;
    }
    /* NAVBAR */
    .navbar {
      background: #e6f5ef;
      box-shadow: 0 2px 8px rgba(0,0,0,0.07);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0.5rem 1.5rem;
      position: relative;
    }
    .logo {
      display: flex;
      align-items: center;
    }

    .logo img {
      height: 44px;
	border-radius: 50%;
	width: 70px;      /* Increase width */
    height: 70px;     /* Height should match width for perfect circle */
    border-radius: 50%;
      margin-right: 0.7rem;
    }
    .nav-right {
      display: flex;
      align-items: center;
      gap: 0.7rem;
    }
    .nav-menu {
      display: flex;
      list-style: none;
      gap: 0.7rem;
      align-items: center;
      margin: 0;
      padding: 0;
    }
    .nav-menu li {
      display: flex;
      align-items: center;
    }
    .nav-menu li a {
      color: #0a5c3d;
      text-decoration: none;
      font-weight: 600;
      padding: 0.5rem 0.9rem;
      border-radius: 6px;
      transition: background 0.2s, color 0.2s;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 1.08rem;
      background: none;
    }
    .nav-menu li a.active,
    .nav-menu li a:hover {
      background: #0a5c3d;
      color: #fff;
    }
    .whatsapp-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
  z-index: 101;
}

/* Show menu on hover or when .open class is present */
.whatsapp-dropdown:hover .whatsapp-menu,
.whatsapp-menu.open {
  display: flex !important;
}

.whatsapp-menu {
  display: none;
  position: absolute;
  top: 0;
  right: 52px; /* Align menu to the left of the WhatsApp icon */
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.13);
  border-radius: 10px;
  min-width: 140px;
  z-index: 100;
  padding: 0.5rem 0;
  flex-direction: column;
  align-items: stretch;
  animation: fadeIn 0.2s;
}

.whatsapp-menu::before {
  content: "";
  position: absolute;
  top: 16px;
  right: -10px;
  border-width: 8px 0 8px 10px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  filter: drop-shadow(2px 0 2px rgba(0,0,0,0.07));
}

.whatsapp-menu button {
  background: none;
  border: none;
  color: #0a5c3d;
  font-size: 1.05rem;
  padding: 0.7rem 1.2rem;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: background 0.2s;
}

.whatsapp-menu button:hover {
  background: #e6f5ef;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px);}
  to { opacity: 1; transform: translateY(0);}
}

    .nav-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 2rem;
      color: #0a5c3d;
      cursor: pointer;
      margin-left: 1rem;
    }
    @media (max-width: 900px) {
      .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }
      .nav-right {
        margin-top: 0.5rem;
        width: 100%;
        justify-content: flex-end;
      }
      .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        background: #e6f5ef;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        box-shadow: 0 2px 8px rgba(0,0,0,0.07);
        padding: 1rem 0;
        z-index: 10;
        display: none;
      }
      .nav-menu.open { display: flex; }
      .nav-toggle { display: block; }
    }
  




    /* FOOTER */
footer {
  background: #0a5c3d;
  color: #fff;
  padding: 0.7rem 0 0.4rem 0; /* Minimal vertical padding */
  font-size: 1rem;
  width: 100vw;
  box-sizing: border-box;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem; /* Minimal gap */
  border-bottom: 1px solid #2196f3;
  padding-bottom: 0.3rem;
  box-sizing: border-box;
}

.footer-col {
  flex: 1 1 140px;
  min-width: 120px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  padding-bottom: 0;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex: 1 1 140px;
  min-width: 120px;
  margin-bottom: 0;
  box-sizing: border-box;
  padding-bottom: 0;
  position: relative;
  height: 100%;
}

.footer-logo img {
  height: 90px;
  width: 90px;
  margin-bottom: 0.05rem;
  margin-top: 0.05rem;
  display: block;
}

.footer-company-info {
  position: absolute;
  bottom: 0.1rem;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-company {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
  text-align: center;
}

.footer-abn {
  color: #b2dfdb;
  font-size: 0.92rem;
  margin: 0;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 900px) {
  .footer-logo img {
    height: 48px !important;
    width: 48px !important;
  }
  .footer-company-info {
    position: static;
    margin-top: 0.2rem;
  }
}
.footer-social-title {
  font-weight:600;
  margin-bottom:0.2rem;
  text-align:center;
  font-size: 0.98rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.1rem;
}

.footer-social a {
  color: #fff;
  font-size: 1.3rem;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
}

.footer-social a.instagram { color: #e1306c; }
.footer-social a.facebook { color: #1877f3; }
.footer-social a:hover { color: #2196f3; }

.footer-contact-btn {
  margin: 0.3rem auto 0 auto;
  display: inline-block;
  background: #2196f3;
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 0.3rem 0.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.footer-contact-btn:hover {
  background: #1769aa;
}


.footer-contact-list {
  gap: 1.1rem; /* Increased gap between email and phone */
}

.footer-contact-list a,
.footer-address a {
  color: #fff !important;
  font-size: 1.13rem;
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align to the left */
  gap: 1.1rem;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-address {
  justify-content: flex-start; /* Align address to the left */
  margin-left: 0;
  margin-right: auto;
}

.footer-contact-list a:hover,
.footer-address a:hover {
  color: #ffd600 !important; /* Bright yellow for high contrast on dark green */
}


.footer-contact-list a:hover { color: #2196f3; }

.footer-policy {
  margin-top: 0.3rem;
  text-align: center;
  font-size: 0.95rem;
}

.footer-policy a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}

.footer-policy a:hover { color: #2196f3; }

.footer-copyright{
	text-align: center;
}

@media (max-width: 900px) {
  .footer-content {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.2rem !important;
    padding-bottom: 0.2rem !important;
  }
  .footer-col {
    min-width: 0 !important;
    margin-bottom: 0.2rem !important;
    padding-bottom: 0.2rem !important;
    border-bottom: 1px solid #2196f3;
  }
  .footer-col:last-child {
    border-bottom: none;
  }
  .footer-logo img {
    height: 32px !important;
    width: 32px !important;
    margin-bottom: 0.1rem;
  }
}




/* --- CHATBOT BUTTON & WIDGET --- */
#chatbot-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  background: #2196f3;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.13);
  cursor: pointer;
  transition: background 0.2s;
}
#chatbot-btn:hover {
  background: #1769aa;
}

.chatbot-widget {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 320px;
  max-width: 95vw;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  z-index: 2001;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chatbot-header {
  background: #2196f3;
  color: #fff;
  padding: 1rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-body {
  padding: 1rem;
  max-height: 300px;
  overflow-y: auto;
  background: #f8f9fa;
}

.chatbot-footer {
  display: flex;
  align-items: center;
  padding: 0.7rem 1rem;
  background: #e6f5ef;
}

.chatbot-footer input[type="text"] {
  flex: 1;
  border: 1px solid #b2dfdb;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  margin-right: 0.7rem;
}

.chatbot-footer button {
  background: #2196f3;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
}

.chatbot-footer button:hover {
  background: #1769aa;
}

@media (max-width: 600px) {
  #chatbot-btn {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    z-index: 2000;
  }
  .chatbot-widget {
    width: 98vw;
    right: 1vw;
    bottom: 70px;
    max-width: 98vw;
    z-index: 2001;
  }
}


/* --- Chatbot Quick Buttons --- */
.chatbot-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  justify-content: center;
}
.chatbot-quick button {
  background: #e6f5ef;
  color: #0a5c3d;
  border: none;
  border-radius: 18px;
  padding: 0.5rem 1.1rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.chatbot-quick button:hover {
  background: #2196f3;
  color: #fff;
}

/* --- Chatbot Messages --- */
.chatbot-msg {
  margin-bottom: 0.7rem;
  padding: 0.7rem 1rem;
  border-radius: 14px;
  max-width: 85%;
  font-size: 1rem;
  line-height: 1.5;
  word-break: break-word;
}
.chatbot-msg.bot {
  background: #e6f5ef;
  color: #0a5c3d;
  align-self: flex-start;
}
.chatbot-msg.user {
  background: #2196f3;
  color: #fff;
  align-self: flex-end;
  margin-left: auto;
}

/* --- Chatbot Header Close Button --- */
.chatbot-header button {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: 0.5rem;
  transition: color 0.2s;
}
.chatbot-header button:hover {
  color: #b2dfdb;
}

















@media (max-width: 900px) {
  .nav-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.7rem;
    max-width: 100vw;
    position: relative;
  }
  .nav-right {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    width: auto;
    margin-top: 0;
    justify-content: flex-end;
  }
  .nav-toggle {
    display: block !important;
    margin-left: 0.5rem;
    order: 3;
    z-index: 1200;
  }
  .nav-menu {
    flex-direction: column;
    gap: 0.2rem;
    background: #e6f5ef;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100vw;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 1rem 0;
    z-index: 1100;
    display: none;
    height: calc(100vh - 60px);
    overflow-y: auto;
  }
  .nav-menu.open {
    display: flex !important;
  }
  .nav-menu li {
    width: 100%;
    justify-content: center;
  }
  .nav-menu li a {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 0.8rem 0;
  }
}



@media (max-width: 900px) {
  .footer-logo img {
    height: 70px !important;
    width: 70px !important;
    margin-bottom: 0.2rem;
    margin-top: 0.2rem;
  }
  .footer-company-info {
    margin-top: 0.1rem !important;
    margin-bottom: 0 !important;
  }
  .footer-content {
    gap: 0.1rem !important;
    padding-bottom: 0.1rem !important;
  }
  .footer-policy {
    margin-top: 0.1rem !important;
  }
}

@media (max-width: 900px) {
  .footer-content {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0 !important;
    padding-bottom: 0.1rem !important;
  }
  .footer-col {
    min-width: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    align-items: center !important;
    width: 100%;
    border-bottom: 1px solid #2196f3;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }
  .footer-col:last-child {
    border-bottom: none;
  }
  .footer-logo img {
    height: 72px !important;
    width: 72px !important;
    margin-bottom: 0.3rem;
    margin-top: 0.1rem;
  }
  .footer-company-info,
  .footer-social-title,
  .footer-social,
  .footer-address,
  .footer-contact-list {
    margin-top: 0.2rem !important;
    margin-bottom: 0.2rem !important;
    width: 100%;
    text-align: center;
  }
  .footer-company, .footer-abn {
    margin-bottom: 0.1rem !important;
    margin-top: 0 !important;
    text-align: center !important;
    width: 100%;
  }
  .footer-social-title {
    margin-bottom: 0.1rem !important;
    margin-top: 0.1rem !important;
    text-align: center !important;
    width: 100%;
  }
  .footer-social {
    gap: 0.7rem !important;
    margin-bottom: 0.rem !important;
    margin-top: 0.1rem !important;
    justify-content: center !important;
    width: 100%;
  }
  .footer-address {
    margin: 0.2rem 0 0.2rem 0 !important;
    font-size: 1.08rem !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center !important;
    text-align: center !important;
    width: 100%;
  }
  .footer-contact-list {
    margin: 0.2rem 0 0 0 !important;
    gap: 0.7rem !important;
    align-items: center !important;
    width: 100%;
  }
  .footer-contact-list li {
    justify-content: center !important;
    width: 100%;
  }
  .footer-policy {
    margin-top: 0.3rem !important;
    padding-top: 0.3rem;
    border-top: 1px solid #2196f3;
    width: 100%;
    text-align: center;
  }
}


@media (max-width: 900px) {
  .footer-address,
  .footer-contact-list a {
    font-size: 0.97rem !important;
  }
  .footer-address {
    margin: 0.05rem 0 0.05rem 0 !important;
  }
  .footer-contact-list {
    margin: 0.05rem 0 0 0 !important;
    gap: 0.4rem !important;
  }
}















