
.btn-green {
  background-color: #00C77F;
  color: white;
  border: none;
  padding: 5px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

.arrows {
  padding-top: 5%;
  padding-left: 5px;
}

a {
  text-decoration: none;
}

.btn-green1 {
  background-color: #00C77F;
  color: white;
  border: none;
  padding: 9px 18px;
  border-radius: 20px;
  margin: 5%;
  font-size: 14px;
  font-weight: 500;
}

.btn-outline-green {
  background-color: transparent;
  color: white;
  border: 2px solid;
  border-image: linear-gradient(to right, #00C77F, #45CCFE) 1;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #00B000 !important;
}

/* Dropdown Menu Styling */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 25px;
  left: 0;
  display: none;
  background-color: #fff;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color:black !important;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  color: white !important;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Button Styling */
.contact-btn {
  font-size: 14px;
  padding: 10px 20px;
  background-color: transparent;
  color: white;
  font-weight: 500;
  border: 2px solid #00B000;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-btn:hover {
  background-color: #00B000;
  color: white;
}

/* Navbar Dropdown Styling */
.dropdown-menu {
  background-color: white;
  border-radius: 8px;
  border: 1px solid #ddd;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 5px !important;
  padding: 0;
  width: auto;
}

.dropdown-menu a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
}

.dropdown-menu a:hover {
  background-color: #00B000;
  color: white;
}

/* Navbar Toggler Icon Customization */
.navbar-toggler {
  border: none;
  padding: 5px 10px;
}

.navbar-toggler-icon {
  background-image: none;
  font-size: 20px;
  color: white;
}
.dropdown a:active{
  color: #00B000 !important;
}

/* Mobile Dropdown Behavior */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
  }

  .nav-item {
    text-align: center;
  }

  .navbar {
    margin-bottom: 10%;
  }

}

.icon-rotate {
  display: inline-block; /* Ensure the icon behaves as a block-level element for rotation */
  transition: transform 0.3s ease; /* Smooth rotation transition */
}

.dropdown:hover .icon-rotate {
  transform: rotate(180deg); /* Rotate the icon 90 degrees on hover */
}


