.flex-cover {
    display: flex;
    justify-content: center;  
}
.cards-grid {
    display: grid;
    justify-content: center;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
        /* width: 60vw; */
        gap: 1rem;
    }
}
@media (min-width: 1100px) {
    .cards-grid {
         width: 80vw;
        gap: 3rem;
    }
}
@media (min-width: 2000px) {
    .cards-grid {
         width: 60vw;
        gap: 5rem;
    }
}

.service-card {
    background-color: white;
    border-radius: 1rem; 
    padding: 2rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-style: normal; 
    line-height: 1.7;
    font-size: 16px;
}
.text-xl {
    font-size: 30px;
}

.service-card:hover {
    transform: translateY(-0.5rem); 
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); 
}

.icon-wrapper {
    width: 3.5rem; 
    height: 3.5rem; 
    background-color: #f1f5f9;
    border-radius: 0.75rem; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem; 
    transition: background-color 0.3s ease;
}

.service-card:hover .icon-wrapper {
    background-color: #2563eb; 
}

.icon-svg {
    width: 1.75rem; 
    height: 1.75rem; 
    color: #2563eb; 
    transition: color 0.3s ease;
}

.service-card:hover .icon-svg {
    color: white;
}

.card-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: #0f172a; 
    transition: color 0.3s ease;
}

.card-link:hover {
    color: #2563eb; 
}

.link-arrow {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .link-arrow {
    transform: translateX(0.25rem);
}
