      .kontakwa {
            position: fixed;
            left: 10px;
            bottom: 10px;
            z-index: 9999;
            opacity: 80%;
            width: 8em;
        }
    
        .kontakwa a {
            color: white;
            font-size: 20px;
            font-weight: 700;
            text-align: left;
        }
    
        .kontakwa:hover {
            width: 15%;
            height: 13%;
        }
    
         /* mdlll styles */
         #mdlll {
            display: none;
            position: fixed;
            left: 10px;
            bottom: 10px;
            z-index: 9999;
            width: 15em;
            animation-fill-mode: forwards;
        }
    
        .mdlll-content {
            background: #ffffff;
            border-radius: 10px;
            padding: 20px;
            width: 90%;
            max-width: 400px;
            position: relative;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transform: scale(0.8);
            opacity: 0;
            animation: mdlllIn 0.3s ease-out forwards;
        }
    
        /* clssss button */
        .mdlll-content .clssss {
            position: absolute;
            top: 10px;
            right: 10px;
            cursor: pointer;
            width: 20px;
            height: 20px;
        }
    
        .mdlll-content .clssss:hover path {
            stroke: #444;
        }
    
        .mdlll-content img {
            width: 100px;
            height: 100px;
            margin-bottom: 15px;
        }
    
        .mdlll-content p {
            margin: 10px 0;
            font-size: 16px;
        }
    
        .mdlll-content button {
            font-size: 10px ;
            background: purple;
            color: #fff;
            border: none;
            border-radius: 10px;
            padding: 8px 40px;
            cursor: pointer;
        }
    
        /* Animations */
        @keyframes mdlllIn {
            from {
                transform: scale(0.8);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }
    
        @keyframes mdlllOut {
            from {
                transform: translateY(0);
                opacity: 1;
            }
            to {
                transform: translateY(100px);
                opacity: 0;
            }
        }