body {
    font-family: 'Poppins', sans-serif;
    background-color: #0f172a;
    color: #e2e8f0;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.globe-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Lower z-index to stay behind content */
    overflow: hidden;
}

.globe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 0 60px rgba(99, 102, 241, 0.1);
    animation: rotate 60s linear infinite;
}

.globe-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    border: 1px solid rgba(99, 102, 241, 0.15);
    animation: rotate 40s linear infinite reverse;
}

.globe-inner-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(99, 102, 241, 0.1);
    animation: rotate 30s linear infinite;
}

.dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: rgba(99, 102, 241, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.8);
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1e293b;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 50; /* Higher than header */
    border-radius: 0.5rem;
    overflow: hidden;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.btn-glow {
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.8);
}

.form-container {
    backdrop-filter: blur(10px);
    background-color: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(99, 102, 241, 0.2);
    position: relative;
    z-index: 5; /* Above background, below header */
}

.content-wrapper {
    flex: 1;
    position: relative;
    z-index: 5; /* Above background, below header */
    padding-bottom: 1px !important;
    padding-top: 1px !important;
}


/* Ensure header stays on top */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40; /* Higher than content but lower than dropdowns */
}

/* Footer z-index */
.footer {
    position: relative;
    z-index: 10; /* Above background, below header */
}
