#hizmetler {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex: 1;
}

#hizmetler a {
    text-decoration: none;
    color: black;
    display: flex;
    width: 30%;
}

.hizmet-card {

    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.33s ease-in-out;
    width: 100%;
    margin: 30px;
    cursor: pointer;
}

.hizmet-card:hover img {
    transform: scale(1.07) translateY(-7px);
}

.hizmet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 4px 20px rgba(41, 70, 255, 0.3);

}

.hizmet-img img {
    transition: all 0.33s ease-in-out;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.hizmet-arrow {
    min-width: 45px;
    min-height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5a9fff, #7b98ff);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 15px;
    transition: all 0.33s ease;
}

.hizmet-arrow i {
    transition: all 0.33s ease-in-out;
}

.hizmet-card:hover .hizmet-arrow i {
    transform: rotate(-50deg);
}

.hizmet-footer {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hizmet-title {
    font-weight: 700;
}

@media screen and (max-width:1000px) {
    #hizmetler {
        flex-direction: column;
        padding: 0;
        margin: 0;
        flex-wrap: wrap;
        width: 100%;
    }

    .hizmet-card {
        margin: 10px 0px;
        padding: 0;
        width: 100%;
    }

    #hizmetler a {
        width: 90%;
    }
}