.popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            max-width: 500px;
            padding: 20px;
            background: #fff;
            border: 2px solid #4CAF50;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            background-image: linear-gradient(to right bottom, #FF671F, #FFFFFF, #046A38);
        }
        .popup h1{
            color:#000080;
        }
        /*.popup h1 {
    font-size: 1.25em; /* Adjust the size as needed */
    /*font-weight: bold;
    background: linear-gradient(to right, #FF671F, #FFFFFF, #046A38);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* Ensures text color is transparent so background gradient is visible 
    
    
}*/

        .popup p {
            font-size: 18px;
            color: #333;
        }
        .popup button {
            margin-top: 20px;
            padding: 10px 20px;
            background: #4CAF50;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
        }
        .popup button:hover {
            background: #45a049;
        }
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }
        .popup img {
            max-width: 75%;
            height: auto;
            border-radius: 5px;
        }