
/* Service Grid */
.service-group {
    margin-top: 2rem;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
}

.service-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    width: 150px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.2s;
    position: relative;
}

.service-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.service-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.service-item h4 {
    font-size: 1rem;
    color: #333;
}

/* Popup Styles */
.service-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
    padding: 1.5rem;
}

.service-popup h3 {
    margin: 0 0 1rem;
    font-size: 1.5rem;
    color: #333;
}

.service-popup p {
    margin-bottom: 1rem;
}

.service-popup a {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #007bff;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
}

.service-popup a:hover {
    background-color: #0056b3;
}

.service-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.2rem;
    color: #333;
    cursor: pointer;
}

/* Overlay */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}













.service-item img {
    width: 48px;
    height: 48px;
    margin-bottom: 0.5rem;
}

