/* Your existing CSS styles */
.popup-gallery {
    display: none; /* Initially hide the popup */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    z-index: 9999;
}

.popup-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    cursor: pointer;
    font-size: 24px;
}
/* Your existing CSS styles */

.social-icons {
    margin-top: 4px;
}

.social-icon {
    display: inline-block;
    margin: 0 10px;
    font-size: 20px;
    color: #333; /* Change color as needed */
}

.social-icon:hover {
    color: #007bff; /* Change color on hover as needed */
}
