/* ==========================================================================
   Services Grid Section
   ========================================================================== */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.service-card-item {
    flex: 0 1 calc(25% - 22.5px); /* 4 columns minus gap logic */
    min-width: 250px;
    max-width: 350px;
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.service-card-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
    
    
}
.service-card-item:hover .service-card-bg {
    transform: scale(1.05);
}
.service-card-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* background: linear-gradient(to top, rgba(10, 46, 28, 0.95) 0%, rgba(10, 46, 28, 0.3) 50%, rgba(0, 0, 0, 0) 100%); */
    background-color: rgba(0, 0, 0, 0.603);
    z-index: 2;
}
.service-card-content {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 25px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}
.service-card-title {
    margin: 0 0 20px 0;
}
.service-card-btn {
    width: 40px; height: 40px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.service-card-item:hover .service-card-btn {
    transform: translateX(5px);
}

