    .gallery-container {
        background: #fff;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    .gallery-item {
        margin-bottom: 30px;
        cursor: pointer;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        position: relative;
    }
    .gallery-item::after {
        content: '\f00e'; /* fa-search-plus */
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        color: #fff;
        font-size: 30px;
        z-index: 2;
        transition: transform 0.3s ease;
        opacity: 0;
    }
    .gallery-item::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(32, 101, 209, 0.4);
        z-index: 1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    }
    .gallery-item:hover::before {
        opacity: 1;
    }
    .gallery-item:hover::after {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    .gallery-item img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .gallery-item:hover img {
        transform: scale(1.1);
    }
    
    /* Lightbox Modal */
    #lightboxModal .modal-content {
        background: transparent;
        border: none;
        box-shadow: none;
    }
    #lightboxModal .modal-body {
        padding: 0;
        text-align: center;
        position: relative;
    }
    #lightboxImage {
        max-width: 100%;
        max-height: 85vh;
        border-radius: 12px;
        box-shadow: 0 15px 50px rgba(0,0,0,0.5);
    }
    #lightboxModal .close {
        color: #fff;
        opacity: 0.8;
        font-size: 40px;
        position: absolute;
        top: -40px;
        right: 0;
        text-shadow: 0 2px 5px rgba(0,0,0,0.5);
        z-index: 1050;
    }
    #lightboxModal .close:hover {
        opacity: 1;
    }
