
        /* Overlay background */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        /* Popup box */
        .popup-box {
            background: #94DEE2;
            border-radius: 10px;
            padding: 20px;
            width: 300px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            text-align: center;
            position: relative;
            transition: all 0.5s ease; /* Smooth transition for movement */
        }

        /* Close button */
        .popup-close {
            position: absolute;
            top: 10px;
            right: 10px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            font-style:bold;
            color: #e91d1d;
        }

        /* Image inside the popup */
        .popup-box img {
            max-width: 80%;
            height: auto;
            border-radius: 10px;
        }

        /* Subscribe Now button inside the popup */
        .subscribe-button {
            background-color: #711db2;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
        }

        .subscribe-button:hover {
            background-color: #0056b3;
        }

        /* Minimized popup state */
        .popup-box.minimized {
            bottom: 10px;
            right: 10px;
            position: fixed;
            width: auto;
            padding: 5px;
            border-radius: 100px;
            z-index: 500; /* Lower z-index to avoid blocking other content */
            display: flex;
            justify-content: center;
             font-size: 14px;
            align-items: center;
            background: rgba(226, 89, 25, 0.5);

        }

        /* Hidden elements in minimized state */
        .popup-box.minimized img,
        .popup-box.minimized h2,
        .popup-box.minimized p,
        .popup-box.minimized .popup-close {
            display: none;
        }

        /* Overlay hidden when minimized */
        .popup-overlay.hidden {
            display: none;
        }

        /* Floating Action Button (FAB) */
        .floating-action-button {
            position: fixed;
            bottom: 20px;
            right: 60px;
            background-color: #711db2; /* Pink color */
            color: white;
            border: none;
            padding: 5px 10px;
            border-radius: 50px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            font-size: 14px;
            z-index: 1000;
            display: none; /* Initially hidden */
        }

        .floating-action-button:hover {
            background-color: #e91e63;
        }

        .floating-action-button i {
            margin-right: 5px; /* Add spacing between the icon and text */
        }