
.floating-contact {
  position: fixed;
    right: 28px;
    bottom: 88px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

/* Common Button Style */
.float-btn {
    width: 58px;
    height: 58px;
    background: #002261;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    text-decoration: none;
    font-size: 26px;

    box-shadow: 0 6px 15px rgba(0,0,0,0.2);

    transition: 0.3s ease;
}
.whatsapp{
	background-color: #0cab1a;
}

.float-btn:hover {
    transform: scale(1.08);
}

/* Call Section */
.call-wrapper {
    display: flex;
    align-items: center;
    text-decoration: none;
}
 

.call {
    position: relative;
    z-index: 2;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .call-text {
        font-size: 14px;
        padding: 10px 14px;
    }
}