/* Popup container - hidden by default */
        .chat-popup {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }
        .chat-button {
            width: 60px;
            height: 60px;
            background-color: #FF1212; /* Saffron color */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s;
            color: white;
            font-size: 36px; /* Large size for < character */
            font-weight: bold;
            text-align: center;
        }
        .chat-button:hover {
            transform: scale(1.1);
        }
        .chat-menu {
            display: none;
            position: absolute;
            bottom: 80px;
            right: 0;
            background-color: #fff;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            text-align: center;
            width: 200px;
        }
        .chat-menu.active {
            display: block;
        }
        .chat-menu a {
            display: block;
            padding: 10px;
            background-color: #FF1212; /* Saffron color */
            color: white;
            text-decoration: none;
            border-radius: 5px;
            margin: 5px 0;
            transition: background-color 0.3s;
        }
        .chat-menu a:hover {
            background-color: #960505; /* Darker saffron for hover */
        }
        .chat-menu p {
            margin: 0 0 10px 0;
            color: #333;
            font-size: 16px;
        }
        .close-button {
            position: absolute;
            top: 5px;
            right: 5px;
            background: none;
            border: none;
            font-size: 16px;
            cursor: pointer;
            color: #333;
        }
   