/*** Nav Bar ***/

.navbar.bg-dark {
    background: linear-gradient(90deg, #004d40, #004d40) !important; /* Bootstrap blue to cyan gradient */
  }

  .navbar .nav-link,
  .navbar .navbar-brand span {
    color: #f8f9fa !important; /* Light text */
  }

  .navbar .nav-link:hover,
  .navbar .navbar-brand:hover {
    color: #d85011 !important;
    text-shadow: 0 0 5px rgba(255,255,255,0.6);
  }

  .navbar .dropdown-menu {
    background-color: #f8f9fa;
  }

  .navbar .dropdown-item {
    color: #212529;
  }

  .navbar .dropdown-item:hover {
    background-color: #e2e6ea;
    color: #0d6efd;
  }

  .donate-btn {
    background-color: #107003;
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 30px;
    margin-left: 15px;
    transition: 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
  }

  .donate-btn:hover {
    background-color: #0bbbe6;
    color: #fff !important;
    text-decoration: none;
  }

  .icon-circle {
    background-color: #fff;
    color: #0dcaf0;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
  }

  .icon-circle i {
    font-size: 12px;
  }

/*** Floating Button ***/

.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fab-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  text-decoration: none;
}

.fab-btn:hover {
  transform: scale(1.1);
}

/***Donate Button ***/
.donate-btn {
    color: #fff;
    border: 2px solid #fff;
    padding: 0.6rem 1.2rem;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 50px;
    text-decoration: none;
  }

  .donate-btn .icon-circle {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    width: 32px;
    height: 32px;
    margin-left: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .donate-btn:hover {
    color: #fd7e14;
    border-color: #fd7e14;
    background-color: transparent;
  }

  .donate-btn:hover .icon-circle {
    border-color: #fd7e14;
    color: #fd7e14;
  }


/*** Footer ***/
.footer-link {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #04aa1a !important;
  padding-left: 5px;
  text-decoration: underline;
}

.social-icon {
  background-color: #222;
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  font-size: 16px;
  transition: background-color 0.3s, transform 0.3s;
  text-decoration: none;
}

.social-icon:hover {
  background-color: #00cba9;
  color: #04aa1a !important;
  transform: scale(1.2);
}