.sticky-button {
    position: fixed;
    bottom: 95px;
    right: 37px;
    background-color: #e50047;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 1000;
}

.sticky-button:hover {
    background-color: #ffffff;
    color: #e50047;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    /*background-color: #25d366;*/
    border-radius: 50%;
    padding: 10px;
    /*box-shadow: 0 4px 8px rgba(0,0,0,0.2);*/
    transition: transform 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
.whatsapp-float img {
    width: 50px;
    height: 50px;
}


.admission-float {
    position: fixed;
    bottom: 105px;
    left: 32px;
    z-index: 1000;
    background-color: #e50047;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    color: #ffffff;

    /* Flexbox for centering */
    display: flex;
    align-items: center;
    justify-content: center;
}

.admission-float:hover {
    transform: scale(1.1);
    background-color: #ffffff;
    color: #e50047;
    border: 1px solid #e50047;
}

.blinking-text {
    animation: blinkColor 1.5s infinite alternate;
}

@keyframes blinkColor {
    0% {
        color: #e50047;
    }
    100% {
        color: orange;
    }
}