          
          
          /* ===== FOR LOGIN SCREEN ===== */
          /* ===== TOP MARQUEE (Alert / Info) ===== */
       
            /* ===== BLUE BANNER ===== */
            .top-banner {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                background: #3498db;
                color: #fff;
                padding: 8px 0;
                font-family: Arial;
                font-size: 14px;
                z-index: 9999;
                overflow: hidden;
                white-space: nowrap;
                display: flex;
                align-items: center;
            }

            .bottom-banner {
                position: fixed;
                bottom: 0;
                left: 0;
                width: 100%;
                background: #3498db;
                color: #fff;
                padding: 8px 0;
                font-family: Arial;
                font-size: 14px;
                z-index: 9999;
                overflow: hidden;
                white-space: nowrap;
                display: flex;
                align-items: center;
            }

            #bottomBanner, #topBanner {
                transition: background 0.3s ease;
            }

            /* Better text contrast for yellow */
            .warning-text {
                color: #000;
            }



            /* ===== SPEAKER IMAGE ===== */
            .speaker-wrap {
                position: relative;
                display: flex;
                align-items: center;
                margin: 0 12px;
            }

            .speaker-img {
                width: 46px;
                height: 46px;
                object-fit: contain;
            }

            /* ===== WAVES ===== */
            .wave {
                border: 2px solid #fff;
                box-shadow: 0 0 8px #fff;
            }

            /* Wave positions (right side of image) */
            .w1 {
                width: 18px;
                height: 18px;
                left: 28px;
                top: 6px;
                animation: waveAnim 1.5s infinite;
            }

            .w2 {
                width: 26px;
                height: 26px;
                left: 28px;
                top: 2px;
                animation: waveAnim 1.5s infinite 0.3s;
            }

            .w3 {
                width: 34px;
                height: 34px;
                left: 28px;
                top: -2px;
                animation: waveAnim 1.5s infinite 0.6s;
            }

            /* Animation */
            @keyframes waveAnim {
                0% {
                    transform: scale(0.6);
                    opacity: 0.8;
                }
                100% {
                    transform: scale(1.4);
                    opacity: 0;
                }
            }

            /* ===== MARQUEE TEXT ===== */
            .marquee-container {
                overflow: hidden;
                flex: 1;              /* take remaining space */
                position: relative;
            }

            #bannerText {
                display: inline-block;
                padding-left: 100%;
                animation: marquee 12s linear infinite;
            }

            @keyframes marquee {
            from { transform: translateX(0); }
            to   { transform: translateX(-100%); }
        }

            /* Pause on hover */
            .top-banner:hover #bannerText,
            .top-banner:hover .wave {
                animation-play-state: paused;
            }


            .bottom-banner:hover #bannerText,
            .bottom-banner:hover .wave {
                animation-play-state: paused;
            }
        /* ===== CENTER PATCH (Warning / Error) ===== */
        .center-patch {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }

        .patch-box {
            width: 380px;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            font-family: Arial;
            color: #000;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        }

        /* Colors */
        .patch-warning {
            background: #f1c40f; /* Yellow */
        }

        .patch-error {
            background: #e74c3c; /* Red */
            color: #fff;
        }

        .patch-box button {
            margin-top: 10px;
            padding: 6px 12px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }




        /* ===== FOR LICENCE EXPIRED SCREEN ===== */


        /*
        body {
            margin: 0;
            padding: 0;
            background: #f4f6f8;
            font-family: Arial;
        }*/

        .container {
            height: 100vh;
            display: table;
            width: 100%;
        }

        .center-box {
            display: table-cell;
            vertical-align: middle;
            text-align: center;
        }

        .card {
            width: 420px;
            margin: auto;
            background: #ffffff;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            padding: 30px;
        }

        .icon {
            font-size: 50px;
            color: #e74c3c;
            margin-bottom: 15px;
        }

        .title {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
        }

        .message {
            font-size: 14px;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .contact {
            font-size: 13px;
            margin-bottom: 20px;
            color: #555;
        }

        .btn {
            padding: 10px 20px;
            border: none;
            background: #e74c3c;
            color: #fff;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
        }

        .btn:hover {
            background: #c0392b;
        }


        .btnHome {
            padding: 10px 20px;
            border: none;
            background: #3498db; /* Blue */
            color: #fff;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
        }

        .btnHome:hover {
            background: #2980b9; /* Darker blue on hover */
        }

        .footer {
            margin-top: 15px;
            font-size: 11px;
            color: #999;
        }
                
        /* Background overlay */
        .popup {
            display: none;
            position: fixed;
            z-index: 999;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
        }

        /* Centered modal box */
        .popup-content {
            background: #ffffff;
            position: relative;
            width: 400px;
            max-width: 90%;
            margin: auto;
            margin-top: 8%;
            padding: 25px 30px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            animation: fadeIn 0.3s ease-in-out;
            font-family: 'Segoe UI', sans-serif;
        }

        /* Heading */
        .popup-content h3 {
            margin-top: 0;
            color: #2c3e50;
            text-align: center;
        }

        /* Steps text */
        .popup-content p {
            font-size: 14px;
            color: #555;
            line-height: 1.7;
        }

        /* Contact section */
        .contact {
            margin-top: 15px;
            padding-top: 10px;
            border-top: 1px solid #eee;
            text-align: center;
            font-size: 14px;
        }

        /* Links */
        .contact-link {
            color: #3498db;
            text-decoration: none;
            font-weight: 500;
        }

        .contact-link:hover {
            color: #2980b9;
            text-decoration: underline;
        }

        /* Close button */
        .close {
            position: absolute;
            top: 12px;
            right: 15px;
            font-size: 22px;
            font-weight: bold;
            color: #555;
            cursor: pointer;
            z-index: 1000;
        }

        .close:hover {
            color: #e74c3c; /* red on hover */
        }

        a {
            color: #3498db;
        }

        a:hover {
            color: #2980b9;
        } 

        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }