.service {
    /* border: 1px solid red; */
    width: 100%;
    min-height: 100vh;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    margin-top: 150px;
    
}
.service > h1 {
    width: 100%;
    text-align: center;
    font-size: calc(0.7rem + 1.5vw);
    color: #6518ff;
    margin-bottom: 20px;
    cursor: default;
}
.service > h1 > span {
    color: tomato;
    transition: all 0.3s ease-in-out;
    
}
.service > h1 > span:hover {
    letter-spacing: 2px;
    text-decoration: underline;
}
.service > .cards {
    width: 60%;
    min-height: 500;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 50px;
    /* border: 1px solid red; */
}
.card-item {
    width: 300px;
    height: 350px;
    background-color: #fcfcfc;
    padding: 20px;
    margin: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.card-item .icon {
    font-size: 3rem;
    color: #6518ff;
    margin-bottom: 15px;
}

.card-item h2 {
    font-size: 1.2rem;
    color: #333;
}

@media (max-width: 768px) {  

    .service > .cards {
        width: 100%;
    }
}