        .gallery-item {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            margin-bottom: 16px;
        }
        .gallery-item img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease, opacity 0.5s ease;
        }
        .gallery-item .overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            opacity: 0;
            transition: all 0.5s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 24px;
            transform: translate(-50%, -50%) scale(0);
        }
        .gallery-item .overlay i {
            font-size: 24px;
            color: #333;
        }
        .gallery-item:hover img {
            transform: scale(1.1);
            opacity: 0.8;
        }
        .gallery-item:hover .overlay {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }
        .gallery {
            font-family: "Dosis", sans-serif;
            column-count: 4;
            column-gap: 16px;
        }
        @media (max-width: 1200px) {
            .gallery {
                column-count: 3;
            }
        }
        @media (max-width: 992px) {
            .gallery {
                column-count: 2;
            }
        }
        @media (max-width: 768px) {
            .gallery {
                column-count: 2;
            }
        }
