.fixedIcons {
    position: fixed;
    z-index: 5;
    bottom: 15px;
    padding: 5px;
    background: #FFFCF1;
    border-radius: 50%;
    animation: pulse 2.25s infinite cubic-bezier(0.66, 0, 0, 1);
    box-shadow: 0 0 0 0 #29a71a;
    visibility: hidden; /* Initially hidden */
    opacity: 0; /* Smooth transition effect */
    transition: visibility 0s, opacity 0.5s ease-in-out; /* Added missing semicolon */

    img {
        width: 60px;
        padding: 5px;
    }
}

.fixedIcons.show {
    visibility: visible; /* Show when scrolled */
    opacity: 1; /* Smooth fade-in */
}

.fixedIcons.whatsapp {
    right: 15px;
}

.fixedIcons.phone {
    left: 15px;
    background: #122f27;

    img {
        filter: invert(1);
        padding: 10px;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 #29a71a;
    }
    70% {
        box-shadow: 0 0 15px 10px rgba(41, 167, 26, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(41, 167, 26, 0);
    }
}

@media (max-width: 1366px) {
    .fixedIcons img {
        width: 45px;
    }

    .fixedIcons.whatsapp {
        right: 10px;
    }

    .fixedIcons.phone {
        left: 10px;
    }
}

@media (max-width: 767px) {
    .fixedIcons,
    .fixedIcons.show {
        display: none; /* Completely hide on mobile */
    }
}