/* Index Page Zoom Styles */
/* Product Image Zoom Effect */
.meeting-item {
    position: relative;
    overflow: hidden;
}

.meeting-item .thumb {
    position: relative;
    overflow: hidden;
}

.meeting-item .thumb img {
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.meeting-item .thumb:hover img {
    transform: scale(1.2);
    z-index: 10;
}

/* Zoom cursor for all images */
.meeting-item .thumb img:hover {
    cursor: zoom-in;
}

/* Product card hover effects */
.meeting-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

/* Ensure zoom works on mobile */
@media (max-width: 768px) {
    .meeting-item .thumb:hover img {
        transform: scale(1.1);
    }
}
