

/* Floating Contact Icons - Common Styles */
.fixed-social-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999; /* Ensures it's always on top */
}

.fixed-social-icon ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fixed-social-icon li {
    background: #007bff;
    color: white;
    margin: 5px 0;
    border-radius: 8px;
    padding: 12px 15px;
    text-align: center;
    width: 200px;
    transition: 0.3s;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}

.fixed-social-icon li:hover {
    transform: scale(1.05);
}

.fixed-social-icon a, .fixed-social-icon button {
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: bold;
    display: block;
}

.fixed-social-icon button {
    border: none;
    background: none;
    cursor: pointer;
    width: 100%;
}

/* WhatsApp Button */
.whatsapp-box {
    background: #25d366 !important;
}

.whatsapp-box:hover {
    background: #1ebf58 !important;
}

/* Call Now Button */
.callnow-box {
    background: #a4bfe5 !important;
}

.callnow-box:hover {
    background: #a4bfe5 !important;
}

/* Enquire Button */
.enquire-box {
    background: #297cbb !important;
}

.enquire-box:hover {
    background: #297cbb !important;
}

@media (max-width: 767px) {
    .fixed-social-icon li {
        width: 50px!important;
        padding: 10px;
    }
}

