.expanding-div {
width: 200px;
overflow: hidden;
max-height: 0; /* Initial max height */
transition: max-height 0.5s ease; /* Animation transition property */
border: 1px solid #ccc;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.expanding-div:hover {
max-height: 500px; /* Adjust the max height as needed */
}