*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

/* Navbar */
.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; 
}
.logo_img {
    width: 30px;
    height: 40px;
    object-fit: contain;
  }
.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;
}

/******************************* Hero *********************************/
.hero-banner {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6);
}
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    color: white;
    padding: 0 20px;
}
.hero-content h1 {
    font-size: clamp(2rem, 5vw + 1rem, 4.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
    margin-right: 10px;
}
.hero-button {
    display: inline-block;
    background-color: #28a745;
    color: #fff;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.hero-button:hover {
    background-color: #1e7c37;
}

/******************************* 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 *********************************/
.IconCard--box {
    display: flex;
    justify-content: center;
    gap: 160px;
    margin: 100px auto;
}
.IconCard--items {
    width: 260px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: 0.3s ease;
    opacity: 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}
.IconCard--items img {
    width: 150px;
    height: 150px;
    transition: transform 0.3s ease;
    transform: 0.3s ease;
}

.IconCard--items p {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    
}

.learnMore {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 16px;
    background-color: #28a745;
    color: white;
    font-size: 0.85rem;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-align: center;
}

.learnMore:hover {
    background-color: #184f27;
}


/* Hover effects */
.IconCard--items:hover {
    opacity: 1;
    transform: scale(1.15);
    z-index: 2;
    filter: brightness(2);
    box-shadow: 0 0 0 3px #28a745;
}




.navbar_btn{
    padding-bottom: 2rem;
}

.button{
    display:flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 80px;
    margin: 0;
}

.navbar_toggle .bar{
    display: block;
    cursor: pointer;
}

.download-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.download-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
}

.download-section p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 20px;
}

.download-btn {
  display: inline-block;
  background-color: #28a745;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.download-btn:hover {
  background-color: #218838;
}

.download-btn i {
  margin-right: 8px;
}


/***************************** About *****************************/
.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;
}
.about .learnMore {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 16px;
    background-color: #28a745;
    color: white;
    font-size: 0.85rem;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-align: center;
}

.about .learnMore:hover {
    background-color: #1e7c37;
}



/***************************** 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: #fff;
}

.footer_col a {
  display: block;
  margin-bottom: 0.5rem;
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s ease;
}

.footer_col a:hover {
  color: #fff;
}

.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;
}



.navbar_toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.navbar_toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
}



/* 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;
      }

  /* Hero Section */
  .hero-banner {
    height: 60vh;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    text-align: center;
  }

  .hero-button {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  /* WhatsApp Widget */
  .whatsapp-widget {
    bottom: 10px;
    right: 10px;
    padding: 8px 12px;
  }

  .whatsapp-widget img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
  }

  .whatsapp-widget span {
    font-size: 12px;
  }

  /* Icon Card Section */
  .IconCard--box {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 50px auto;
  }

  .IconCard--items {
    width: 85%;
  }

  .IconCard--items img {
    width: 100px;
    height: 100px;
  }

  .IconCard--items p {
    font-size: 14px;
  }

  .learnMore {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  /* Download Section */
  .download-section h2 {
    font-size: 1.5rem;
  }

  .download-section p {
    font-size: 1rem;
  }

  .download-btn {
    display: block;
    width: 90%;
    margin: 10px auto;
    font-size: 0.95rem;
    padding: 10px 15px;
  }

  /* About Section */
  .about {
    padding: 20px;
    margin: 30px 10px;
    text-align: center;
  }

  .about h2 {
    font-size: 1.5rem;
  }

  .about p {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  /* 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); }

.navbar_toggle .bar { transition: all .3s ease; }
}

