/* Service Card Styles */
.service-card {
    width: 100%;
    aspect-ratio: 4/5;
    border: none;
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
}

.service-card .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* التدرج اللوني (الـ Layer) */
.service-card .card-img-overlay {
    /* التدرج يبدأ شفاف 0% وينتهي بلون أسود عند 100% */
    /* التعديل هنا: خليناه يبدأ يغمق من نص الكارت تقريباً 50% */
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        /* شفاف تماماً فوق */ rgba(0, 0, 0, 0.4) 40%,
        /* يبدأ يغمق بدري شوية */ rgba(0, 0, 0, 0.95) 100%
            /* أسود صريح تحت الكلام */
    );

    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* يخلي الكلام تحت */
    padding: 1.5rem;
    border-radius: 1.5rem;
}

.service-title {
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-desc {
    color: white;
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.9;
    margin: 0;
}
