#globe_container {
    position: absolute;
    right: 0;
    width: 50%;
    height: 100vh;
    padding-top: 200px;
    overflow: hidden;
    display: flex;
    justify-content: left;
    align-items: center;


}

/* Globe default (large screens like TV/desktop) */
#globe {
    width: 100%;
    height: 100%;
    display: block;
}

/* --- Responsive Breakpoints --- */

/* Extra large screens (Smart TV / 4K) */
@media (min-width: 1600px) {
    #globe {
        width: 100%;
        height: 100%;
    }
}

/* Desktop (Full HD / Laptop large) */
@media (max-width: 1599px) and (min-width: 1200px) {
    #globe {
        width: 900px;
        height: 900px;
    }
}

/* Laptop / Small Desktop */
@media (max-width: 1199px) and (min-width: 992px) {


    #globe {
        width: 700px;
        height: 700px;
    }
}

/* Tablet */
@media (max-width: 991px) and (min-width: 768px) {
    #globe_container {
        width: 100%;
        height: 100vh!important;
        display: flex!important;
        justify-content: center!important;
        align-items: start!important;
        padding-top: 100px;
        top: 0;

    }
    #globe {
        width: 100%;
        height: 60vh!important;

    }
    .hero-content {
        height: 100vh;
        display: flex;
        align-items: end;
        padding-bottom: 40px;

        text-align: center;

    }

    .blur-top {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 80%;

        backdrop-filter: blur(1.5px);
        -webkit-backdrop-filter: blur(1.5px);

        /* fade out the blur towards the bottom */
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-size: 100% 100%;
        mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
        mask-repeat: no-repeat;
        mask-size: 100% 100%;

        z-index: -1 !important;
    }

}

/* Mobile Phones */
@media (max-width: 767px) {
    #globe_container {
        width: 100%;
        height: 100vh!important;
        display: flex!important;
        justify-content: center!important;
        align-items: start!important;
        padding-top: 100px;
        top: 0;


    }
    #globe {
        width: 100%;
        height: 80vh!important;


    }

    .hero-content {
        height: 100vh;
        display: flex;
        align-items: end;
        padding-bottom: 20px;

    }

    .blur-top {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 80%;

        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);

        /* fade out the blur towards the bottom */
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-size: 100% 100%;
        mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
        mask-repeat: no-repeat;
        mask-size: 100% 100%;

        z-index: -1 !important;
    }
}

/* Very Small Phones */
@media (max-width: 400px) {
    #globe {
        width: 100%;
        height: 100vh!important;
    }
}
#tooltip {
    position: fixed;
    padding: 6px 10px;
    background: rgba(0,0,0,.7);
    color: #ffffff;
    font: 12px/1.2 system-ui, sans-serif;
    border-radius: 8px;
    pointer-events: none;
    transform: translate(-50%, -140%);
    opacity: 0;
    transition: opacity .15s ease;
    z-index: 10;
}
@media (max-width: 991px) {
    #globe {
        height: 300px;
        margin-top: 2rem;
    }
}
