.section-ai-marketplace {
    background: var(--color-primary-green);
    padding: 0 64px;

    display: flex;
    align-items: center;
    height: 804px;
    /*height: 100dvh;*/
    /*background: blue;*/

    overflow-x: hidden;
}

.section-ai-marketplace .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    height: 100%;
}

.section-ai-marketplace .intro {
    max-width: 640px;
}

.hiring-buttons {
    width: fit-content;
    display: flex;
    flex-direction: row;
    background-color: #BFE6BF;
    padding: 4px;
    border-radius: var(--button-border-radius);
    border: none;
}

.hiring-buttons-inactive {
    color: #121417;
}

.hiring-buttons-icon {
    padding: 4px;
}

.hiring-button {
    font-family: var(--font-button-family),sans-serif;
    font-size: var(--font-button-size);
    font-weight: var(--font-button-weight);
    padding: 0 8px;
    border-radius: var(--button-border-radius);
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 28px;
}

.heading-bold-text {
    padding-top: 36px;
    font-family: var(--font-display-family), system-ui, sans-serif;
    font-weight: 800;
    font-size: 64px;
    line-height: 1.2;
    margin-bottom: -10px; /* reduce space below */
}

.heading-text {
    font-family: var(--font-display-family), system-ui, sans-serif;
    font-weight: 300;
    font-size: 64px;
    line-height: 1.2;
}

.subheading {
    width: 489px;
    font-size: 1.3rem;
    line-height: 1.5;
    color: #121417;
    opacity: 0.75;
    padding-bottom: 64px;
}

.section-ai-marketplace .search-form {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: var(--button-border-radius);
    max-width: 392px;
    padding: 4px 4px 4px 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.section-ai-marketplace .search-form .search-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-ai-marketplace .search-form .search-icon img {
    width: 16px;
    height: 16px;
    opacity: 0.6;
}

.section-ai-marketplace .search-form input {
    flex: 1;
    padding: 8px;
    font-size: 1rem;
    border: none;
    outline: none;
    background: transparent;
    color: #121417;
}

.section-ai-marketplace .search-form button {
    background-color: #121417;
    color: white;
    border: none;
    padding: 8px 16px;
    font-size: 0.95rem;
    border-radius: var(--button-border-radius);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.section-ai-marketplace .search-form button:hover {
    background-color: #1f1f1f;
}



.globe-wrapper {
    /*position: relative;*/
    /*width: 100%;*/
    /*height: 500px;*/
    /*overflow: hidden;*/
    position: absolute; /* or absolute if inside a known parent */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none; /* optional: lets clicks pass through */
    overflow: hidden;
    /*z-index: -1; !* keeps it behind content *!*/
}

.globe-container {
    position: absolute;
    top: 72px;
    right: -360px;
    width: 874px;
    height: auto;
}

.rotating-globe {
    width: 874px;
    transform-style: preserve-3d;
    animation: rotateGlobe 20s linear infinite;
}

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

.profile-card {
    position: absolute;
    background-color: white;
    border-radius: 8px;
    padding: 12px;
    width: 220px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.profile-card.mel {
    top: 80px;
    left: 120px;
}

.profile-card.daniel {
    bottom: 60px;
    right: 100px;
}

/*.section-ai-marketplace .globe {*/
/*    position: relative;*/
/*    width: 100%;*/
/*    height: 420px; !* adjust based on your design *!*/
/*    overflow: hidden; !* this is what cuts the globe *!*/
/*}*/

/*.section-ai-marketplace .globe img {*/
/*    position: absolute;*/
/*    top: 72px;*/
/*    right: -360px; !* pushes it outside the right edge *!*/
/*    width: 874px; !* or whatever size you need *!*/
/*}*/

/*.profile-card {*/
/*    position: absolute;*/
/*    background: white;*/
/*    padding: 20px;*/
/*    border-radius: 8px;*/
/*    box-shadow: 0 4px 12px rgba(0,0,0,0.1);*/
/*    width: 220px;*/
/*}*/

/*.profile-card.mel {*/
/*    top: 20%;*/
/*    left: -60px;*/
/*}*/

/*.profile-card.daniel {*/
/*    bottom: 10%;*/
/*    right: -60px;*/
/*}*/
