/* Custom Card Styling */
.service-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px; /* Optional: Set a max width */
    margin: 20px auto; /* Center the card */
    overflow: hidden; /* Ensure the image doesn't overflow */
}

/* Service List Styling */
.service-list {


/* Service Item Styling */
.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    transition: transform 0.3s ease;
    text-align: center;
}

.service-item:hover {
    transform: scale(1.05);
}

.service-item img {
    width: 100%;
    max-width: 120px; /* Adjust image size */
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 10px;
}

.service-item h3 {
    font-size: 20px;
    color: #333;
    font-weight: 600;
    margin: 10px 0;
}

.service-item p {
    font-size: 14px;
    color: #666;
}

/* Load More Button Styling */
.load-more {
    margin-top: 20px;
}

.load-more button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.load-more button:hover {
    background-color: #0056b3;
}

/* Custom Button Styling */
.btn-custom {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-custom:hover {
    background-color: #0056b3;
}
