.navbar-nav .nav-link:not(.donate-highlight):hover {
  color: #dc5c00 !important;
}
.navbar-nav .dropdown-menu {
  border-radius: 0.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.text-orange {
  color: #fd7e14 !important;
}
.text-dark {
  color: #000 !important;
}
.navbar-nav .nav-link {
  font-size: 0.9rem; /* Increase font size */
  padding: 8px 16px; /* Add spacing between items */
  color: #000; /* Default black color */
  transition: color 0.3s ease;
}

.navbar-nav .nav-link.text-orange {
  color: #fd7e14 !important; /* Active item in orange */
}

.navbar-nav .dropdown-menu .dropdown-item {
  font-size: 1rem;
  padding: 8px 16px;
}
.nav-item {
  margin-right: 12px !important;
}
.donate-highlight {
  background: linear-gradient(135deg, #fd7e14, #8c837c);
  color: white !important;
  font-weight: 600;
  border-radius: 6px;
  padding: 10px 20px;
  margin-left: 10px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(253, 126, 20, 0.3);
  display: inline-block;
}

.donate-highlight:hover {
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 10px 24px rgba(253, 126, 20, 0.5);
}

#feedbackBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1050;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff7e5f, #83b23a);
  border: none;
  color: #fff;
  font-size: 26px;
  overflow: hidden;
}
/* Animations applied */
.animate-btn {
  animation: bounceIn 1s ease, float 3s ease-in-out infinite, pulse 2s infinite;
  border-radius: 50%; /* smoother round */
  position: relative;
}

/* Shine / highlight overlay */
.shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: shineAnim 3s infinite;
  border-radius: 50%;
}

/* Hover effect */
#feedbackBtn:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 0 25px rgba(255, 126, 95, 0.8);
}

/* Bounce animation (entry) */
@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

/* Floating effect */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Pulse glow */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 126, 95, 0.6);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 126, 95, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 126, 95, 0);
  }
}

/* Shine animation */
@keyframes shineAnim {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
