        opacity: 1;
        }

        50% {
            transform: scale(2.2);
            opacity: 0;
        }

        100% {
            transform: scale(1);
            opacity: 0;
        }
        }

        @keyframes mapMarkerGlow {

            0%,
            100% {
                box-shadow: 0 0 15px rgba(255, 215, 0, 0.9), 0 0 30px rgba(255, 165, 0, 0.5);
            }

            50% {
                box-shadow: 0 0 25px rgba(255, 215, 0, 1), 0 0 50px rgba(255, 165, 0, 0.8);
            }
        }

        /* Map Markers - Larger Size */
        .map-marker {
            position: absolute;
            width: 16px;
            height: 16px;
            background: linear-gradient(135deg, #FFD700, #FFA500);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 0 18px rgba(255, 215, 0, 1);
            animation: mapMarkerGlow 2s ease-in-out infinite;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .map-marker:hover {
            width: 20px;
            height: 20px;
            transform: translate(-50%, -50%) scale(1.2);
        }

        .map-marker::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 32px;
            height: 32px;
            background-color: rgba(255, 215, 0, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            animation: mapPulse 2.5s infinite ease-out;
        }

        /* HQ Marker (Kenya) - Extra Large */
        .map-marker.hq {
            width: 20px;
            height: 20px;
            background: linear-gradient(135deg, #FF6B00, #FFD700);
            z-index: 11;
            box-shadow: 0 0 25px rgba(255, 107, 0, 1), 0 0 45px rgba(255, 215, 0, 0.9);
        }

        .map-marker.hq::before {
            width: 45px;
            height: 45px;
            background-color: rgba(255, 107, 0, 0.3);
        }

        .map-marker.hq::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 60px;
            height: 60px;
            background-color: rgba(255, 215, 0, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            animation: mapPulse 3s infinite ease-out;
        }

        /* Tooltips */
        .map-tooltip {
            position: absolute;
            bottom: 22px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.92);
            backdrop-filter: blur(12px);
            color: #FFD700;
            padding: 9px 16px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
            border: 1px solid rgba(255, 215, 0, 0.3);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }

        .map-tooltip::before {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-top: 6px solid rgba(0, 0, 0, 0.92);
        }

        .map-marker:hover .map-tooltip {
            opacity: 1;
            visibility: visible;
            bottom: 28px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .world-map-container {
                padding: 25px 15px;
                margin: 0 auto 2rem;
            }

            .world-map-inner {
                padding-bottom: 75%;
                min-height: 350px;
            }

            .map-marker {
                width: 18px;
                height: 18px;
            }

            .map-marker.hq {
                width: 22px;
                height: 22px;
            }

            .map-tooltip {
                font-size: 12px;
                padding: 7px 12px;
            }
        }

        @media (max-width: 480px) {
            .world-map-inner {
                padding-bottom: 95%;
                min-height: 300px;
            }

            .map-marker {
                width: 20px;
                height: 20px;
            }

            .map-marker.hq {
                width: 24px;
                height: 24px;
            }
        }