/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 18 2025 | 13:21:09 */
        .floating-contact-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 9999;
            background: var(--e-global-color-primary, #1e3a8a); /* Uses Elementor primary color (dark blue fallback) */
            color: #ffffff; /* White text for good contrast against dark blue */
            padding: 16px 24px;
            border-radius: 50px;
            text-decoration: none;
            font-family: 'Exo', var(--e-global-typography-primary-font-family, sans-serif); /* Exo font with fallbacks */
            font-weight: 600;
            font-size: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        /* Hover animation - subtle lift and glow */
        .floating-contact-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
            filter: brightness(1.1);
        }

        /* Active state */
        .floating-contact-btn:active {
            transform: translateY(-1px) scale(1.02);
        }

        /* Optional: Add a subtle pulse animation to draw attention */
        @keyframes gentle-pulse {
            0%, 100% { 
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); 
            }
            50% { 
                box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25); 
            }
        }

        /* Uncomment this class if you want the pulse animation */
        /*
        .floating-contact-btn.pulse {
            animation: gentle-pulse 3s ease-in-out infinite;
        }
        */

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .floating-contact-btn {
                bottom: 20px;
                right: 20px;
                padding: 14px 20px;
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            .floating-contact-btn {
                bottom: 15px;
                right: 15px;
                padding: 12px 18px;
                font-size: 14px;
            }
        }