.world-map-section {
    position: relative;
    margin-top: 140px;
}

.world-map-content {
    align-items: inherit;
}

.world-map-text {
    max-width: 450px;
    margin-right: 200px;
    margin-top: 10px;
}

.top-title {
    position: absolute;
    top: calc(0% - 80px);
    font-size: 36px;
    color: #000;
    z-index: 10;
}

.world-map-text h3 {
    font-size: 1.7rem;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 15px;
}

.world-map-text p {
    font-size: 1.1rem;
    line-height: 1.4;
}

.careers-section {
    margin-top: 120px;
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 17px;
    margin-bottom: 40px;
}

.job-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.job-card {
    background: linear-gradient(203deg, #57B03C -34.32%, #1A83B9 65.14%);
    color: #000;
    border-radius: 12px;
    padding: 24px;
    height: 300px;
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.2s ease;
}

.job-card:hover {
    transform: translateY(-4px);
    cursor: pointer;
}

.job-card img {
    color: #fff;
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
}

.job-card span {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.card-arrow {
    width: 35px !important;
    height: 35px !important;
    position: absolute;
    padding: 10px;
    bottom: 6px;
    right: 16px;
    background-color: white;
    border-radius: 50px;
}

.process-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100px;
    font-size: 13px;
    color: #000;
}

.process-step img {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
}

.flow-arrow {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

@media screen and (max-width: 768px) {
    .job-grid {
        grid-template-columns: repeat(2, 1fr);
        /* mobil: 2 sütun */
        gap: 16px;
        /* mobilde biraz daha az boşluk */
    }
}

.dots::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 92vh;
    z-index: -1;
    pointer-events: none;
    background-image: radial-gradient(circle, #ccc 1px, transparent 1px);
    background-size: 10px 10px;
    background-repeat: repeat;
    background-position: 0 0;
}