
        :root {
            --primary-color:  #003366;
            --secondary-color: #64748b;
            --accent-color: #f1f5f9;
            --text-dark: #1e293b;
            --text-light: #64748b;
        }

    

        .blog-card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            margin-bottom: 2rem;
            overflow: hidden;
            /* height: 100%; */
            display: flex;
            flex-direction: column;
        }

        .blog-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }

        .blog-card .card-body {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .blog-card .card-text {
            flex-grow: 1;
            margin-bottom: 1rem;
        }

        /* Ensure equal height cards using CSS Grid */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        @media (min-width: 768px) {
            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }

             .blog-card img {
                height: 150px;
            }
        }

        @media (max-width: 767px) {
            .blog-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }

        .blog-card img {
            height: 200px;
            object-fit: cover;
        }
        
        
        .badge-category {
            background: var(--primary-color);
            color: white;
            font-size: 0.75rem;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
        }

        .sidebar {
            background: var(--accent-color);
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
        }

        .sidebar h5 {
            color: var(--text-dark);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .recent-post {
            display: flex;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #e2e8f0;
        }

        .recent-post:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .recent-post img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
            margin-right: 1rem;
        }

        .tag-cloud .badge {
            background: white;
            color: var(--text-light);
            margin: 0.25rem;
            padding: 0.5rem 0.75rem;
            border: 1px solid #e2e8f0;
            text-decoration: none;
        }

        .tag-cloud .badge:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }

        .pagination .page-link {
            border: none;
            padding: 0.75rem 1rem;
            margin: 0 0.25rem;
            border-radius: 8px;
            color: var(--text-light);
        }

        .pagination .page-item.active .page-link {
            background: var(--primary-color);
            color: white;
        }

        

        .meta-info {
            color: var(--text-light);
            font-size: 0.875rem;
        }

        .meta-info i {
            margin-right: 0.5rem;
        }

        .search-form {
            position: relative;
        }

        .search-form input {
            padding-right: 3rem;
            border-radius: 25px;
            border: 2px solid #e2e8f0;
        }

        .search-form button {
            position: absolute;
            right: 5px;
            top: 5px;
            bottom: 5px;
            background: var(--primary-color);
            border: none;
            border-radius: 20px;
            padding: 0 1rem;
            color: white;
        }
   