/* Custom CSS for Project Gallery Lightbox Integration */

.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.project-gallery a {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.project-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.project-gallery a:hover img {
    transform: scale(1.05);
}

.gallery__icon {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    background: rgba(0,0,0,0.5);
    padding: 5px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-gallery a:hover .gallery__icon {
    opacity: 1;
}
/* Custom CSS for Project Gallery Lightbox Integration end */
