 /* Card Grid Container */
 .services.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 5em 20px;
}

/* Individual Card Styling */
.services .card {
    border-radius: 0;
    padding: 0px;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1; /* Square aspect ratio */
}

/* Card Link Styling */
.services .card-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

/* Card Image Background */
.services .card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease; /* Smooth zoom transition */
}

/* Card Title Styling */
.services .card-title {
    margin: 0px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 10px 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    height: 30%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

/* Hover Effect: Zoom the Image */
.services .card:hover .card-image {
    transform: scale(1.1); /* Zoom in the image */
}