
.floating-icons {
    position: fixed;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.floating-icons a:hover {
    transform: scale(1.1);
}


.bottom-right {
    bottom: 20px;
    right: 20px;
}

.bottom-right .phone-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #115c87;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.hotline {
    position: relative;
}

.hotline::after {
    content: attr(title);
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 7px;
    background-color: #115c87;
    color: #fff;
    padding: 2px 10px;
    border-radius: 10px;
    white-space: nowrap;
}


.top-left {
    top: 130px;
    left: 20px;
    animation: slideFromLeft 1s ease-out;
}

.top-left .icon-only {
    width: 55px;
    height: 55px;
     border-radius: 50%;
    background-color: #7CCBF8;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 0 0 rgba(124, 203, 248, 0.7);
    animation: pulse 1.5s infinite;
}


@keyframes slideFromLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(124, 203, 248, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(124, 203, 248, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(124, 203, 248, 0);
    }
}
