@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&display=swap');
* {
    font-family: 'Poppins' , sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    min-height: 100vh;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
    overflow-y: auto;
}

.water-effect {
    position: absolute;
    top: -50%;
    right: -25%;
    width: 100%;
    height: 100%;
    background: #e6f0ff;
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    animation: water 10s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes water {
    0% {
        border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
        transform: rotate(0deg);
    }
    50% {
        border-radius: 45% 55% 49% 51% / 53% 48% 52% 47%;
        transform: rotate(3deg);
    }
    100% {
        border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
        transform: rotate(0deg);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 20px;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 3rem;
    color: #333;
    padding: 30px 15px;
    font-weight: bolder !important;

}

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 40px;
    justify-items: center;
    margin-bottom: 50px;
}

.city-item {
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.city-item:hover:not(.disabled) {
    transform: translateY(-5px);
}

.city-icon {
    width: 130px;
    height: 130px;
    border: 2px solid #eee;
    border-radius: 50%;
    padding: 15px;
    margin-bottom: 10px;
    background: white;
    transition: all 0.3s ease;
}

.city-item:hover:not(.disabled) .city-icon {
    border-color: #004b93;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.city-item:not(.disabled):hover .city-icon svg {
    stroke: #004b93;
}

.city-name {
    font-size: 0.9rem;
    color: #333;
}

.city-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.city-item.active .city-icon {
    border-color: #004b93;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden; /* Hides overflowing content */
}

.city-item.active .city-name {
    font-weight: bold;
    color: #004b93;
}
.city-grid a{
    text-decoration: none;
}
.city-grid a:hover{
    text-decoration: none;
}

.location-marker {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: #4CAF50;
    font-size: 30px;
}

.house {
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 400px;
    height: auto;
}
.trees {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 600px;
    height: auto;
}

.balloon {
    position: absolute;
    width: 40px;
    height: 40px;
    animation: float 15s infinite;
}

.balloon:nth-child(1) {
    top: 10%;
    left: 10%;
}

.balloon:nth-child(2) {
    top: 15%;
    right: 15%;
    animation-delay: -7s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

.plus-icon {
    position: absolute;
    color: #ff6b00;
    font-size: 24px;
}

.plus-icon:nth-child(1) {
    top: 10%;
    left: 5%;
}

.plus-icon:nth-child(2) {
    top: 5%;
    right: 10%;
}
svg image{
    border-radius: 50px;
}
@media (max-width: 768px) {
    .trees {
        display: none;
    }
}