.floating-buttons{
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn{
    width: 75px;
    height: 75px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    font-family: Arial, sans-serif;
    box-shadow: 0 6px 20px rgba(0,0,0,0.20);
    transition: all 0.3s ease;
    text-align: center;
}

.float-btn i{
    font-size: 24px;
    margin-bottom: 5px;
}

.float-btn:hover{
    transform: translateX(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.30);
}

/* Enroll Button */
.enroll-btn{
    background: #ff7a00;
}

/* WhatsApp Button */
.whatsapp-btn{
    background: #25D366;
}

/* Call Button */
.call-btn{
    background: #022178;
}

/* Enquire Button */
.enquire-btn{
    background: #ff7a00;
}

/* Mobile View */
@media (max-width: 768px){

    .floating-buttons{
        right: 10px;
        gap: 8px;
    }

    .float-btn{
        width: 60px;
        height: 60px;
        font-size: 10px;
        border-radius: 15px;
    }

    .float-btn i{
        font-size: 18px;
        margin-bottom: 3px;
    }
}

/* Small Mobile */
@media (max-width: 480px){

    .float-btn{
        width: 55px;
        height: 55px;
        font-size: 9px;
    }

    .float-btn i{
        font-size: 16px;
    }
}