/* Gallery Container */
.mynewgallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
    gap: 20px;
    margin: 40px auto;
}

/* Gallery Item Card */
.mynewgallery-item {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.mynewgallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Image Styling */
.mynewgallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Title */
.mynewgallery-item h5 {
    text-align: center;
    padding: 10px;
    font-size: 1rem;
    margin: 0;
}

/* Button */
.mynewgallery-item .btn-view {
    display: block;
    width: 80%;
    margin: 10px auto 15px;
    text-align: center;
    padding: 8px;
    background: #007bff;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
}

.mynewgallery-item .btn-view:hover {
    background: #0056b3;
}
