/* Scoped Structural Framework */
        .map-body-wrapper {
            background-color: #ffffff;
            color: #1f2937;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        .map-body-wrapper * {
            box-sizing: border-box;
        }

        /* Scoped Intro Layout */
        .map-header {
            padding: 5rem 1rem 2rem 1rem;
            text-align: center;
            max-width: 36rem;
            width: 100%;
        }
        .map-header-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(to right, #2563eb, #059669);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .map-header-desc {
            color: #4b5563;
            font-size: 1.125rem;
            line-height: 1.6;
            margin: 0;
        }
        .map-scroll-hint {
            margin-top: 2rem;
            color: #059669;
            font-size: 0.875rem;
            animation: map-bounce-effect 2s infinite;
        }
        @keyframes map-bounce-effect {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-8px); }
            60% { transform: translateY(-4px); }
        }

        /* Scoped Centered Workspace Area */
        .map-main-stage {
           /* max-width: 64rem;*/
            width: 100%;
            padding: 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            flex-grow: 1;
        }

        /* Map Structure & Interaction Canvas */
        .map-graphic-container {
            position: relative;
            width: 100%;
            background-color: transparent;
            padding: 0;
            border-radius: 0;
            border: none;
            box-shadow: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s ease;
        }
        .map-graphic-container.map-is-visible {
            opacity: 1;
            visibility: visible;
        }
        .map-base-asset {
            width: 100%;
            height: auto;
            display: block;
            user-select: none;
        }

        /* Interactive Pins Coordinates (Percentages aligned with indicators on the new graphic) */
        .map-hotspot-pin {
            position: absolute;
            transform: translate(-50%, -50%);
            cursor: pointer;
            z-index: 10;
            width: 2.2rem;
            height: 2.2rem;
        }
        .map-pin-nepal { top: 58%; left: 69.5%; }
        .map-pin-laos { top: 62.5%; left: 75.5%; }

        /* Transparent Multi-ring Waves */
        .map-radar-pulse {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            border-radius: 50%;
            pointer-events: none;
        }
        .map-pulse-alpha { animation: map-ping-keyframe 2s cubic-bezier(0, 0, 0.2, 1) infinite; }
        .map-pulse-beta { animation: map-ping-keyframe 2s cubic-bezier(0, 0, 0.2, 1) infinite; animation-delay: 0.6s; }
        
        .map-pin-nepal .map-radar-pulse { border: 2px solid rgba(220, 38, 38, 0.6); }
        .map-pin-laos .map-radar-pulse { border: 2px solid rgba(20, 184, 166, 0.6); }

        @keyframes map-ping-keyframe {
            0% { transform: scale(1); opacity: 1; }
            70% { transform: scale(2.2); opacity: 0; }
            100% { transform: scale(2.2); opacity: 0; }
        }

        /* Completely Transparent Core Anchor Rings */
        .map-core-ring {
            height: 100%;
            width: 100%;
            border-radius: 50%;
            background: transparent;
            box-shadow: inset 0 0 0 2px #ffffff;
            transition: transform 0.3s ease;
        }
        .map-pin-nepal .map-core-ring { border: 3px solid #dc2626; }
        .map-pin-laos .map-core-ring { border: 3px solid #14b8a6; }

        .map-hotspot-pin:hover .map-core-ring {
            transform: scale(1.2);
        }

        /* Desktop Informational Popups (Hover Contexts) */
        .map-popup-modal {
            position: absolute;
            bottom: 140%;
            left: 20%;
            transform: translate(-50%, -0.5rem) scale(0.95);
            width: 18rem;
            background-color: #1e293b;
            padding: 1.25rem;
            border-radius: 0.75rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
            text-align: left;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 30;
        }
        /* Geometric pointer arrow */
        .map-popup-modal::after {
            content: '';
            position: absolute;
            bottom: -0.4rem;
            left: 30%;
            transform: translateX(-50%) rotate(45deg);
            width: 0.8rem;
            height: 0.8rem;
            background-color: #1e293b;
        }
        .map-pin-nepal .map-popup-modal { border-bottom: 4px solid #dc2626; }
        .map-pin-laos .map-popup-modal { border-bottom: 4px solid #14b8a6; }

        /* Desktop Layout Rules */
        @media (min-width: 768px) {
            .map-hotspot-pin:hover .map-popup-modal {
                opacity: 1;
                pointer-events: auto;
                transform: translate(-50%, -0.5rem) scale(1);
            }
            .map-mobile-only { display: none; }
            .map-desktop-only { display: inline; }
        }

        /* Inner Modal Typography */
        .map-country-badge {
            font-size: 24px;
			color:#727989;
            font-weight: 600;
            text-transform: none;
            letter-spacing: 0.05em;
            display: block;
        }
        .map-pin-nepal .map-country-badge { color: #f87171; }
        .map-pin-laos .map-country-badge { color: #2dd4bf; }

        .map-popup-modal h3 {
            font-size: 28px;
            font-weight: 700;
            color: #1f1f1f;
            margin: 0.25rem 0 0.5rem 0;
        }
        .map-popup-modal p {
            font-size: 20px;
            color: #3e3e3e;
            line-height: 1.5;
            margin: 0;
        }

        /* Mobile Layout Adjustments (< 768px) */
        .map-mobile-drawer {
            width: 100%;
            margin-top: 2rem;
            display: none;
        }
        .map-mobile-card {
            display: none;
            background-color: #1e293b;
            padding: 1.25rem;
            border-radius: 0.75rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            text-align: left;
        }
        .map-mobile-card.map-is-active {
            display: none;
        }
        #map-data-nepal-mobile { border-left: 5px solid #dc2626; }
        #map-data-laos-mobile { border-left: 5px solid #14b8a6; }
        
        .map-mobile-card h3 { font-size: 20px; font-weight: 700; color: #ffffff; margin: 0.25rem 0 0.5rem 0; }
        .map-mobile-card p { font-size:18px; color: #e2e8f0; line-height: 1.6; margin: 0; }

        @media (max-width: 767px) {
            .map-popup-modal { display: none; }
            .map-mobile-only { display: inline; color: #b45309; font-weight: 600; }
            .map-desktop-only { display: none; }
			.map-mobile-card.map-is-active {display: block;}
        }

        /* Meta Bottom Info */
        .map-footer {
            padding: 3rem 0;
            font-size: 0.75rem;
            color: #9ca3af;
            text-align: center;
            width: 100%;
        }
		
		@media screen and (min-width: 767px) {
    /* 1. Force the popup modals to remain visible */
    .map-hotspot-pin .map-popup-modal {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        
        /* 2. Position them stably next to the pins */
        position: absolute;
        /*top: 50%;*/
        transform: translateY(-50%);
        margin-top: 0; /* Reset any existing hover offsets */
        
        /* Smooth transitions if needed */
        transition: none !important; 
    }

    /* 3. Shift Nepal's popup to the right side of the pin */
    .map-pin-nepal .map-popup-modal {
        left: 40px; /* Adjust spacing away from the circle */
		top:-300px;
        right: auto;
    }

    /* 4. Shift Lao PDR's popup to the left side of the pin (to prevent clipping off-screen) */
    .map-pin-laos .map-popup-modal {
        right: -240px; /* Adjust spacing away from the circle */
        left: auto;
    }
}

/* Changes the flex direction from row to column to stack the icon over the number */
    .service-three-counter {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Style rule to control your icon sizing and spacing */
    .counter-icon {
        width: 40px;          /* Adjust the icon width as needed */
        height: auto;         /* Maintains aspect ratio */
        margin-bottom: 10px;  /* Space between the icon and the number below it */
    }
    
    /* Ensures the "+" symbol remains aligned inline with the numbers when stacked */
    .service-three-counter {
        flex-wrap: wrap;
    }
    .service-three-counter .counter-text {
        display: inline-block;
    }