  .rlogo {
    width: 80%;
}
.center{
        display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
        text-align: center;
}
/* Apply the animation to the .phone class */
/* Sakeup Animaton */
/* Define the zoom-in animation */
@keyframes sake-up-zoom {
    0% {
        transform: scale(1);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.phone {
    display: inline-flex;
    align-items: center;
    animation: sake-up-zoom 1s ease-in-out infinite; /* infinite loop for continuous animation */
    transition: transform 0.3s ease; /* Smooth transition on hover */
}

.phone i{
    font-size: 22px;
    transform: rotate(90deg);
}

/* Optional: Adding hover effect for zoom */
.phone:hover {
    transform: scale(1.1); /* Slight zoom on hover */

}
