/* service Section Styles */
.service-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-white);
}

.service-item {
    position: relative;
    border-radius: var(--radius-md);
    max-height: 300px;
    cursor: pointer;
    border-radius:16px;
    transition: 0.3s ease;
    overflow: hidden;
}

.service-item img {
    width: 100%;
    height: 200px;    
    object-fit: cover;
    max-height:180px;
}

.service-item:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 18px rgba(0,0,0,0.18);}

.service-overlay {
    bottom: 0;
    left: 0;
    right: 0;
    background: #FDF7F4;
    padding: 1rem;
    color: var(--text-white);
}

.service-overlay h5 {
    margin-bottom: 1rem;
    font-size:var(--font-size-xl);
    color:#1C1A1A;
    font-weight: 500;
}

.service-overlay p {
    font-size:var(--font-size-lg);
    color:#1C1A1A;
    line-height: 1.6;
     white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    align-self: stretch;
}

