*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: 'Vazirmatn', sans-serif;
    background:#0b1c3d;
    color:white;
    direction:rtl;
    text-align:right;
}

.container{
    width:90%;
    max-width:1100px;
    margin:auto;
    padding:40px 0;
}

.profile{
    display:flex;
    justify-content:flex-end;
}

.profile-info{
    max-width:400px;
}

.logo{
    width:120px;
    margin-bottom:20px;
}

.profile-img{
    width:130px;
    height:130px;
    border-radius:12px;
    object-fit:cover;
    margin-bottom:15px;
    border:2px solid gold;
}

h1{
    font-size:28px;
    margin-bottom:8px;
}

.title{
    color:#d4af37;
    margin-bottom:25px;
    font-size:16px;
}

.services{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn{
    background:#d4af37;
    color:#0b1c3d;
    padding:10px 20px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.btn:hover{
    background:white;
}

.about{
    margin-top:70px;
    border-top:1px solid rgba(255,255,255,0.2);
    padding-top:30px;
}

.about h2{
    color:#d4af37;
    margin-bottom:10px;
}

.about p{
    line-height:1.9;
}

footer{
    margin-top:60px;
    text-align:center;
    font-size:14px;
    opacity:0.8;
}

@media (max-width:768px){

    .profile{
        justify-content:center;
        text-align:center;
    }

    .profile-info{
        text-align:center;
    }

    .services{
        justify-content:center;
    }

    .about{
        text-align:center;
    }
   footer {
        text-align: center;
    }

    .enamad {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    .enamad img {
        max-width: 120px;
        height: auto;
    }

}
