/* Zoom in section on hover */
.zoom-hover-section {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.zoom-hover-section:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.gray-box {
  border: 1px solid #ccc;
  
}