/* ===== Service Page Styles ===== */
.service-details {
    padding: 100px 0;
    background-color: #fff;
}

.service-details h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.service-details p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Gallery Section */
.service-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 0 15px;
    justify-items: center;
}

.service-gallery .gallery-item {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-gallery .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

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

.service-gallery .gallery-item img:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-details h1 {
        font-size: 2rem;
    }

    .service-details p {
        font-size: 1rem;
    }

    .service-gallery {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

