/* Base styling for the service box */
.zscustom-service-box {
    background-color: #ffffff;       /* White background */
    border: 1px solid #ddd;          /* Light gray border */
    border-radius: 8px;              /* Rounded corners */
    padding: 20px;                   /* Inner spacing */
    margin: 15px;                    /* Outer spacing */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Subtle shadow */
    transition: all 0.3s ease;       /* Smooth hover effect */
    text-align: center;              /* Center text */
}

/* Title inside the service box */
.zscustom-service-box h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

/* Paragraph text inside the service box */
.zscustom-service-box p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

/* Hover effect */
.zscustom-service-box:hover {
    transform: translateY(-5px);     /* Lift effect */
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border-color: #0073e6;           /* Highlight border */
}

/* Optional: Icon styling if you have icons inside */
.zscustom-service-box i {
    font-size: 2rem;
    color: #0073e6;
    margin-bottom: 10px;
    display: block;
}
