/* Style for the gallery section */
        .gallery-section {
            text-align: center;
        }
        .tabs {
            margin-bottom: 20px;
        }
        .tabs button {
            padding: 10px 20px;
            margin-right: 10px;
            cursor: pointer;
            background-color: #f0f0f0;
            border: none;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        .tabs button.active {
            background-color: #007bff;
            color: white;
        }
        .gallery {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        .gallery div {
            display: flex; /* Initially hidden, handled via JS */
/*            margin: 10px;*/
width:100%;
        }
        /*.gallery img {
            width: 250px;
            height: 200px;
            object-fit: cover;
            border-radius: 5px;
        }*/

@media only screen and (max-width: 991px){ 
    .gallery div{
display: flex;
margin: 0px;


    }
}