/* =====================
   BUTTON STYLES
   ===================== */
.btn-orange {
  background-color: #124f37;
  color: white;
  border: none;
  height: 48px;
  border-radius: 3px;
  padding: 0 47px !important;
  transition: 0.3s ease;
}

.btn-orange:hover {
  color: white;
  background-color: #000;
}

/* =====================
   ICON CONTAINER STYLES
   ===================== */
/* ICON BASE */
.icon {
  width: 70px;
  height: 70px;
  border: 2px solid #0b8260;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* ICON COLOR */
.icon span {
  color: #0b8260;
  font-size: 24px;
  z-index: 2;
  position: relative;
  transition: color 0.3s ease;
}

/* BACKGROUND ANIMATION */
.icon::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #09664b;
  border-radius: 50%;
  transition: top 0.5s ease;
  z-index: 1;
}

/* FIX HOVER COLOR ISSUE */
.icon:hover::before {
  top: 0;
  animation: liquid-fill 1s infinite ease-in-out;
}

.icon:hover span {
  color: #fff !important;
  animation: bounceIcon 1s infinite ease-in-out;
}

.icon:hover {
  box-shadow: 0 0 15px rgba(11, 130, 96, 0.242);
}

/* =====================
   HOVER EFFECT
   ===================== */
.icon:hover::before {
  top: 0;
  animation: liquid-fill;
}

/* HOVER SPIN */
.icon:hover span {
  animation: spinIcon 0.3s ease-in-out;
  color: #0b8260; /* stays green while spinning */
}

/* =====================
   ANIMATIONS
   ===================== */
@keyframes liquid-fill {
  0% {
    transform: translateY(10%);
  }
  50% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}

@keyframes spinIcon {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* =====================
   DBOX CONTAINER STYLES
   ===================== */
