@import url("font.css");

body{
    font-family:'IRANSans',sans-serif;
    background:#f7f9fc;
    direction:rtl;
    margin:0;
    padding:0;
}


/* صفحه اصلی */
.home-wrapper{
    padding:40px 15px;
    display:flex;
    justify-content:center;
}

.home-box{
    background:#fff;
    width:100%;
    max-width:900px;
    border-radius:14px;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
    padding:30px;
    text-align:center;
}

.home-logo{
    width:90px;
    margin-bottom:15px;
}

.home-title{
    font-size:24px;
    font-weight:bold;
    margin-bottom:20px;
}


/* GRID */
.apps{
    margin-top:20px;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:15px;
}


/* BOX */
.app-box{
    background:#fff;
    border-radius:12px;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
    min-height:120px;
    padding:12px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#333;
    transition:.2s;
}

.app-box:hover{
    transform:translateY(-3px);
}

.app-icon{
    width:45px;
    height:45px;
    margin-bottom:10px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.app-icon img{
    max-width:100%;
    max-height:100%;
}

.app-box span{
    font-size:14px;
}

.app-box p{
    margin:0;
    font-size:13px;
    word-break:break-word;
}


/* لپتاپ */
@media (max-width:992px){

    .apps{
        grid-template-columns:repeat(4,1fr);
    }

}


/* تبلت */
@media (max-width:768px){

    .apps{
        grid-template-columns:repeat(3,1fr);
    }

}


/* موبایل */
@media (max-width:576px){

    .home-wrapper{
        padding:20px 10px;
    }

    .home-box{
        padding:20px 15px;
    }

    .apps{
        grid-template-columns:repeat(2,1fr);
        gap:10px;
    }

    .app-box{
        min-height:105px;
        padding:10px;
    }

    .app-box span{
        font-size:12px;
    }

    .app-icon{
        width:36px;
        height:36px;
    }

}

.phone-number{
    font-size:14px;
    white-space:nowrap;
    direction:ltr;
    font-weight:bold;
}

@media (max-width:576px){

    .phone-number{
        font-size:12px;
    }

}
