@font-face {
  font-family: 'Yekan';
  src: url('./fonts/BYekan.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.page-main {
    margin: 0;
    padding-top: 110px !important;
}
.page-title {
    /* padding-top: 140px !important; */
    background-color: #16007a;   /* بک‌گراند بنفش تیره */
    padding: 20px 30px;          /* فاصله داخلی */                /* فاصله از اطراف */
    border-radius: 25px;         /* گرد کردن گوشه‌ها */
    color: #fff;                 /* رنگ متن */
    font-family: 'Yekan', sans-serif !important;
    font-size: 19px;             /* سایز فونت */
    text-align: center;          /* وسط‌چین کردن متن */
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); /* سایه نرم */
    width: 60%;
    margin: 25px auto;
}

.page-title h1{
    font-size: 20px !important;
}

.title-asl{
    color: rgb(255, 0, 0);
}

.seller-container {
    /* padding-top: 120px !important; */
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* چهار ستون مساوی */
    gap: 20px; /* فاصله بین کارت‌ها */
    padding: 20px;
}

.seller-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.seller-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.seller-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.seller-card .title {
    font-size: 18px;
    margin-bottom: 10px;
    display: block;
    font-weight: bold;
    color: #440052;
    font-family: "Yekan" ,sans-serif !important;
}

.seller-card .description {
    font-size: 14px;
    margin: 5px 0;
    color: #00397a;
}

.full-description {
    background: linear-gradient(135deg, #4f46e5, #6b21a8); /* گرادینت جذاب */
    padding: 30px 40px;
    margin: 30px auto;
    border-radius: 25px;
    max-width: 900px;
    font-family: 'Yekan', sans-serif !important;
    font-size: 16px;
    color: #fff;
    line-height: 1.7;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.full-description:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.3);
}

.full-description h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.full-description p {
    margin-bottom: 15px;
}

.full-description a {
    color: #fbbf24;  /* لینک طلایی برای کنتراست با پس‌زمینه */
    text-decoration: underline;
    transition: color 0.2s ease;
}

.signup-btn{
    text-decoration: none !important;
    text-align: center !important;
}

.full-description a:hover {
    color: #fff; /* تغییر رنگ لینک هنگام هاور */
}


/* ریسپانسیو برای موبایل */
@media (max-width: 768px) {
    .seller-container {
        grid-template-columns: repeat(2, 1fr); /* دو ستون توی تبلت */
    }
}
@media (max-width: 480px) {
    .seller-container {
        grid-template-columns: 1fr; /* یک ستون توی موبایل */
    }
}
