/* Our Team Page Specific Styles */
.team-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-card .uk-card-media-top {
    overflow: hidden;
    height: 250px;
}

.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover img {
    transform: scale(1.05);
}

.team-social a {
    color: var(--dark-color);
    margin-right: 15px;
    transition: color 0.3s ease;
}

.team-social a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* World map styling */
#world-map {
    position: relative;
    border-radius: 4px;
}

.location-marker {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--accent-color);
    border-radius: 50%;
    border: 2px solid white;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.location-marker::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: rgba(255, 193, 7, 0.4);
    border-radius: 50%;
    top: -6px;
    left: -6px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(0.8);
        opacity: 0;
    }
}

/* Counter animation */
.counter {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 960px) {
    .team-card .uk-card-media-top {
        height: 200px;
    }
}

@media (max-width: 640px) {
    #world-map {
        height: 300px;
    }
}