@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-animation {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.service-item {
    background: linear-gradient(to bottom, #e1e9f2, #ffffff);
    border: 3px solid #0077ff;
    border-radius: 10px;
    width: 250px;
    height: 300px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: #227cfb;
    border-color: rgba(254, 161, 47, 0.903);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.service-item h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.service-item p {
    color: #4c4c4c;
    font-size: 14px;
}

