
.icon-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 40px 20px;
    font-size: 1.2rem;
    cursor: pointer;
    width: 100px;
    height: 100px;
    transition: opacity 0.5s ease, transform 0.5s ease;  /* Transition for opacity and transform */
  }
  
  .icon-button i {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .icon-button .button-text {
    font-size: 1.1rem;
    text-align: center;
  }
  
   .button-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 50px;
  }
  .button-container button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    color: white;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
    opacity: 1; /* Start fully opaque */
  }
  
  .button-container button:hover {
    transform: scale(1.1);   /* Grow the button slightly on hover (10% larger) */
    box-shadow: 0 0 10px rgba(14, 97, 6, 0.63); /* Optional: Add a subtle shadow for effect */
  }