.section1-asatid{
    width: 55%;
    height: 150px;
    margin: 10px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
}
.section1-asatid > h1{
    font-size: 25px !important;
    color: #02195A;
}
.section1-asatid > p{
    color: #A0A1AA;
    font-size: 18px;
}




/* section2 */



.section2-asatid{
    width: 90%;
    margin: 10px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
}
.set1-section2-asatid {
    width: 690px;
    margin: 2px auto;
    height: 72px;
    border: 2px solid #93C5FD;
    border-radius: 17px;
    background-color: #F8F8F9;
    display: flex;
    align-items: center;
    justify-content: center; /* فرم وسط باکس قرار بگیره */
    padding: 10px 20px;
    box-sizing: border-box;
     box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}


form.filter-form {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #F8F8F9;
    padding: 8px 10px;
}


    button.filter-btn {
        background-color: #00b4f0;
        color: white;
        border: none;
        border-radius: 6px;
        padding: 8px 16px;
        font-size: 14px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 5px;
        width: 145px;
        transition: background 0.3s;
    }

    button.filter-btn:hover {
        background-color: #0096d1;
    }

    button.filter-btn svg {
        width: 16px;
        height: 16px;
        fill: white;
    }

    select {
        padding: 8px 12px;
        border: 1px solid #d0e1f5;
        border-radius: 6px;
        font-size: 14px;
        outline: none;
        background: #fff;
        color: #333;
        width: 145px;
    }

    .search-box {
        display: flex;
        align-items: center;
        border: 1px solid #d0e1f5;
        border-radius: 6px;
        padding: 6px 10px;
        width: 300px;
        background: #fff;
    }

    .search-box input {
        border: none;
        outline: none;
        flex: 1;
        font-size: 14px;
        color: #333;
        background: transparent;
    }

    .search-box svg {
        width: 18px;
        height: 18px;
        fill: #9ab6d1;
    }

    .set2-section2-asatid{
        width: 100%;
        height: 92px;
        
        margin: 10px auto;
        display: flex;
        justify-content: center;
        gap: 10px;
    }
    .set2-section2-asatid > div{
        display: flex;
        flex-direction: column;
        border: 2px solid #93C5FD;
        border-radius: 17px;
        background-color: #F8F8F9;
        padding: 10px 46px;
        align-items: center;
    }
    .num{
        color: #31C5F5;
        font-size: 31px;
        font-weight: bold;
    }
    .type{
        color: #4B5563;
        font-size: 16px;
        font-weight: bold;
    }


    /* section3 */

    .set3-section2-asatid{
        width: 100%;
        margin-top: 30px;
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
        /* border: 1px solid rebeccapurple; */
    }

    

     .teacher-card {
        width: 280px;
        border: 2px solid #93C5FD;
        border-radius: 16px;
        overflow: hidden;
        background-color: #F8F8F9;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        transition: transform 0.2s;
    }

    .teacher-card:hover {
        transform: translateY(-4px);
    }

    .teacher-img {
        width: 100%;
        height: 250px;
        background-color: #E5E7EB; /* رنگ خنثی برای جای عکس */
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .teacher-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .teacher-info {
        padding: 15px;
        text-align: right;
    }

    .teacher-info h3 {
        font-size: 19px;
        font-weight: 600;
        margin-bottom: 4px;
        color: #4B5563;
    }

    .teacher-info p.role {
        font-size: 16px;
        color: #02195A;
        font-weight: 500;
        margin-bottom: 8px;
    }

    .teacher-info p.desc {
        font-size: 13px;
        color: #A0A1AA;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .teacher-stats {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 12.5px;
        color: #A0A1AA;
        padding: 0 15px 10px;
    }
    .teacher-stats > span{
        display: flex;
        gap: 4px;
    }

    .teacher-stats span i {
        margin-left: 4px;
        vertical-align: middle;
    }

    .teacher-btn {
        display: block;
        text-align: center;
        background-color: #02195A;
        color: #fff;
        padding: 10px 0;
        font-size: 14px;
        border-top: 1px solid #E5E7EB;
        text-decoration: none;
        transition: background 0.3s;
        border-radius: 8px;
        margin: 15px 10px;
    }

    .teacher-btn:hover {
        background-color: #1D4ED8;
    }

    .icon {
        width: 14px;
        height: 14px;
        vertical-align: middle;
    }
