.lang-menu {
    position: relative;
    display: inline-block;
}

.flag-button {
    background: transparent;
    border: none;
    font-weight: bold;
    cursor: pointer;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-lang-list {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 4px;
    list-style: none;
    padding: 5px 0;
    margin: 0;
    width: 120px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

.dropdown-lang-list li a {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.dropdown-lang-list li a:hover {
    background-color: #f5f5f5;
}

.dropdown-lang-list img,
.flag-button img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 6px;
}


       .map-container {
            position: relative;
            width: 90%;
            max-width: 600px;
        }
        .map-container img {
            width: 100%;
            height: auto;
            display: block;
        }
        .location-marker {
            position: absolute;
            width: 10px;
            height: 10px;
            background-color: #ff4d4f;
            border-radius: 50%;
            cursor: pointer;
            transform: translate(-50%, -50%);
            transition: transform 0.3s;
        }
        .location-marker:hover::after,
        .location-marker:active::after {
            content: attr(data-region);
            position: absolute;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            background-color: rgba(0,0,0,0.8);
            color: #fff;
            padding: 4px 8px;
            border-radius: 4px;
            white-space: nowrap;
            font-size: 12px;
        }
        .location-marker:hover,
        .location-marker:active {
            transform: translate(-50%, -50%) scale(1.3);
        }
        
        .rotatings {
    animation: spin 30s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Video ikonunun əks istiqamətdə sabit qalması üçün əlavə CSS */
.rotatings .pop-up-video {
    animation: spin-reverse 30s linear infinite;
}

@keyframes spin-reverse {
    0% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.career-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #0077cc;
    
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,119,204,0.3);
    position: relative;
    overflow: hidden;
}

.career-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.career-btn:hover {
    background-color: #fff;
    box-shadow: 0 8px 20px rgba(0,95,163,0.4);
}

.career-btn:hover i {
    transform: rotate(-10deg) scale(1.2);
}