.services-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr); 
    gap: 10px;
    justify-content: center;
}

.service {
    text-decoration: none;
    color: inherit; 
    border: 1px solid #ddd;
    border-radius: 10px;
    background: white;
    text-align: center;
    overflow: hidden; 
    width: 100%;
    overflow: hidden;
    display: block; 
}

.service img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
    transition: transform 0.3s ease; 

}

.service:hover img {
    transform: scale(1.1); 
}

.service h3 {
    margin: 10px 0;
    font-size: 14px;
}

.service:hover {
    background-color: #f9f9f9; 
    transition: background-color 0.3s ease;
}

@media (max-width: 768px) {
    .services-list {
        grid-template-columns: repeat(2, 1fr); 
    }

    .service {
        display: none; 
    }

    .service.visible {
        display: block; 
    }

    .service img {
        height: 80px;
    }

    .service h3 {
        font-size: 12px;
    }

    #load-more {
        display: block; 
    }
}

#load-more {
    display: none; 
    margin: 20px auto;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
}

#load-more:hover {
    background-color: #0056b3;
}