﻿#world-map {
    margin: 0px 0 40px 0px;
}

    #world-map .svg-icon, #world-map .pin-img {
        width: 20px;
        height: 22px;
        position: relative;
        z-index: 111;
    }

    /*#world-map .circle-ripple {
        background-color: #ff9b9b;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        left: 4px;
        bottom: 10px;
        z-index: 0;
    }*/

        /*#world-map .circle-ripple:before {
            position: absolute;
            content: "";
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            border: solid 2px red;
            border-radius: 50%;
            animation: ripple 2s linear infinite;
        }

        #world-map .circle-ripple:after {
            position: absolute;
            content: "";
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            border: solid 2px red;
            border-radius: 50%;
            animation: ripple 2s 1s linear infinite;
        }

@keyframes ripple {
    to {
        transform: scale(3);
        opacity: 0;
    }
}*/

#world-map .svg-icon path, #world-map .svg-icon polygon, #world-map .svg-icon rect {
    fill: #d00000;
    stroke: #d00000;
}

#world-map .svg-icon circle {
    stroke: #d00000;
    fill: #198aea;
    stroke-width: 1;
}

#world-map .dogras-world-map {
    position: relative;
    width: 100%;
    margin: auto;
}

#world-map .map-location {
    z-index: 1;
    position: absolute;
    margin-left: -12px;
    color: #323232;
    cursor: pointer;
    transition: transform 0.3s ease;
}

    #world-map .map-location:hover {
        transform: scale(1.1);
        z-index: 100;
    }

    #world-map .map-location .dogras-location-bubble {
        position: absolute;
        top: -45px;
        right: -42px;
        width: 110px;
        margin-left: -70px;
        padding: 5px;
        text-align: center;
        background: white;
        border-radius: 4px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    #world-map .map-location:hover .dogras-location-bubble {
        opacity: 1;
    }

    #world-map .map-location .dogras-location-bubble.active {
        animation: a 1s cubic-bezier(0.58, 0.1, 0.58, 0.7) infinite alternate;
        backface-visibility: hidden;
        opacity: 1;
    }

@keyframes a {
    0%, 5% {
        transform: translate3d(0, 2px, 0) scale(1);
    }

    to {
        box-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 5px 6px rgba(0, 0, 0, 0.2);
        transform: translate3d(0, -3px, 0) scale(1);
    }
}

#world-map .map-location .dogras-location-bubble:before {
    content: "";
    position: absolute;
    top: 100%;
    right: auto;
    bottom: auto;
    left: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    margin-left: -8px;
    border-width: 8px 8px 0;
    border-color: white transparent;
}

#world-map .map-location .dogras-location-bubble:after {
    margin-left: -6px;
    border-width: 6px 6px 0;
    border-color: #fff transparent;
}

#world-map .map-location .dogras-location-bubble.active {
    background: white;
}

    #world-map .map-location .dogras-location-bubble.active svg path {
        fill: #198aea;
        stroke: #1569a5;
    }

#world-map .map-location .dogras-location-name {
    font-size: 12px;
    font-weight: 600;
}

#world-map .map-location .dogras-location-desc {
    font-size: 10px;
    font-weight: 300;
}

/* Location positioning */
#world-map .pin-india {
    top: 45%;
    right: 30%;
}

#world-map .pin-nepal {
    top: 43%;
    right: 28%;
}

#world-map .pin-sri-lanka {
    top: 54%;
    right: 28.5%;
}

#world-map .pin-uae {
    top: 48%;
    right: 38%;
}

#world-map .pin-bahrain {
    top: 43%;
    right: 39.5%;
}

#world-map .pin-saudi-arabia {
    top: 44%;
    right: 37%;
}

#world-map .pin-zambia {
    top: 70%;
    right: 44%;
}

#world-map .pin-doha {
    top: 45%;
    right: 38.5%;
}

#world-map .pin-trinidad-tobago {
    top: 46.5%;
    left: 29%;
}

#world-map .pin-bangladesh {
    top: 45%;
    right: 27%;
}

#world-map .pin-oman {
    top: 47%;
    right: 36%;
}

#world-map .pin-thailand {
    top: 54%;
    right: 23.5%;
}

#world-map .pin-bhutan {
    top: 42%;
    right: 26%;
}

/* Map circles */
/*#world-map .map-circle li {
    position: absolute;
    height: 5px;
    width: 5px;
    background: #7622D7;
    border-radius: 100%;
    padding: 0;
    border: 0;
}

    #world-map .map-circle li:after {
        content: "";
        height: 6px;
        width: 6px;
        position: absolute;
        margin: 2px 2px 6px;
        animation: 2s ease-out 1.1s infinite pulsate;
        opacity: 0;
        box-shadow: 0 0 1px 1px #440793;
        border-radius: 100%;
    }

@keyframes pulsate {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.5);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(4);
    }
}*/

/* Circle positioning */
#world-map .map-circle li:nth-child(1) { /* India */
    top: 53%;
    right: 31%;
}

#world-map .map-circle li:nth-child(2) { /* Nepal */
    top: 50%;
    right: 27%;
}

#world-map .map-circle li:nth-child(3) { /* Sri Lanka */
    top: 48%;
    right: 29%;
}

#world-map .map-circle li:nth-child(4) { /* UAE */
    top: 58%;
    right: 25%;
}

#world-map .map-circle li:nth-child(5) { /* Bahrain */
    top: 53%;
    right: 37%;
}

#world-map .map-circle li:nth-child(6) { /* Saudi Arabia */
    top: 54%;
    right: 39%;
}

#world-map .map-circle li:nth-child(7) { /* Zambia */
    top: 75%;
    right: 46%;
}

#world-map .map-circle li:nth-child(8) { /* Doha */
    top: 50%;
    right: 38%;
}

#world-map .map-circle li:nth-child(9) { /* Trinidad and Tobago */
    top: 51%;
    left: 29%;
}

#world-map .map-circle li:nth-child(10) { /* Bangladesh */
    top: 49%;
    right: 41%;
}

#world-map .map-circle li:nth-child(11) { /* Oman */
    top: 51%;
    right: 40%;
}

#world-map .map-circle li:nth-child(12) { /* Thailand */
    top: 60%;
    right: 30%;
}

#world-map .map-circle li:nth-child(13) { /* Bhutan */
    top: 48%;
    right: 26%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #world-map .svg-icon, #world-map .pin-img {
        width: 15px;
        height: 22px;
    }

    #world-map .map-location .dogras-location-bubble {
        top: -37px;
        right: -34px;
        width: 80px;
    }

    #world-map .map-location .dogras-location-name {
        font-size: 10px;
    }

    #world-map .circle-ripple {
        width: 10px;
        height: 10px;
        left: 2px;
    }
}

@media (max-width: 576px) {
    #world-map .svg-icon, #world-map .pin-img {
        width: 12px;
        height: 18px;
    }

    #world-map .map-location .dogras-location-bubble {
        top: -30px;
        right: -28px;
        width: 70px;
    }

    #world-map .map-location .dogras-location-name {
        font-size: 9px;
    }

    #world-map .circle-ripple {
        width: 8px;
        height: 8px;
        left: 2px;
    }
}
