        /* Reset और Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Mangal', 'Priyavada', 'Noto Sans Devanagari', sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header और Navigation */
        header {
            background-color: rgba(220, 20, 60, 0.95);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        header.scrolled {
            background-color: rgba(220, 20, 60, 0.98);
            padding: 5px 0;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            display: flex;
            align-items: center;
            margin-right: 15px;
        }
        
        .moon-sun {
            width: 40px;
            height: 40px;
            background: linear-gradient(to right, #fff 50%, #003893 50%);
            border-radius: 50%;
            position: relative;
        }
        
        .moon-sun:after {
            content: "";
            position: absolute;
            top: 5px;
            left: 5px;
            width: 12px;
            height: 12px;
            background-color: #fff;
            border-radius: 50%;
            box-shadow: 15px 0 0 0 #003893;
        }
        
        .logo-text h1 {
            font-size: 1.5rem;
            color: white;
            font-weight: bold;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 25px;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            transition: color 0.3s;
            padding: 5px 10px;
            border-radius: 4px;
        }
        
        .nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        .nav-links a.active {
            background-color: rgba(255, 255, 255, 0.3);
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            color: white;
            font-size: 1.5rem;
        }
        
        /* Main Content */
        .main-content {
            min-height: 100vh;
        }
        
        .page-header {
            background: linear-gradient(rgba(0, 56, 147, 0.9), rgba(220, 20, 60, 0.9)), 
                        url('images/bg.png');
            background-size: cover;
            background-position: center;
            padding: 80px 0 50px;
            text-align: center;
            color: white;
            margin-bottom: 40px;
        }
        
        .page-title {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #FFD700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .page-subtitle {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto;
            color: white;
        }
        
        /* Search and Filter Section */
        .filter-section {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 40px;
        }
        
        .filter-title {
            color: #003893;
            margin-bottom: 25px;
            font-size: 1.8rem;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        
        .filter-title:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: #dc143c;
        }
        
        .filter-row {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 25px;
            align-items: flex-end;
        }
        
        .filter-group {
            flex: 1;
            min-width: 250px;
        }
        
        .filter-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #003893;
        }
        
        .filter-select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
            background-color: #f9f9f9;
            color: #333;
        }
        
        .filter-select:focus {
            outline: none;
            border-color: #003893;
        }
        
        .date-range {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .date-input {
            flex: 1;
            min-width: 200px;
        }
        
        .date-input input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            color: #333;
            background-color: white;
        }
        
        .date-input input:focus {
            outline: none;
            border-color: #003893;
        }
        
        .search-box {
            flex: 2;
            min-width: 300px;
            position: relative;
        }
        
        .search-input {
            width: 100%;
            padding: 12px 45px 12px 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            color: #333;
            background-color: white;
        }
        
        .search-input:focus {
            outline: none;
            border-color: #003893;
        }
        
        .search-button {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #003893;
            font-size: 1.2rem;
            cursor: pointer;
        }
        
        .filter-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 10px;
        }
        
        .filter-btn {
            padding: 12px 30px;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            color: white;
        }
        
        .apply-filter {
            background-color: #dc143c;
        }
        
        .reset-filter {
            background-color: #003893;
        }
        
        .filter-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Information Grid */
        .information-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .info-card {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid #eaeaea;
        }
        
        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .info-header {
            padding: 25px 25px 15px;
            background: linear-gradient(135deg, #003893 0%, #002a6e 100%);
            color: white;
            position: relative;
        }
        
        .info-date {
            display: inline-block;
            padding: 8px 20px;
            background-color: #dc143c;
            color: white;
            border-radius: 30px;
            font-weight: bold;
            font-size: 0.9rem;
            margin-bottom: 15px;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .info-category {
            position: absolute;
            top: 20px;
            right: 20px;
            padding: 6px 15px;
            background-color: #FFD700;
            color: #333;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: bold;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .info-header h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: white;
            line-height: 1.4;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
        }
        
        .info-body {
            padding: 25px;
            flex-grow: 1;
        }
        
        .info-body p {
            margin-bottom: 20px;
            color: #444;
            line-height: 1.8;
            font-size: 1rem;
        }
        
        .info-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .info-tag {
            padding: 6px 15px;
            background-color: #eef5ff;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #003893;
            font-weight: 500;
            border: 1px solid #d1e3ff;
        }
        
        .info-footer {
            padding: 20px 25px;
            background-color: #f8faff;
            border-top: 1px solid #eaeaea;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .download-btn {
            background-color: #dc143c;
            color: white;
            padding: 10px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 2px solid transparent;
        }
        
        .download-btn:hover {
            background-color: #003893;
            transform: scale(1.05);
            border-color: #dc143c;
        }
        
        .info-type {
            color: #555;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
        }
        
        .info-type i {
            color: #dc143c;
        }
        
        /* No Results Message */
        .no-results {
            text-align: center;
            padding: 60px 20px;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            grid-column: 1 / -1;
            border: 1px solid #eaeaea;
        }
        
        .no-results i {
            font-size: 4rem;
            color: #dc143c;
            margin-bottom: 20px;
            opacity: 0.7;
        }
        
        .no-results h3 {
            color: #003893;
            margin-bottom: 10px;
            font-size: 1.8rem;
        }
        
        .no-results p {
            color: #666;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 40px;
            margin-bottom: 40px;
        }
        
        .pagination button {
            padding: 10px 20px;
            border: 2px solid #ddd;
            background-color: white;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: bold;
            color: #333;
            min-width: 45px;
        }
        
        .pagination button.active {
            background-color: #003893;
            color: white;
            border-color: #003893;
        }
        
        .pagination button:hover:not(.active) {
            background-color: #eef5ff;
            border-color: #003893;
            color: #003893;
        }
        
        .pagination button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            background-color: #f5f5f5;
        }
        
        /* Placeholder styling for date inputs */
        ::placeholder {
            color: #888;
            opacity: 1;
        }
        
        :-ms-input-placeholder {
            color: #888;
        }
        
        ::-ms-input-placeholder {
            color: #888;
        }
        
        /* Footer */
        footer {
            background-color: #003893;
            color: white;
            padding: 60px 0 20px;
            margin-top: 80px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #FFD700;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: #dc143c;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #FFD700;
            padding-left: 5px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background-color: #dc143c;
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #ddd;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .information-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
            
            .filter-row {
                flex-direction: column;
            }
            
            .search-box {
                min-width: 100%;
            }
            
            .page-title {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                flex-direction: column;
                background-color: rgba(220, 20, 60, 0.98);
                padding: 20px 0;
                transition: left 0.3s ease;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 10px 0;
                text-align: center;
            }
            
            .page-title {
                font-size: 2.2rem;
            }
            
            .page-subtitle {
                font-size: 1.2rem;
                padding: 0 15px;
            }
            
            .information-grid {
                grid-template-columns: 1fr;
            }
            
            .info-footer {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
            
            .filter-section {
                padding: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .page-title {
                font-size: 1.8rem;
            }
            
            .date-range {
                flex-direction: column;
            }
            
            .date-input {
                min-width: 100%;
            }
            
            .filter-buttons {
                flex-direction: column;
            }
            
            .filter-btn {
                width: 100%;
            }
            
            .info-card {
                margin: 0 10px;
            }
        }
        
        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s, transform 0.8s;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Fix for date input color in Safari */
        input[type="date"] {
            color: #333;
        }
        
        input[type="date"]::-webkit-calendar-picker-indicator {
            filter: invert(0.3);
        }
        
        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: #003893;
            border-radius: 5px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: #dc143c;
        }
