/* ===============================
   Arsh Projects Style
================================ */


.arsh-projects{

    width:100%;
    padding:70px 20px;
    direction:rtl;
    background:#fff;

}



.arsh-projects h2{

    text-align:center;

    font-size:22px;

    font-weight:700;

    color:#14243d;

    margin:0 0 10px;

}



.arsh-project-line{

    width:35px;

    height:3px;

    background:#155cff;

    border-radius:20px;

    margin:0 auto 40px;

}




.arsh-project-grid{


    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}





/* کارت پروژه */

.arsh-project-card{


    display:flex;

    flex-direction:row-reverse;

    height:190px;

    background:#fff;

    border:1px solid #edf1f7;

    border-radius:12px;

    overflow:hidden;

    text-decoration:none;

    transition:all .3s ease;

    box-shadow:

    0 5px 18px rgba(0,0,0,.04);


}



.arsh-project-card:hover{


    transform:translateY(-5px);

    box-shadow:

    0 15px 35px rgba(0,0,0,.09);


}







/* تصویر پروژه */

.arsh-project-image{


    width:42%;

    height:100%;

    padding:0;

}




.arsh-project-image img{


    width:100%;

    height:100%;

    object-fit:cover;

    display:block;


}







/* متن */

.arsh-project-content{


    width:58%;

    padding:25px 22px;

    text-align:right;

    display:flex;

    flex-direction:column;

    justify-content:center;


}




.arsh-project-content h3{


    font-size:16px;

    font-weight:700;

    color:#14243d;

    margin:0 0 10px;


}





.arsh-project-content p{


    font-size:12px;

    line-height:2;

    color:#667085;

    margin:0 0 12px;


}




.arsh-project-content span{


    font-size:12px;

    font-weight:600;

    color:#155cff;


}






/* موبایل */

@media(max-width:768px){


.arsh-projects{

    padding:45px 15px;

}



.arsh-projects h2{

    font-size:19px;

}




.arsh-project-grid{


    grid-template-columns:1fr;

    gap:20px;


}




.arsh-project-card{


    height:auto;

    min-height:170px;


}



.arsh-project-image{


    width:40%;


}




.arsh-project-content{


    width:60%;

    padding:18px 15px;


}




.arsh-project-content h3{


    font-size:14px;


}




.arsh-project-content p{


    font-size:11px;

}




}






/* موبایل خیلی کوچک */

@media(max-width:480px){



.arsh-project-card{


    flex-direction:column;

}



.arsh-project-image,
.arsh-project-content{


    width:100%;

}



.arsh-project-image{


    height:180px;

}



.arsh-project-content{


    padding:20px;

}


}