 
    .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        background: white;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .gallery-item:hover {
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }
    
    /* Modal Styles */
    .image-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        z-index: 1000;
        display: none;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    .modal-content {
        position: relative;
        max-width: 90%;
        max-height: 90%;
        background: white;
        border-radius: 15px;
        padding: 20px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
        transform: scale(1);
        transition: transform 0.3s ease;
    }
    .modal-image {
        width: 100%;
        height: auto;
        max-height: 70vh;
        object-fit: contain;
        border-radius: 10px;
    }
    .modal-close {
        position: absolute;
        top: -15px;
        right: -15px;
        width: 40px;
        height: 40px;
        background: #ff4757;
        color: white;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        box-shadow: 0 5px 15px rgba(255, 71, 87, 0.4);
        transition: all 0.3s ease;
    }
    .modal-close:hover {
        background: #ff3742;
        transform: scale(1.1);
    }
    .modal-caption {
        text-align: center;
        margin-top: 15px;
    }
    .modal-caption h3 {
        font-size: 24px;
        font-weight: bold;
        color: #2B2C9C;
        margin-bottom: 8px;
    }
    .modal-caption p {
        color: #666;
        font-size: 16px;
    }
 