/* Globe Container Styles */
.globe-container {
    width: 500px;
    height: 500px;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    opacity: 0;
    animation-fill-mode: forwards;
}

#globe-canvas {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Responsive adjustments for the hero section with globe */
.hero-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.hero-content {
    max-width: 50%;
    z-index: 3;
    position: relative;
    margin-right: auto;
}

/* Media queries for responsive design */
@media (max-width: 1200px) {
    .globe-container {
        width: 400px;
        height: 400px;
        right: 2%;
    }
    
    .hero-content {
        max-width: 55%;
    }
}

@media (max-width: 992px) {
    .globe-container {
        width: 350px;
        height: 350px;
        position: relative;
        margin: 0 auto;
        top: 0;
        right: auto;
        transform: none;
        margin-top: 2rem;
    }
    
    .hero-section .container {
        flex-direction: column;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .globe-container {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 576px) {
    .globe-container {
        width: 250px;
        height: 250px;
    }
}
