.popup {
            position: fixed;
            width: 50px;
            height: 50px;
            bottom: 260px;
            right: 22px;
            background: linear-gradient(135deg, #00d4ff, #0099ff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 99999;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
        }

        .popup:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
        }

        .popup i {
            color: white;
            font-size: 28px;
        }

        /* Popup Modal */
        .popup-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 99998;
            animation: fadeIn 0.3s ease;
        }

        .popup-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        /* Popup Content - Left Aligned */
        .popup-content {
            position: relative;
            background: white;
            width: 90%;
            max-width: 450px;
            margin-left: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            animation: slideInLeft 0.4s ease;
        }

        /* Popup Header */
        .popup-header {
            background: linear-gradient(135deg, #00d4ff, #0099ff);
            padding: 10px 10px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .popup-header-content {
            display: flex;
            align-items: center;
            gap: 15px;
            flex: 1;
        }

        .popup-header i {
            font-size: 32px;
            color: white;
        }

        .popup-header h2 {
            color: white;
            font-size: 24px;
            margin: 0;
        }

        .close-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        /* Popup Body */
        .popup-body {
            padding: 25px;
            max-height: 70vh;
            overflow-y: auto;
        }

        .popup-body p {
            color: #333;
            line-height: 1.8;
            font-size: 15px;
            margin-bottom: 15px;
            text-align: justify;
        }

        .popup-body p:last-child {
            margin-bottom: 0;
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideInLeft {
            from {
                transform: translateX(-100px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        /* Scrollbar Styling */
        .popup-body::-webkit-scrollbar {
            width: 6px;
        }

        .popup-body::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .popup-body::-webkit-scrollbar-thumb {
            background: #00d4ff;
            border-radius: 10px;
        }

        .popup-body::-webkit-scrollbar-thumb:hover {
            background: #0099ff;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .popup-content {
                width: 95%;
                max-width: 100%;
                margin-left: 10px;
            }

            .popup-header h2 {
                font-size: 20px;
            }

            .popup-body {
                padding: 20px;
                max-height: 80vh;
            }
        }