@font-face {
    font-family: 'Vazir';
    src: url('./fonts/vazir/Vazirmatn-Medium.woff2') format('woff2');
}


body{
    margin:0;
    padding:0;
    direction:rtl;
    background:#f7f7f7;
    color:#424244;
    font-family:'Vazir';
}


.container{
    width:90%;
    max-width:1200px;

    margin: 0 auto;
}
a{
    text-decoration: none;
    color: #2649d5;
}

/* HEADER */

.site-header{
    background:#fff;
    padding:20px 0;
    border-bottom:1px solid #eee;
}

.site-header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo a{
    text-decoration:none;
    font-size:28px;
    font-weight:bold;
    color:#111;
}

.main-menu ul{
    display:flex;
    gap:20px;
    list-style:none;
    margin:0;
    padding:0;
}

.main-menu a{
    text-decoration:none;
    color:#222;
}

/* HERO */

.hero{
    padding:100px 0;
    text-align:center;
    background:#fff;
}

.hero h1{
    font-size:48px;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    color:#666;
}

.hero-btn{
    display:inline-block;
    margin-top:30px;
    background:#111;
    color:#fff;
    padding:14px 30px;
    border-radius:8px;
    text-decoration:none;
}

/* SERVICES */

.services{
    padding:80px 0;
}

.services .container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.service-box{
    background:#fff;
    padding:30px;
    border-radius:12px;
}

/* BLOG */

.blog-section{
    padding:80px 0;
}

.section-title{
    margin-bottom:40px;
}

.posts-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.post-card{
    background:#fff;
    padding:20px;
    border-radius:12px;
}

.post-card img{
    width:100%;
    border-radius:10px;
}

.post-card h3{
    font-size:20px;
}

.post-card a{
    text-decoration:none;
    color:#111;
}

/* FOOTER */

.site-footer{
    background:#111;
    color:#fff;
    padding:60px 0;
    margin-top:50px;
}

.site-footer .container{
    display:flex;
    justify-content:space-between;
}


/*farima*/
.mt-2{
    margin-top: 60px;
}
.hoghoogh-page-header{
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
}
.hoghoogh-page-header img{
max-width: 500px;
object-fit: contain;
border-radius: 10px;
}
.hoghoogh-container{
    max-width: 1260px;
    margin: 0 auto;
    width: calc(100% - 40px);
}
.hoghoogh-page-header-h1{
    font-size: 22pt;
    color: #1c1c29;
}
.hoghoogh-quick-links ul{
list-style: none;
margin: 0;
}
.hoghoogh-quick-links {
    background: #f1f1f1;
    padding: 15px 0;
    border-radius: 7px;
}
.hoghoogh-container h2{
    margin-bottom: 10px;
    font-size: 18pt;
    font-weight: 600;
}
.hoghoogh-container h3{
    margin-bottom: 10px;
    font-size: 14pt;
    font-weight: 600;
}
.hoghoogh-container p{
    margin:5px 0;
}
.law-job-img ,.law-hero-img{
    width: calc(100% - 15px);
    border-radius: 15px;
    object-fit: contain;
    margin-bottom: 10px;
}
/* MOBILE */
@media(max-width:960px){
    .hoghoogh-page-header{
        flex-flow: column;
        margin-top: 20px;
    }

}
@media(max-width:768px){

    .services .container,
    .posts-grid{
        grid-template-columns:1fr;
    }

    .site-header .container{
        flex-direction:column;
        gap:20px;
    }

    .hero h1{
        font-size:32px;
    }

}