   

     .title {
    text-align: center;
    color: white !important;
    font-size: 36px !important;
    font-weight: 300 !important;
    margin-bottom: 50px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

        .map-container {
            position: relative;
            width: 100%;
            margin: 0 auto;
            backdrop-filter: blur(10px);
        }

        .world-map {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

       .map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* opacity: 0.9; */
    filter: brightness(0.8) contrast(1.2);
}

        .location-point {
            position: absolute;
            width: 12px;
            height: 12px;
            background: #ff6b35;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
            opacity: 0;
            transition: all 0.4s ease;
            animation: pulse 2s infinite;
        }

        .location-point.active {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1.2);
        }

        .location-point::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border: 2px solid rgba(255, 107, 53, 0.3);
            border-radius: 50%;
            animation: ripple 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -50%) scale(1.1); }
        }

        @keyframes ripple {
            0% {
                transform: scale(0.8);
                opacity: 1;
            }
            100% {
                transform: scale(2);
                opacity: 0;
            }
        }

        .controls {
            position: absolute;
            top: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 20px;
            z-index: 10;
        }

        .dropdown {
            position: relative;
        }

      .dropdown-button {
    background: #0C3F1A;
    color: white;
    border: none;
    padding: 23px 31px;
    border-radius: 7px;
    font-size: 22px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex
;
    align-items: center;
    gap: 8px;
}

      .dropdown-button:hover {
    background: #0C3F1A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: white;
}

        .dropdown-button::after {
            content: '▼';
            font-size: 12px;
            transition: transform 0.3s ease;
        }

        .dropdown:hover .dropdown-button::after {
            transform: rotate(180deg);
        }

  .dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0c3f1a14;
    border-radius: 15px;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(0px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            padding: 12px 20px;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .dropdown-item:last-child {
            border-bottom: none;
        }

        .dropdown-item:hover {
            background: rgba(255,255,255,0.1);
            padding-left: 25px;
        }

        .turkey-highlight {
            top: 38%;
            left: 55%;
        }

        .india-highlight {
            top: 50%;
            left: 70%;
        }

        .vietnam-highlight {
            top: 52%;
            left: 74%;
        }

        .america-highlight {
            top: 40%;
            left: 25%;
        }

        .netherlands-highlight {
            top: 30%;
            left: 52%;
        }

        .switzerland-highlight {
            top: 34%;
            left: 53%;
        }

        .uae-highlight {
            top: 48%;
            left: 60%;
        }

        .tooltip {
            position: absolute;
            background: rgba(0,0,0,0.9);
            color: white;
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 14px;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 100;
            backdrop-filter: blur(10px);
        }

        .legend {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 15px;
            border-radius: 10px;
            font-size: 14px;
            backdrop-filter: blur(10px);
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 5px;
        }

        .legend-dot {
            width: 8px;
            height: 8px;
            background: #ff6b35;
            border-radius: 50%;
        }