body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}


input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

button {
    padding: 10px 20px;
    background-color: #eec085;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #218838;
}

.popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    position: relative;
}

.close-btn {
    cursor: pointer;
    float: right;
    font-size: 20px;
}

.animation-container {
    position: relative;
    margin: 20px 0;
}

.map {
    width: 300px; /* Adjust as needed */
    height: auto;
}

.search-icon {
    position: absolute;
    font-size: 30px;
    color: red; /* Change color as needed */
    animation: moveToMumbai 2s forwards; /* Animation duration */
}

@keyframes moveToMumbai {
    0% { left: 50%; top: 20%; transform: translate(-50%, -50%); }
    25% { left: 60%; top: 40%; transform: translate(-50%, -50%); }
    50% { left: 55%; top: 60%; transform: translate(-50%, -50%); }
    75% { left: 60%; top: 40%; transform: translate(-50%, -50%); }
    100% { left: 25%; top: 60%; transform: translate(-50%, -50%); }
}




