@font-face {
    font-family: Vazir;
    src: url("Vazir-Regular.woff2");
    font-weight: normal;
}

@font-face {
    font-family: Vazir;
    src: url("Vazir-Bold.woff2");
    font-weight: bold;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Vazir;
    }
    
    body{
    background:#080d12;
    color:white;
    overflow-x:hidden;
    }
    
    header{
    height:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 8%;
    background:rgba(22,27,34,.8);
    backdrop-filter:blur(10px);
    position:sticky;
    top:0;
    z-index:10;
    border-bottom:1px solid #263238;
    }
    
    .logo h2{
    color:#00b86b;
    }
    
    nav a{
    color:white;
    text-decoration:none;
    margin-right:25px;
    transition:.3s;
    }
    
    nav a:hover{
    color:#00b86b;
    }
    
    .hero{
    width:85%;
    margin:90px auto;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:70px;
    animation:show 1s ease;
    }
    
    .image-box{
    width:320px;
    height:320px;
    border-radius:30px;
    overflow:hidden;
    box-shadow:
    0 0 35px rgba(0,184,107,.3);
    border:2px solid #00b86b;
    }
    
    .image-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    }
    
    h4{
        font-size: 19px;
    }

    .text-box{
    max-width:550px;
    }
    
    .text-box h1{
    font-size:38px;
    color:#00b86b;
    margin-bottom:20px;
    }
    
    .text-box p{
    line-height:2;
    color:#c8d1d8;
    margin-bottom:30px;
    }
    
    button{
    padding:12px 35px;
    border:none;
    border-radius:30px;
    background:#00b86b;
    cursor:pointer;
    transition:.3s;
    }
    button:hover{
    transform:scale(1.05);
    box-shadow:0 0 20px #00b86b;
    }
    
    .cards{
    width:85%;
    margin:auto;
    display:flex;
    gap:25px;
    }
    
    .card{
    flex:1;
    padding:30px;
    background:rgba(255,255,255,.05);
    border-radius:25px;
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.1);
    transition:.3s;
    }
    
    .card:hover{
    transform:translateY(-12px);
    box-shadow:0 15px 35px rgba(0,184,107,.25);
    border-color:#00b86b;
    }

    .card h2{
    color:#00b86b; 
    margin-bottom:15px;
    }
    
    .card p{
    color:#ccc;
    line-height:2;
    }
    
    footer{
    margin-top:100px;
    background:#111820;
    padding:50px 8% 20px;
    }

    .footer-content{
    display:flex;
    justify-content:space-between;
    gap:30px;
    flex-wrap:wrap;
    }
    
    footer h2{
    color:#00b86b;
    margin-bottom:15px;
    }
    
    footer p{
    color:#aaa;
    line-height:2;
    }
    
    .social{
    display:flex;
    flex-direction:column;
    gap:10px;
    }
    
    .social a{
    color:white;
    text-decoration:none;
    transition:.3s;
    }
    
    .social a:hover{
    color:#00b86b;
    transform:translateX(-5px);
    }
    
    .copyright{
    text-align:center;
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid #333;
    color:#777;
    }
    
    
    


    @keyframes show{

    from{
    opacity:0;
    transform:translateY(40px);
    }

    to{
    opacity:1;
    transform:translateY(0);
    }

    }
    
    @media(max-width:768px){
    
    header{
    flex-direction:column;
    height:auto;
    padding:20px;
    }
    
    nav{
    margin-top:20px;
    }
    
    nav a{
    margin:0 8px;
    font-size:14px;
    }
    
    .hero{
    flex-direction:column;
    text-align:center;
    }
    
    .image-box{
    width:230px;
    height:230px;
    }
    
    .text-box h1{
    font-size:28px;
    }
    
    .cards{
    flex-direction:column;
    }
    
    .footer-content{
    flex-direction:column;
    text-align:center;
    }
    
    .social{
    align-items:center;
    }

    }
