#navbar-section .navbar {
  transition: top 0.3s;
  z-index: 1030;
}

#navbar-section .navbar-brand {
  font-size: 1.5rem;
}

#navbar-section .nav-link {
  margin-left: 1rem;
  transition: color 0.3s ease;
}

#navbar-section .nav-link:hover {
  color: #76b900; /* highlight green on hover */
}


.product-section {
  background-color: #f9ffe9;
}

.product-section .nav-tabs .nav-link {
  color: #333;
  font-weight: 500;
}

.product-section .nav-tabs .nav-link.active {
  border: none;
  border-bottom: 2px solid #6ba800;
  color: #6ba800;
  background-color: transparent;
}

.product-section .card {
  border-radius: 12px;
  transition: transform 0.2s ease;
}

.product-section .card:hover {
  transform: translateY(-5px);
}

.product-section .bg-light-green {
  background-color: #eeffd4;
}

.product-section .product-icon i {
  color: #4b8b00;
}
.product-card {
  transition: all 0.3s ease;
}


  .services-section .card {
    background-color: #f6ffe9;
    transition: transform 0.3s ease;
  }

  .services-section .card:hover {
    transform: translateY(-5px);
  }

  .services-section .icon-circle {
    width: 60px;
    height: 60px;
    background-color: #6ba800;
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
  }

  .services-section h2 {
    color: #1c1c1c;
  }

  .services-section h5 {
    color: #1c1c1c;
  }

  .services-section p {
    color: #333;
  }


  .about-section {
    background-color: #f9ffe9;
  }

  .about-section .bi {
    font-size: 1.5rem;
  }

  .about-section h2,
  .about-section h5,
  .about-section h6 {
    color: #1e3a1e;
  }

  .about-section small {
    font-size: 0.875rem;
  }

  .about-section .shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.05) !important;
  }

  .about-section .shadow {
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.05) !important;
  }

  .bg-light-green {
    background-color: #f9ffe9;
  }

  /* CSS */
#contact-section {
  font-family: 'Segoe UI', sans-serif;
}
#contact-section .contact-box {
  background-color: #f3ffdc;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 30px;
}
#contact-section .btn-success {
  background-color: #5caa1e;
  border: none;
}
#contact-section .btn-success:hover {
  background-color: #4a9e1a;
}


#footer-section {
  background-color: #1f2937; /* dark background */
  color: #ffffff;
}

#footer-section a {
  transition: color 0.3s ease;
}

#footer-section a:hover {
  color: #9acd32; /* light green on hover */
}

#footer-section .form-control {
  border: none;
  border-radius: 0.25rem;
}

#footer-section .btn-success {
  background-color: #5caa1e;
  border: none;
}

#footer-section .btn-success:hover {
  background-color: #4a9e1a;
}

