@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

body {
    font-family: 'Inter', system_ui, sans-serif;
}

.logo-font {
    font-family: 'Space Grotesk', sans-serif;
}

.hero-bg {
    background: linear-gradient(135deg, #0F172A 0%, #1E2937 100%);
}

.nav-link {
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #0A84FF;
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.nav-link.active {
    color: #60A5FA;
}

.nav-link.active:after {
    width: 100%;
}

.profile-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 70%;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    padding: 8px;
    /* box-shadow: 0 25px 50px -12px rgba(21, 105, 188, 0.5); */
    z-index: 2;
}


.profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.floating-circle {
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

/* Hero text styles */
.hero-title {
    font-size: 3rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.hero-title .highlight {
    color: #60A5FA;
}

.hero-subtitle {
    font-size: 3rem;
    line-height: 0.2;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: #60A5FA;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-description {
    color: #D1D5DB;
    font-size: 1.125rem;
    line-height: 1.75;
    max-width: 28rem;
}

/* Badge styles */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 2.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}


.hero-dot {
    width: 8px;
    height: 8px;
    background-color: #FBBFCE;
    border-radius: 50%;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 2.25rem;
    }
}
/* Spinning Languages Orbit */
.orbit-wrapper {
    position: relative;
    width: 600px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-container {
    position: absolute;
    inset: 0;
    animation: containerSpin 20s linear infinite;
    z-index: 1;
}

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

.orbit-badge {
    position: absolute;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    top: 50%;
    left: 50%;
    margin-left: -1.25rem;
    margin-top: -1.25rem;
    transition: filter 0.2s ease;
}

.orbit-badge:hover {
    filter: brightness(1.1);
}

/* Position each badge in circular orbit with equal spacing */
.badge-1 {
    transform: translateY(-245px);
}

.badge-2 {
    transform: rotate(60deg) translateY(-245px);
}

.badge-3 {
    transform: rotate(120deg) translateY(-245px);
}

.badge-4 {
    transform: rotate(180deg) translateY(-245px);
}

.badge-5 {
    transform: rotate(240deg) translateY(-245px);
}

.badge-6 {
    transform: rotate(300deg) translateY(-245px);
}

@media (max-width: 767px) {
    .orbit-wrapper {
        width: 460px;
        height: 460px;
    }

    .profile-circle {
        width: 320px;
        height: 320px;
    }

    .badge-1 {
        transform: translateY(-200px);
    }

    .badge-2 {
        transform: rotate(60deg) translateY(-200px);
    }

    .badge-3 {
        transform: rotate(120deg) translateY(-200px);
    }

    .badge-4 {
        transform: rotate(180deg) translateY(-200px);
    }

    .badge-5 {
        transform: rotate(240deg) translateY(-200px);
    }

    .badge-6 {
        transform: rotate(300deg) translateY(-200px);
    }
}

.left{
   margin-bottom: 70px; 
}