*{padding: 0px;margin: 0px;border: 0px;direction: rtl;text-decoration: none;font-family: vazir;color: black;}
@font-face {
    font-family: vazir;
    src: url(../fonts/Vazir.woff);
}
@font-face {
    font-family: vazir-bold;
    src: url(../fonts/Vazir-Bold.woff);
}
main{
    width: 100%;
    overflow: hidden;
}
header{
    width: 100%;
    border-bottom: 1px solid rgba(128, 128, 128, 0.623);
    height: 90px;
    padding-top: 0.5%;
}
header>section{
    width: 95%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 0px auto;
    
}
.header-img-btn{
    display: none;
}
.mobile-theme-toggle{
    display: none;
}
.header-div-logo{
    width: 10%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
}
.header-div-logo img{
    width: 45%;
    height: 70%;
}
.header-div-menu{
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: start;
}
.header-div-menu a{
    margin-left: 5%;
    font-size: 16px;
}
.header-section-login{
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.header-section-login-div{
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.header-section-login-div p{
    width: 1%;
    height: 40px;
    border-right: 1px solid grey;
    margin-right: 1%;
}
.header-section-call-div{
    border-right: 1px solid grey;
    display: flex;
    align-items: center;
    justify-content: end;
    width: 40%;
}
.header-section-call-div a{
    margin-left: 5%;
}

.section-menu-bars{
    width: 100%;
    height: 100Vh;
    overflow: scroll;
    background-color: #6fa4f1;
    position: absolute;
    top: 0;
    right: -100%;
    transition: 400ms ease-in-out;
    z-index: 99;
}
.section-menu-bars-divA{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    margin: 5px auto;
}
.section-menu-bars-divA img{
    width: 15%;
}
.section-menu-bars-divB{
    width: 90%;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    align-items: start;
}
.section-menu-bars-divB a{
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 15px;
}

.collab-hero{
    width: 80%;
    margin: 40px auto 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.08), rgba(0, 86, 210, 0.08));
    border-radius: 20px;
    padding: 24px;
}
.collab-hero-text{
    width: 50%;
    min-width: 280px;
}
.collab-hero-text h2{
    font-size: 28px;
    margin-bottom: 12px;
}
.collab-hero-text p{
    color: grey;
    line-height: 1.9;
}
.collab-hero-image{
    width: 40%;
    min-width: 240px;
    display: flex;
    justify-content: center;
}
.collab-hero-image img{
    width: 80%;
}

.collab-form-section{
    width: 90%;
    margin: 10px auto 60px;
}
.collab-form{
    border: 1px solid rgba(128, 128, 128, 0.2);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.collab-form h3{
    margin-top: 8px;
    font-size: 18px;
}
.form-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.form-grid label,
.form-wide label{
    display: block;
    margin-bottom: 8px;
}
.form-grid input{
    width: 95%;
    border: 1px solid rgba(128, 128, 128, 0.3);
    border-radius: 10px;
    padding: 10px 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-grid select{
    width: 100%;
    border: 1px solid rgba(128, 128, 128, 0.3);
    border-radius: 10px;
    padding: 10px 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-wide input{
    width: 95%;
    border: 1px solid rgba(128, 128, 128, 0.3);
    border-radius: 10px;
    padding: 10px 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-wide textarea{
    width: 95%;
    border: 1px solid rgba(128, 128, 128, 0.3);
    border-radius: 10px;
    padding: 10px 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-grid input:focus,
.form-grid select:focus,
.form-wide input:focus,
.form-wide textarea:focus{
    border-color: #ff8c00;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.15);
    outline: none;
}
.form-wide{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-wide textarea{
    min-height: 120px;
    resize: vertical;
}
.form-human-check{
    display: flex;
    align-items: center;
    gap: 10px;
}
.main-section-form-btn{
    background: linear-gradient(135deg, #ff8c00, #ffb347);
    color: white;
    height: 46px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
}
.main-section-form-btn:hover{
    filter: brightness(0.98);
}


footer{
    width: 100%;
    background-color: #FF8C00;
    padding: 3% 0px;
}
.footer-section{
    width: 90%;
    margin: 0px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-section-divr{
    width: 50%;
}
.footer-section-divr-text{
    display: flex;
    align-items: start;
    flex-direction: column;
    flex-wrap: wrap;
}
.footer-section-divr-text h2{
    color: white;
    margin-bottom: 1%;
}
.footer-section-divr-text p{
    color: white;
}
.footer-section-divr-buttons{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 5%;
}
.footer-section-divr-buttons-r{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-section-divr-buttons-r button{
    width: 45%;
    height: 35px;
    border-radius: 8px;
}
.footer-section-divr-buttons-r button:nth-child(1){
    background-color: black;
    color: white;
}
.footer-section-divr-buttons-r button:nth-child(1) a{
    background-color: black;
    color: white;
}
.footer-section-divr-buttons-l{
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}
.footer-section-divr-buttons-l i{
    color: white;
    font-size: 25px;

}
.footer-section-divl{
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: end;
    flex-wrap: wrap;
}
.footer-section-divl img{
    width: 45%;
}


@media only screen and (max-width: 580px){
    header{
        height: 60px;
    }
    header>section{
        justify-content: space-between;
        direction: ltr;
    }
    .header-img-btn{
        display: inline-block;
        width: 28px;
        order: 3;
        margin-left: auto;
    }
    .mobile-theme-toggle{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 999px;
        padding: 0;
        margin-right: 0;
        margin-left: 8px;
        font-size: 14px;
        order: 2;
    }
    .header-div-logo {
        width: auto;
        height: 80%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        order: 1;
    }
    .header-div-logo img{
        width: 46px;
        height: auto;
    }
    .header-div-menu{
        display: none;
    }
    .header-section-login{
        display: none;
    }

    .main-section-A{
        margin-top: 5%;
    }
    .main-section-A-divr{
        width: 95%;
        margin: 0px auto;
        padding: 0px;
    }
    .main-section-A-divr-divP h2{
        text-align: center;
        font-size: 20px;
        margin-bottom: 4%;
    }
    .main-section-A-divr-divP p{
        text-align: justify;
    }
    .main-section-A-divr-divButton{
        justify-content: center;
    }
    .main-section-A-divr-divButton button{
        width: 60%;
        margin: 20px auto;
    }
    .main-section-A-divl{
        width: 100%;
        margin: 4% 0px;
    }
    .main-section-A-divl div{
        justify-content: center;
    }
    .main-section-A-divl-img3{
        width: 30%;
        margin-top: -15%;
        margin-left: 42%;
    }


    .form-grid select{
        width: 105%;
    }

    .collab-hero-text,
    .collab-hero-image{
        width: 100%;
    }
    .form-grid{
        grid-template-columns: 1fr;
    }
    .footer-section-divr{
        width: 100%;
        margin-top: 8%;
    }
    .footer-section-divr-buttons{
        flex-direction: column;
        margin: 14% 0px 5%;
    }
    .footer-section-divr-buttons-r{
        width: 100%;
    }
    .footer-section-divr-buttons-r button{
        width: 48%;
    }
    .footer-section-divr-buttons-l{
        width: 50%;
        margin: 8% 0px 10%;
    }
    .footer-section-divl{
        width: 100%;
        justify-content: center;
    }
    .footer-section-divl img{
        width: 70%;
    }
}
