/* India Map Section */
#india-map-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 600px; /* Adjust height to fit your layout */
    background-color: #000000;
    position: relative;
}

/* Map Container */
#india-map-section .map-container {
    position: relative;
    width: 80vw;
    height: 80vh;
    background: url('map.jpg') no-repeat center;
    background-size: contain;
}

/* Canvas */
#india-map-section canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* City Markers */
#india-map-section .city {
    position: absolute;
    padding: 5px 10px;
    background: red;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease-in-out, background 0.2s;
}

/* Hover Effect */
#india-map-section .city:hover {
    background: yellow;
    transform: scale(1.2);
}
