﻿

/* عنوان */
.projects {
    padding: 15px 15px;
    text-align: center;

}

    .projects h2 {
        font-size: 28px;
        margin-bottom: 45px;
        font-weight: 700;
        letter-spacing: -0.5px;
    }

/* 3 ستون تمیز */
.grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    max-width: 1200px;
    margin: auto;
    direction:rtl
}

/* responsive */
@media(max-width:1000px) {
    .grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:650px) {
    .grid {
        grid-template-columns: 1fr;
    }
}

/* کارت */
.card {
    background: #111827;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: 0.3s ease;
}

    /* hover حرفه‌ای و نرم */
    .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 60px rgba(0,0,0,0.5);
    }

/* تصویر */
.img {
    overflow: hidden;
}

    .img img {
        width: 100%;
        height: 210px;
        object-fit: cover;
        transition: 0.4s ease;
    }

/* zoom نرم روی عکس */
.card:hover img {
    transform: scale(1.05);
}

/* محتوا */
.content {
    padding: 18px;
    text-align: right;
}

    .content h3 {
        margin: 0 0 10px;
        font-size: 17px;
        color: #ffffff;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        width: 100%;
        direction: rtl;
    }

    .content p {
        margin: 0;
        font-size: 13px;
        line-height: 1.9;
        color: #b8c1d1;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        max-width: 100%;
        direction: rtl;
    }
