  /* Custom CSS for the pulse effect */
        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7); /* Tailwind blue-500 with opacity */
            }
            50% { /* Peak of the pulse */
                transform: scale(1.05);
                box-shadow: 0 0 0 20px rgba(59, 130, 246, 0); /* Larger fading out shadow */
            }
            100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
            }
        }
		
		.pulse-button {
            animation: pulse 2s infinite; /* Apply the animation infinitely */
            background-color: #F7931E; /* bg-blue-600 */
            color: #ffffff; /* text-white */
            font-weight: 700; /* font-bold */
            padding: 0.75rem 1.5rem; /* py-3 px-6 */
            border-radius: 10px; /* rounded-full */
            transition: all 0.3s ease-in-out; /* transition-all duration-300 ease-in-out */
            outline: none; /* focus:outline-none */
            text-align: center; /* text-center */
            text-decoration: none; /* no-underline */
            display: inline-block; /* inline-block */
        }

        .pulse-button:hover {
            background-color: #0ba9be; /* hover:bg-blue-700 */
			color:#fff;
			text-decoration:none !important
        }

        .pulse-button:focus {
            box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5); /* focus:ring-2 focus:ring-blue-500 focus:ring-opacity-50 */
        }