.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0; /* Initially hidden */
    visibility: hidden; /* Prevent interactions when hidden */
    transition: opacity 0.5s ease, visibility 0.5s ease;
}



.overlay.visible {
    opacity: 1; /* Fade in */
    visibility: visible;
}

.overlay-content {
    color: #fff;
    text-align: center;
    font-size: 1rem;
    transition: transform 0.3s ease;
    transform: scale(0.9); /* Slightly smaller initially */
    transform: translate(0%, 10%);
}

.overlay.visible .overlay-content {
    transform: scale(1); /* Scale up smoothly */
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    color: #fff;
    border: 2px solid #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px 10px;
    transition: background 0.3s ease, color 0.3s ease;
}

.close-btn:hover {
    background: #fff;
    color: #000;
}


.help_us{
    text-align: left;
}


.help_us a{
    text-decoration: none;
}

.link_image{
    height: 25px;
    margin-bottom: -5px;
}


@media (max-width: 1000px) {
    
    .help_us{
        font-size: 1rem !important;
        padding: 50px;

    }

    .link_image{
        height: 18px;
    }


}

@media (max-width: 440px){




}