.hero-qesmat {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    margin-bottom: 80px;
}
.hero-qesmat h3 {
    color: white;
    font-weight: bold;
}
.hero-qesmat .movie-image{
    width: 100%;
    padding-top: 56.25%;
    border-radius: 1rem;
    background-size: cover;
    background-position: center;
}

.blog-section {
    padding: 40px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.filter-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.filter-select {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 12px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 200px;
}

.filter-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}
.cat-item {
    padding: 8px 16px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    text-decoration: none;
    color: #495057;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0;
}

.cat-item:hover,
.cat-item.active {
    background: #007bff;
    color: white;
    text-decoration: none;
}

.form-select {
    min-width: 150px;
}
.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-card-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 20px;
}

.blog-card-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
}

.blog-card-excerpt {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #888;
}

.blog-card-date {
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 20px;
}

.blog-card-category {
    /*background: #667eea;*/
    color: rgba(73, 73, 73, 0.67);
    padding: 5px 10px;
    border-radius: 20px;
    text-decoration: none;
}

.blog-card-category:hover {
    color: rgba(73, 73, 73, 0.85);
}

/* صفحه‌بندی */
.pagination {
    justify-content: center;
    margin-top: 40px;
}
.pagination ul{
    display: flex;
}
.page-numbers li {
    color: #667eea;
    border: 2px solid #e9ecef;
    padding: 12px 20px;
    margin: 0 5px;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.page-numbers li:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}
.page-numbers li a{
    text-decoration: none;
}
.page-numbers li:hover a{
    color: white;
}
.page-numbers.curent  {
    background: #667eea;
    border-color: #667eea;
}

/* رسپانسیو */
@media (max-width: 768px) {
    .hero-qesmat {
        padding: 40px 0;
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 2rem;
    }

    .slide-title {
        font-size: 1.1rem;
    }

    .filter-section {
        padding: 20px;
    }
}