/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/


/* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }

        .whatsapp-button {
            display: flex;
            align-items: center;
            background: #25D366;
            color: white !important;
            text-decoration: none;
            padding: 12px 24px;
            border-radius: 50px;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            font-size: 16px;
            font-weight: 500;
        }
        a.whatsapp-button:visited{
            color:#fff;
        }

        span.whatsapp-button{
            color:#fff !important;
        }
        
        .whatsapp-button:hover {
            background: #20BA5A;
            box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
            transform: translateY(-2px);
        }

        .whatsapp-button:active {
            transform: translateY(0);
        }

        .whatsapp-icon {
            width: 28px;
            height: 28px;
            margin-right: 10px;
            fill: white;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .whatsapp-float {
                bottom: 20px;
                right: 20px;
            }

            .whatsapp-button {
                padding: 10px 20px;
                font-size: 14px;
            }

            .whatsapp-icon {
                width: 24px;
                height: 24px;
                margin-right: 8px;
            }
        }
 
        /* Optional: Hide text on very small screens, show only icon */
        @media (max-width: 400px) {
            .whatsapp-text {
                display: none;
            }

            .whatsapp-button {
                padding: 14px;
                border-radius: 50%;
                width: 56px;
                height: 56px;
                justify-content: center;
            }

            .whatsapp-icon {
                margin-right: 0;
                width: 28px;
                height: 28px;
            }
        }


