.pricing-card {
    transition: all 0.3s ease;
    border-radius: 15px;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px #021b52;
}
.price {
    font-size: 32px;
    font-weight: 700;
    color: #021b52;
}
.btn-pri{
    background-color: #021b52;
    color: white;
}



 .work-item {
        position: relative;
        width: 100%;
        height: 320px; /* ارتفاع ثابت */
        overflow: hidden;
        border-radius: 12px;
        background: #f0f0f0;
        cursor: pointer;
    }

    .work-item img {
        width: 100%;
        height: auto;
        transition: transform 4s ease-out;
    }

    .work-item:hover img {
        transform: translateY(calc(-100% + 320px));
    }

    /* عنوان زیر هر نمونه‌کار */
    .work-title {
        text-align: center;
        margin-top: 12px;
        font-size: 1.1rem;
        font-weight: 600;
    }
    .item{
    margin-bottom: 50px;
    }