        @font-face {
            font-family: 'IRANSans';
            src: url('fonts/IRANSansWeb.woff2') format('woff2'),
                url('fonts/IRANSansWeb.woff') format('woff'),
                url('fonts/IRANSansWeb.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'IRANSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
        }

        /* Remove all other font-family declarations */
        .logo-icon,
        .logo-text,
        .hero-title,
        .section-title,
        .card-title,
        .timeline-title,
        .info-value,
        .member-name,
        .committee-title,
        .footer-section h3,
        .stat-value,
        .percentage-value,
        .tab-btn,
        .nav-link,
        .dropdown-item,
        .timeline-year,
        .map-title,
        button,
        input,
        select,
        textarea {
            font-family: 'IRANSans', sans-serif !important;
        }

        :root {
            --primary: #0A3A60;
            --primary-light: #1E6F9F;
            --primary-dark: #072B48;
            --secondary: #2F4858;
            --accent: #D97706;
            --success: #0F9665;
            --warning: #D97706;
            --error: #E63946;

            --text-primary: #1F2937;
            --text-secondary: #4B5563;
            --text-muted: #9CA3AF;
            --text-light: #F3F4F6;

            --bg-primary: #FFFFFF;
            --bg-secondary: #F0F4F8;
            --bg-tertiary: #E5E7EB;

            --border: #E5E7EB;
            --border-light: #F3F4F6;

            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            --radius-2xl: 20px;
            --radius-full: 9999px;

            /* Report Category Colors */
            --market-color: #2563EB;
            --analytical-color: #8B5CF6;
            --performance-color: #10B981;
            --risk-color: #D97706;
            --macro-color: #06B6D4;
        }

        body {
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Scroll Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .slide-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .scale-in {
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* Stagger Animation */
        .stagger-item {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .stagger-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-darker) 100%);
            padding: 10rem 2rem 8rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero-title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            animation: fadeInUp 1s ease-out;
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 3rem;
            line-height: 1.7;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .hero-highlight {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* فقط استایل‌های hero, search-filter-section, category-stats, reports-section, reports-grid, report-card و ... */
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-darker) 100%);
            padding: 10rem 2rem 8rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero-title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            animation: fadeInUp 1s ease-out;
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 3rem;
            line-height: 1.7;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .hero-highlight {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Search & Filter Section */
        .search-filter-section {
            background: var(--bg-primary);
            padding: 3rem 0;
            box-shadow: var(--shadow-sm);
            position: relative;
            z-index: 100;
        }

        .search-filter-section.hidden {
            transform: translateY(-100%);
        }

        .search-filter-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .search-bar {
            background: var(--bg-secondary);
            border-radius: var(--radius-2xl);
            padding: 1rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow-sm);
        }

        .search-input-container {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: white;
            border-radius: var(--radius-xl);
            padding: 1rem 1.5rem;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .search-input-container:focus-within {
            border-color: var(--success);
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
        }

        .search-icon {
            width: 20px;
            height: 20px;
            color: var(--text-muted);
        }

        .search-input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 1rem;
            background: transparent;
            color: var(--text-primary);
        }

        /* Match search button style with news page */
        .search-input-container .btn-primary {
            flex: 0 0 auto;
            padding: 0.8rem 1.2rem;
            border-radius: var(--radius-lg);
        }

        .search-input::placeholder {
            color: var(--text-muted);
        }

        /* Filter Categories */
        .category-stats {
            background: var(--bg-primary);
            padding: 2rem 0;
            border-bottom: 1px solid var(--border);
            transition: transform 0.3s ease;
            z-index: 99;
        }

        .category-stats.hidden {
            transform: translateY(-100%);
        }

        .filter-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .filter-btn {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            color: var(--text-secondary);
            padding: 0.75rem 1.5rem;
            border-radius: var(--radius-xl);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .filter-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .filter-btn.active {
            background: var(--success);
            color: white;
            border-color: var(--success);
            box-shadow: var(--shadow-md);
        }

        .filter-btn .badge {
            background: rgba(255, 255, 255, 0.2);
            color: inherit;
            padding: 0.25rem 0.5rem;
            border-radius: var(--radius-full);
            font-size: 0.8rem;
            font-weight: 500;
        }

        .filter-btn.active .badge {
            background: rgba(255, 255, 255, 0.3);
        }

        /* Reports Grid */
        .reports-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: var(--radius-full);
        }

        .reports-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        /* Report Card */
        .report-card {
            background: var(--bg-primary);
            border-radius: var(--radius-2xl);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            cursor: pointer;
        }

        .report-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary-light);
        }

        .report-card-image {
            position: relative;
            height: 200px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            overflow: hidden;
        }

        .report-card-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
            z-index: 1;
        }

        .report-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            color: rgba(255, 255, 255, 0.9);
            z-index: 2;
        }

        .report-card-category {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(255, 255, 255, 0.9);
            color: var(--text-primary);
            padding: 0.5rem 1rem;
            border-radius: var(--radius-full);
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
        }

        .report-card-content {
            padding: 2rem;
        }

        .report-card-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .report-card-excerpt {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .report-card-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .report-card-date {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .report-card-size {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .report-card-actions {
            display: flex;
            gap: 1rem;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: var(--radius-lg);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            flex: 1;
            justify-content: center;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .btn-secondary {
            background: var(--bg-secondary);
            color: var(--text-secondary);
            padding: 0.75rem 1rem;
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-2px);
        }

        /* Load More Button */
        .load-more-container {
            text-align: center;
            margin-top: 3rem;
        }

        .load-more-btn {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: var(--radius-xl);
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
        }

        .load-more-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .load-more-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        /* Featured Report */
        .featured-report {
            background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
            border-radius: var(--radius-2xl);
            padding: 3rem;
            margin-bottom: 4rem;
            border: 1px solid var(--border-light);
            position: relative;
            overflow: hidden;
        }

        .featured-report::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 80% 20%, rgba(13, 148, 136, 0.05) 0%, transparent 50%);
        }

        .featured-content {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .featured-text h3 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }

        .featured-text p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .featured-actions {
            display: flex;
            gap: 1rem;
        }

        .featured-visual {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .featured-icon {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: var(--radius-2xl);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            box-shadow: var(--shadow-lg);
        }

        /* No Results */
        .no-results {
            text-align: center;
            padding: 4rem 2rem;
            color: var(--text-muted);
        }

        .no-results-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 2rem;
            color: var(--text-muted);
        }

        .no-results h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-secondary);
        }

                /* Floating Particles */
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            animation: float 12s infinite ease-in-out;
        }

        .particle:nth-child(odd) {
            animation-delay: -6s;
        }

        .particle.large {
            width: 6px;
            height: 6px;
            background: rgba(16, 185, 129, 0.8);
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) translateX(0px);
                opacity: 0.4;
            }

            33% {
                transform: translateY(-25px) translateX(15px);
                opacity: 0.8;
            }

            66% {
                transform: translateY(-15px) translateX(-10px);
                opacity: 1;
            }
        }




/* =================================
   اصلاحات ریسپانسیو صفحه گزارشات - report_list_styles.css
   ================================= */

@media (max-width: 768px) {
    .reports-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .report-card {
        max-width: 100%;
    }

    .featured-report {
        padding: 2rem 1.5rem;
    }

    .featured-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .featured-visual {
        order: -1;
        margin-bottom: 1rem;
    }

    .featured-icon {
        width: 80px;
        height: 80px;
    }
}




        /* =================================
   اصلاح دکمه جستجو در صفحات اخبار و گزارشات
   ================================= */

@media (max-width: 768px) {
    /* اصلاح search bar container */
    .search-bar {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }

    .search-input-container {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }

    .search-input {
        width: 100%;
        padding: 0.5rem 0;
        font-size: 0.95rem;
    }

    /* اصلاح دکمه جستجو */
    .search-input-container .btn-primary {
        width: 100% !important;
        padding: 0.875rem 1rem !important;
        font-size: 0.9rem !important;
        border-radius: var(--radius-lg) !important;
        margin: 0 !important;
        max-width: none !important;
    }

    /* جلوگیری از overflow */
    .search-filter-container {
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    .search-bar {
        padding: 0.5rem;
        border-radius: var(--radius-lg);
    }

    .search-input-container {
        padding: 0.75rem;
        gap: 0.5rem;
    }

    .search-input {
        font-size: 0.875rem;
    }

    .search-input-container .btn-primary {
        padding: 0.75rem !important;
        font-size: 0.875rem !important;
    }
}

/* اصلاح دکمه‌های filter */
@media (max-width: 768px) {
    .filter-categories {
        gap: 0.5rem;
        padding: 0 0.5rem;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        padding-bottom: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.875rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .filter-btn .badge {
        padding: 0.15rem 0.4rem;
        font-size: 0.75rem;
    }
}