/* Gallery Layout */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Individual Gallery Item */
.gallery-item {
    text-align: center;
}

/* Image Styling */
.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* Caption */
.gallery-item p {
    margin-top: 8px;
    font-size: 16px;
    color: #444;
}
