/* Globe Animation */
.globe-animation {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe {
    position: relative;
    width: 300px;
    height: 300px;
}


.globe-outer-ring {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    border: 2px solid rgba(var(--accent-rgb), 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.globe-inner-ring {
    position: absolute;
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    border: 2px solid rgba(var(--accent-rgb), 0.15);
    border-radius: 50%;
    animation: rotate 15s linear infinite reverse;
}

.connection-dots {
    position: absolute;
    width: 100%;
    height: 100%;
}

.dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.5);
}

.dot:nth-child(1) {
    top: 20%;
    left: 20%;
    animation: pulse 2s ease-in-out infinite;
}

.dot:nth-child(2) {
    top: 60%;
    right: 30%;
    animation: pulse 2s ease-in-out infinite 0.5s;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Theme-specific styles */
:root[data-theme="dark"] .hero {
    color: var(--secondary-color);
}

:root[data-theme="light"] .hero {
    color: var(--primary-color);
}


@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        margin: 0 auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .globe-animation {
        height: 400px;
    }

    .globe {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 576px) {

    .globe-animation {
        height: 300px;
    }

    .globe {
        width: 200px;
        height: 200px;
    }
}

/* Button Styles */
/* .cta-button {
    padding: 1rem 2rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
} */


.partners-section {
    padding: 4rem 0;
    background-color: var(--background);
    overflow: hidden;
}

.partners-wrapper {
    display: flex;
    overflow: hidden;
}

.partners-grid {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 50px;
    animation: marquee 18s linear infinite;
    flex-shrink: 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .partners-wrapper {
        flex-direction: column;
    }
    
    .partners-grid {
        flex-direction: column;
        animation: marquee-vertical 18s linear infinite;
    }
    
    @keyframes marquee-vertical {
        0% {
            transform: translateY(0);
        }
        100% {
            transform: translateY(-100%);
        }
    }
}

.partner-logo {
    flex: 0 0 auto;
    width: 10rem;
    height: 10rem;
    overflow: hidden;
    border-radius: 50%;
    /* margin: 2%; */
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: var(--secondary-color);
    border-radius: 50%;
    padding: 5%;
    border: 1px solid var(--text-color);
    transition: transform 0.3s ease;
}

.partner-logo img:hover {
    transform: scale(1.05);
}

