﻿/* ===== Floating Social Bar ===== */
.floating-social-bar {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
    animation: fadeSlideIn 1s ease forwards;
}

    /* Social Icon Style */
    .floating-social-bar .social-icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 22px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
        transition: all 0.3s ease;
        transform: scale(1);
    }

        /* Hover Effects */
        .floating-social-bar .social-icon:hover {
            transform: scale(1.15) rotate(10deg);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }

/* Different Colors for Each Icon */
.facebook {
    background: linear-gradient(135deg, #3b5998, #4c70ba);
}

.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.call {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

/* Animation for appearance */
@keyframes fadeSlideIn {
    from {
        opacity: 0;
        right: -80px;
    }

    to {
        opacity: 1;
        right: 20px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-social-bar {
        right: 10px;
        gap: 12px;
    }

        .floating-social-bar .social-icon {
            width: 45px;
            height: 45px;
            font-size: 20px;
        }
}
