 /* Fade-in + slide-up animation */
  @keyframes fadeSlideUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .fade-in {
    animation: fadeSlideUp 1s ease forwards;
  }

  /* Hover animation for list icons */
  .list-unstyled li i {
    transition: transform 0.3s ease, color 0.3s ease;
  }
  .list-unstyled li:hover i {
    transform: scale(1.3);
    color: var(--color-primary-light); /* matches your heading green */
  }


  /* Hover effect for cards */
  .hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .hover-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

    .step-circle {
    width: 60px;
    height: 60px;
  background-color: var(--color-primary);
    border-radius: 50%;
    color: #fff;
    font-weight: bold;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }

  .step-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }

  .step-card:hover .step-circle {
    background-color: var(--color-primary-hover); /* Darker green */
  }

  .feature-card {
    transition: all 0.3s ease-in-out;
    border-radius: 16px;
  }

  .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .feature-card:hover .icon i {
    color: var(--color-primary) !important;
    text-shadow: 0 0 10px rgba(112, 197, 21, 0.7);
  }




  /* final expense css */
  .hover-effect {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-effect:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}


.card .icon-circle i:hover{
color: var(--color-primary) !important;
    text-shadow: 0 0 10px rgba(112, 197, 21, 0.7);
    /* background-color: #70c515; */
}


.card:hover .icons i {
  color: var(--color-primary-dark); /* new color on hover */
  transition: color 0.3s ease;
}