.tray {
    position: fixed;
    left: 10px;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 28px 120px rgba(0, 0, 0, .28);

    overflow: hidden;
}


.glow {
    position: absolute;
    inset: -18px;
    background: linear-gradient(90deg, #153e9b, #0f2f77);
    filter: blur(16px);
    opacity: .95;
    pointer-events: none;
}

.item,
.itemBtn {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    gap: 0;

    padding: 5px 5px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, 0.08);
    color: #fff;
    text-decoration: none;
    cursor: pointer;

    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

@media (hover: hover) and (pointer: fine) {

    .tray:hover .item,
    .tray:hover .itemBtn {
        gap: 8px;
    }

    .tray:hover .lbl {
        max-width: 90px;
        opacity: 1;
    }
}

.itemBtn {
    appearance: none;
    outline: none;
}

.item:hover,
.itemBtn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .16);
}

.ico {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .10);
}

.cb {
    position: relative;
    display: grid;
    place-items: center;
}

.centerIcon {
    position: relative;
    z-index: 2;
    /* width: 24px;
height: 24px; */
    border-radius: 50%;
    /* background: #25D366; */
    display: grid;
    place-items: center;
    color: #FFFFFF;
    /* box-shadow: 0 0 12px rgba(37, 211, 102, 0.6); */
}

@media (hover: hover) and (pointer: fine) {

    .tray:hover .item,
    .tray:hover .itemBtn {
        gap: 8px;
    }

    .tray:hover .lbl {
        max-width: 90px;
        opacity: 1;
    }
}

/* ===== Modal ===== */
.modalDownload {
    width: calc(100% - 36px);
    margin: 0px auto;
    border: 0;
    border-radius: 10px;
    padding: 14px 14px;
    font-weight: 900;
    color: #0f172a;
    background: linear-gradient(90deg, rgba(255, 204, 102, .95), rgba(255, 204, 102, .75));
    box-shadow: 0 18px 40px rgba(255, 204, 102, .18);
    cursor: pointer;
}

#eligibilityModal.modalOverlay2 {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
    background: rgba(8, 16, 34, 0.65);
}

/* #eligibilityModal .downloadModal{
  display: block;
} */
#eligibilityModal .modal2 {
    /* position: relative; */
    width: 100%;
    max-width: 720px;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    scrollbar-width: thin;
    background: #ffffff;
    border-radius: 10px;
    padding: 32px 28px 26px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
    animation: modalFade 0.25s ease;
}
.modalOverlay2 .modal2::-webkit-scrollbar {
    width: 6px;
}

.modalOverlay2 .modal2::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.35);
    border-radius: 10px;
}

.modalOverlay2 .modal2::-webkit-scrollbar-track {
    background: transparent;
}

#eligibilityModal .close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, .12);
    background: rgba(255, 255, 255, .95);
    color: #111827;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    z-index: 50;
}

#eligibilityModal .close:hover {
    background: #e8edf5;
}

#eligibilityModal .modalTitle {
    margin: 0 ;
    font-size: clamp(1.35rem, 2vw, 1.7rem);
    font-weight: 800;
    color: #111827;
    text-align: start;
}

#eligibilityModal .modalForm {
    width: 100%;
}

#eligibilityModal .formMock {
    background: radial-gradient(1200px 500px at 0% 0%, rgba(0, 255, 209, 0.12), transparent 60%), radial-gradient(900px 500px at 100% 0%, rgba(0, 163, 255, 0.18), transparent 55%), linear-gradient(rgb(0, 26, 35), rgb(0, 41, 53));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: rgba(0, 0, 0, 0.45) 0px 22px 70px;
    width: 100%;
    border-radius: 8px;
}

@keyframes modalFade {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 576px) {
    #eligibilityModal .modal {
        padding: 26px 18px 20px;
        border-radius: 18px;
    }

    #eligibilityModal .close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
    }
}