.ctc-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ctc-whatsapp-button, .ctc-call-button {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.ctc-whatsapp-button:hover, .ctc-call-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.ctc-whatsapp-button img, .ctc-call-button img {
    width: 30px;
    height: 30px;
}
.ctc-whatsapp-button svg,
.ctc-call-button svg {
    width: 25px;
    height: 25px;
    fill: white; /* Icon color set to white */
}