.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 15px;
    max-width: 1200px;
    width: 100%;
}
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    width: 100%;
}
.image-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-align: center;
}

.video-item iframe {
    width: 100%;
    height: 250px;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    max-height: 200px;
}

.image-item:hover {
    transform: scale(1.05);
}

.image-item img {
    width: 100%;
    height: 250px;
    display: block;
    border-radius: 12px 12px 0 0;
    object-fit: cover;
    max-height: 200px;
}

.gallery-video iframe {
    margin-bottom: 18px;
    border-radius: 10px;
}

@media (max-width:768px) {
    .image-item img {
        width: 100%;
        height: 120px;
        display: block;
        border-radius: 12px;
        object-fit: cover;
        max-height: 200px;
    }
}

.image-item h4 {
    margin: 10px 0 15px 0px;
    font-size: 1.1em;
    font-weight: 600;
    color: #333;

}

/* Responsive Heading */
@media (max-width: 600px) {
    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .image-item h4 {
        font-size: 1em;
    }
}