
.mainmenu ul#nav > li > a {
    color: #282982;
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    position: relative;
    padding: 34px 0;
}
            
            .header-logo-menu.stick .mainmenu ul#nav > li > a {
    color: #1f3971 !important;
}
.header-top {
    background: #282982 none repeat scroll 0 0;
    color: #ffffff;
    font-size: 13px;
    position: relative;
}


.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.album {
    margin: 10px;
    cursor: pointer;
    text-align: center; /* Align album name to center */
    transition: transform 0.3s ease; /* Preserve hover effect */
}

.album:hover {
    transform: scale(1.05);
}

.album img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Add suitable padding */
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    width: 200px; /* Add suitable shadow */
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
    overflow: auto;
}

.popup-content {
    position: relative;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}


.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

#popup-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: 50px;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
    padding: 10px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.hide-on-popup {
    display: none;
}

