     /* Base Styling for both buttons */
        .float-btn {
            position: fixed;
            bottom: 30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 26px;
            z-index: 1000;
            text-decoration: none;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* --- CALL BUTTON (Left) --- */
        .call-btn-circular {
            left: 30px;
            background-color: #1e3a8a; /* Professional Royal Blue */
            border: 2px solid rgba(255,255,255,0.1);
        }

        .call-btn-circular:hover {
            background-color: #1e40af;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 12px 25px rgba(30, 58, 138, 0.4);
        }

        /* --- WHATSAPP BUTTON (Right) --- */
        .whatsapp-btn-circular {
            right: 30px;
						bottom: 130px;
            background-color: #25d366; /* WhatsApp Green */
        }

        .whatsapp-btn-circular:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
        }

        /* Continuous subtle pulse only for WhatsApp to grab attention */
        .whatsapp-btn-circular::after {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background-color: inherit;
            z-index: -1;
            animation: pulse-ring 2s infinite;
        }

        @keyframes pulse-ring {
            0% { transform: scale(0.9); opacity: 0.8; }
            100% { transform: scale(1.5); opacity: 0; }
        }

        /* Shake animation for Call Button (Every 5 seconds to look professional) */
        @keyframes shake {
            0%, 100% { transform: rotate(0deg); }
            10%, 30%, 50% { transform: rotate(-10deg); }
            20%, 40% { transform: rotate(10deg); }
        }

        .call-btn-circular i {
            animation: shake 4s infinite;
        }

        /* Mobile View Adjustments */
        @media (max-width: 768px) {
            .float-btn {
                width: 55px;
                height: 55px;
                bottom: 20px;
            }
            .call-btn-circular { left: 20px; }
            .whatsapp-btn-circular { right: 20px; }
        }