Banjo
/* ======================================== Hover Zoom Effect on images Adds smooth zoom and shadow on hover ======================================== */ .hover-zoom img { display : block; /* Ensure block layout */ width : 160px; /* Fixed image width */ height : auto; /* Maintain aspect ratio */ transition : transform 0.5s ease, box-shadow 0.5s ease; /* Smooth hover effects */ border-radius : 4px; /* Rounded corners */ } .hover-zoom:hover img { transform : scale(1.1); /* Slight zoom on hover */ box-shadow : 0 4px 12px rgba(0,0,0,0.25); z-index : 5; /* Layer above others */ } /* ======================================== Accordion Button Styles Controls appearance of DETAILS button ======================================== */ .accordion-button { width : 100%; /* Full width button */ text-align