.services-list-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.services-list-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.services-list-card:hover {
    transform: translateY(-5px);
    
}

.services-list-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.services-list-image {
    height: 400px !important;
}
.services-list-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    margin: 15px 0;
    margin-top: 25px;
    transition: all 0.3s ease;
}

.services-list-title a {
    text-decoration: none;
    color: #333;
    flex: 1;
}

.services-list-title img {
    width: 20px;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.services-list-btn {
    display: inline-block;
    background: #0073e6;
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.3s;
    font-size: 14px;
}

.services-list-btn:hover {
    background: #005bb5;
}

.services-pagination {
    margin-top: 20px;
    text-align: center;
}
h3.services-list-title a {
    display: flex;
    justify-content: space-between;
}
.services-list-card:hover .services-list-title a img {
    transform: rotate(45deg);
}