
.container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    
}

.card {
    background: white;
    border: 2px solid #00008B;
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 30px;
    color: black;
    position: relative;
    margin-bottom: 10px;
}

.icon::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: #00008B;
    border-radius: 50%;
    z-index: -1;
    box-shadow: 0 0 10px #00008B;
}

h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

p {
    font-size: 14px;
    color: #555;
}