.card{
    width: 100%;
    height: 230px;
}
.icons {
    margin-left: 10px;
}
.card h5{
    font-size: 25px;
}
.card p{
    white-space: pre-wrap;
    font-size: 15px;
}
.icons img{
    width: 40px;
    height: 40px;
    transition: transform 0.5s ease;
}
.card h5{
    color: #1e84b5;
}
.card:hover {
    background-color: #0e384c; /* Dark background on hover */
    color: white; /* Text color on hover */
    transform: translateY(-20px); /* Move card up on hover */
}
.card:hover img{
    filter: invert(1);
    transform: rotate(360deg);
}
.card:hover  h5 {
    color: white; /* Text color on hover */
}

.card:hover p {
    color: white; /* Text color on hover */
}
.map-con{
    height: 640px;
    max-height: 640px;
}
.map-con iframe{
    width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 40px;
}
