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