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

            body {
                font-family: 'Vazir', sans-serif;
                background-color: #f5f7fa;
                color: #333;
                line-height: 1.8;
                overflow-x: hidden;
            }

            header {
                background-image: url('../header-bg.jpg');
                background-position: center;
                background-size: cover;
                color: white;
                width: 100%;
                padding: 10% 70px;
                animation: slideDown 1s ease-out;
            }

            .header-content {
                display: flex;
                justify-content: space-between;
                align-items: center;
                flex-wrap: wrap;
            }

            .header-content .logo {
                height: 120px;
                animation: fadeIn 1.5s ease-in;
            }

            header h1 {
                font-size: 2em;
                margin: 0;
                flex: 1 1 auto;
            }

            .header-title {
                font-size: 1.8em;
                font-weight: bold;
                text-align: center;
                flex: 1;
                animation: fadeInRight 1.5s ease-in;
            }

            nav.menu {
                text-align: Right;
                background-color: #02528c;
                padding: 10px 0;
                animation: fadeIn 1.5s ease-in;
            }

            nav.menu a {
                color: white;
                text-decoration: none;
                margin: 0 15px;
                font-weight: bold;
                font-size: 1em;
                transition: color 0.3s ease;
            }

            nav.menu a:hover {
                color: #ffdd57;
            }

            .search-box {
                background-color: white;
                max-width: 900px;
                margin: 40px auto;
                padding: 30px 20px;
                border-radius: 12px;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
                text-align: center;
                animation: fadeUp 1.5s ease-in;
                max-width: 100%;
                overflow-x: auto;
                flex: 1 1 300px;
            }


            .search-box h2 {
                margin-bottom: 20px;
                color: #01426a;
                animation: fadeIn 1s ease-in;
            }

            .search-box input {
                width: 100%;
                padding: 12px;
                margin-bottom: 15px;
                border-radius: 8px;
                border: 1px solid #ccc;
                font-size: 1em;
                transition: border 0.3s ease;
            }

            .search-box input:focus {
                border: 1px solid #01426a;
            }

            .form-group {
                display: flex;
                gap: 10px;
                flex-wrap: wrap;
            }

            .form-group input {
                flex: 1;
            }

            .search-box button {
                background-color: #01426a;
                color: white;
                border: none;
                padding: 0px 30px;
                height: 40px;
                border-radius: 8px;
                font-size: 1em;
                cursor: pointer;
                margin-top: 0px;
                transition: background-color 0.3s ease, transform 0.3s ease;
            }

            .search-box button:hover {
                background-color: #02528c;
                transform: scale(1.05);
            }

            .results {
                width: 95%;
                margin: auto;
                border-collapse: collapse;
                font-family: Vazir;
                font-size: 0.8em;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
                max-width: 100%;
                overflow-x: auto;
            }

            .results th {
                background-color: #01426a;
                color: white;
                padding: 10px;
                text-align: center;
                border-bottom: 2px solid #ccc;
            }

            .results td {
                background-color: white;
                padding: 10px;
                text-align: center;
                border-bottom: 1px solid #eee;
            }

            .results tr:hover td {
                background-color: #f0f8ff;
            }

            .search-bar input,
            .search-bar select,
            .search-bar button {
                padding: 10px 14px;
                font-size: 15px;
                border: 1px solid #ccc;
                border-radius: 6px;
            }

            .search-bar button {
                background-color: #0069d9;
                color: white;
                cursor: pointer;
                transition: background-color 0.3s;
            }

            .search-bar button:hover {
                background-color: #004f9e;
                background-size: 100px
            }

            table {
                width: 100%;
                border-collapse: collapse;
                background-color: white;
                box-shadow: 0 0 10px rgba(0,0,0,0.05);
            }

            th, td {
                border: 1px solid #ddd;
                padding: 12px;
                text-align: right;
            }

            th {
                background-color: #eaeaea;
                font-weight: bold;
            }

            tr:hover {
                background-color: #f9f9f9;
            }


            .metrics {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 12px;
            }

            .metric-item {
                background-color: #f0f4f9;
                padding: 10px 15px;
                border-radius: 8px;
                border: 1px solid #dbe4ef;
                font-size: 0.95em;
            }

            .metric-item strong {
                color: #01426a;
                display: block;
                font-weight: bold;
            }

            footer {
                background-image: url('../footer-bg.jpg');
                background-size: cover;
                background-position: center;
                position: relative;
                margin-top: 40px;
            }

            .footer-overlay {
                background-color: rgba(0, 0, 0, 0.8);
                padding: 20px 10px;
                color: white;
                text-align: center;
                width: 100%;
                animation: fadeUp 1.5s ease-in;
            }

            .footer-overlay p {
                font-size: 1em;
                margin-bottom: 12px;
            }

            .copyright {
                margin-top: 10px;
                font-size: 0.9em;
                color: #ccc;
            }

            @keyframes fadeIn {
                from { opacity: 0; }
                to { opacity: 1; }
            }

            @keyframes fadeInRight {
                from { opacity: 0; transform: translateX(50px); }
                to { opacity: 1; transform: translateX(0); }
            }

            @keyframes fadeUp {
                from { opacity: 0; transform: translateY(30px); }
                to { opacity: 1; transform: translateY(0); }
            }

            @keyframes slideUp {
                from { opacity: 0; transform: translateY(100px); }
                to { opacity: 1; transform: translateY(0); }
            }

            @keyframes slideDown {
                from { opacity: 0; transform: translateY(-100px); }
                to { opacity: 1; transform: translateY(0); }
            }

            @media (max-width: 600px) {
                .header-title {
                    font-size: 1.4em;
                }
                nav.menu a {
                    display: block;
                    margin: 10px 0;
                }
                .form-group {
                    flex-direction: column;
                }
            }