


        /* Floating WhatsApp Button */
        .whatsapp-float {
            position: fixed;
			bottom: 8em;
			right: 2.5em;
            width: 60px;
            height: 60px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            z-index: 999;
            animation: pulse 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-float svg {
            width: 32px;
            height: 32px;
            fill: white;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.2);
            }
            100% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            }
        }

        /* Chat Dialog */
        .chat-dialog {
            position: fixed;
            bottom: 90px;
            right: 20px;
            width: 320px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.9);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
            overflow: hidden;
        }

        .chat-dialog.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        /* Header */
        .chat-header {
            background: linear-gradient(135deg, #128C7E 0%, #25d366 100%);
            color: white;
            padding: 20px;
            position: relative;
        }

        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            opacity: 0.8;
            transition: opacity 0.2s;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-btn:hover {
            opacity: 1;
        }

        .agent-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .agent-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color:#23ca69;
            position: relative;
        }

        .online-indicator {
            position: absolute;
            bottom: 0px;
            right: 1px;
            width: 12px;
            height: 12px;
     	    background: #63ea69;
  	    border: 2px solid #18a377;
            border-radius: 50%;
        }

        .agent-details h3 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 2px;
            color: #fff;
            font-family: tinos;
            letter-spacing: 0.6px;
        }

        .agent-details p {
            font-size: 14px;
            opacity: 0.9;
        }

        .agent-details p {
            font-size: 14px;
            opacity: 0.9;
			text-decoration: underline;
			letter-spacing: 0.6px;
        }
        /* Chat Content */
        .chat-content {
            padding: 20px;
            background: #f8f9fa;
        }

        .timestamp {
            text-align: center;
            color: #999;
            font-size: 12px;
            margin-bottom: 15px;
        }

        .message {
            background: white;
            padding: 12px 16px;
            border-radius: 18px 18px 18px 4px;
            margin-bottom: 12px;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
            position: relative;
            animation: messageSlide 0.3s ease;
        }

        @keyframes messageSlide {
            from {
                opacity: 0;
                transform: translateX(-10px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .message p {
            margin: 0;
            line-height: 1.4;
            color: #333;
        }

        .message:first-of-type p:first-child {
            margin-bottom: 8px;
        }

        /* Action Buttons */
        .action-buttons {
            padding: 20px;
            background: white;
            border-top: 1px solid #eee;
        }

        .whatsapp-btn {
            width: 100%;
            background: #25d366;
            color: white;
            border: none;
            padding: 14px 20px;
            border-radius: 25px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.2s ease;
            box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
        }

        .whatsapp-btn:hover {
            background: #128C7E;
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
        }

        .whatsapp-btn:active {
            transform: translateY(0);
        }

        .whatsapp-btn svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .footer-text {
            text-align: center;
            margin-top: 15px;
            font-size: 12px;
            color: #999;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .chat-dialog {
                width: calc(100vw - 40px);
                right: 20px;
                bottom: 90px;
            }
        }

        /* Demo Content */
        .demo-content {
            text-align: center;
            color: white;
            padding: 40px 20px;
        }

        .demo-content h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            opacity: 0.9;
        }

        .demo-content p {
            font-size: 1.2rem;
            opacity: 0.8;
        }