.floating-icons {
    position: fixed;
    right: 20px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-icons a {
    font-size: 24px;
    color: #fff;
    background-color: #25D366; /* Default to WhatsApp color */
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-icons a:nth-child(2) { 
    background-color: #007bff; /* Call button - Blue */
}

.floating-icons a:nth-child(3) { 
    background-color: #FF5733; /* Map button - Red */
}

.floating-icons a:hover {
    transform: scale(1.1);
}


.gallery-header{
    padding: 10px;
    padding-top: 0%;
    width: 100%;
margin-bottom: 10px;

}