.rk-project-card {
    display: block;
    position: relative;
    background-size: cover;
    background-position: center;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.rk-project-card:hover {
    transform: translateY(-5px);
}
.rk-project-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(238deg, rgba(0,0,0,0.1) 28%, rgba(0,0,0,0.8) 98%);
    transition: background 0.3s ease;
}
.rk-project-card:hover .overlay {
    background: rgba(0,0,0,0.6);
}
.rk-project-card .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.4s ease;
}
.rk-project-card:hover .card-body {
    opacity: 1;
    transform: translateY(0);
}
.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
    font-size: 14px;
}
.info-item .info-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    object-fit: contain;
}
