  

        .sidebar-page-container { 
    padding: 50px 0px 0px !important;
}
         
        .news-block-two .inner-box {
            display: flex;
            background: #fff;
            border-radius: 20px;
            margin-bottom: 35px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 110, 255, 0.05);
            border: 1px solid #eef2f7;
            transition: all 0.4s ease;
            min-height: 300px; /* Equal look for all cards */
        }
        .news-block-two .inner-box:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); }

        /* Left Image Section */
        .image-box { position: relative; width: 45%; padding: 15px; }
        .image-inner { width: 100%; height: 100%; overflow: hidden; border-radius: 15px; position: relative; }
        .image-inner img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s ease; }
        .inner-box:hover img { transform: scale(1.1); }

        /* Social Icons Overlay */
        .blog-social-media { position: absolute; bottom: 20px; left: 0; right: 0; z-index: 5; }
        .blog-social-media ul { padding: 0; margin: 0; list-style: none; display: flex; justify-content: center; gap: 10px; }
        .blog-social-media ul li a {
            width: 35px; height: 35px; display: flex; align-items: center; justify-content: center;
            border-radius: 50%; color: #fff; font-size: 14px; text-decoration: none; transition: 0.3s;
        }
        .bg-fb { background: #1877F2; } .bg-x { background: #000; } .bg-in { background: #0077b5; }
        .bg-insta { background: #E4405F; } .bg-yt { background: #FF0000; }
        .blog-social-media ul li a:hover { transform: translateY(-3px); filter: brightness(1.2); }

        /* Right Content Section */
        .content-box { width: 55%; padding: 30px; display: flex; flex-direction: column; justify-content: center; }
        .category-tag {
            background: #008ecc; color: #fff; padding: 10px 20px; border-radius: 12px;
            font-size: 14px; font-weight: 700; display: inline-block; margin-bottom: 18px;
            text-decoration: none; width: fit-content; box-shadow: 0 4px 10px rgba(0,142,204,0.2);
        }
        .content-box .text { font-size: 15px; color: #5a5a5a; line-height: 1.8; margin-bottom: 25px; border-bottom: 1px solid #f0f0f0; padding-bottom: 15px; }

        /* Button Hover Blue */
        .blog-btn-design a {
            background: #222; color: #fff; padding: 12px 28px; border-radius: 50px;
            font-size: 14px; text-decoration: none; transition: 0.4s; display: inline-flex; align-items: center; gap: 8px;
        }
        .blog-btn-design a:hover { background: #008ecc; transform: scale(1.05); }

        /* --- Attractive Sidebar Widgets --- */
        .sidebar-widget { background: #fff; padding: 25px; border-radius: 20px; margin-bottom: 30px; border: 1px solid #eef2f7; box-shadow: 0 5px 15px rgba(0,0,0,0.02); }
        .widget-title { border-left: 4px solid #008ecc; padding-left: 15px; margin-bottom: 25px; }
        .widget-title h3 { font-size: 19px; font-weight: 700; margin: 0; color: #1a1a1a; }

        /* Search Box */
        .search-inner .form-group { position: relative; }
        .search-inner input { width: 100%; border: 1px solid #e1e8ef; background: #f9fbff; padding: 14px 18px; border-radius: 15px; outline: none; transition: 0.3s; }
        .search-inner input:focus { border-color: #008ecc; background: #fff; }
        .search-inner button { position: absolute; right: 6px; top: 6px; background: #008ecc; color: #fff; border: none; width: 42px; height: 42px; border-radius: 12px; transition: 0.3s; }
        .search-inner button:hover { background: #222; }

        /* Attractive Tags */
        .tags-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
        .tags-list li a {
            background: #f1f6fb; padding: 8px 18px; border-radius: 12px; color: #445;
            text-decoration: none; font-size: 13px; font-weight: 600; transition: 0.3s; border: 1px solid transparent;
        }
        .tags-list li a:hover { background: #fff; color: #008ecc; border-color: #008ecc; transform: translateY(-2px); box-shadow: 0 5px 10px rgba(0,142,204,0.1); }

        /* Modern Categories */
        .category-list { list-style: none; padding: 0; }
        .category-list li { margin-bottom: 10px; border-radius: 12px; transition: 0.3s; }
        .category-list li a {
            text-decoration: none; color: #444; font-weight: 600; font-size: 14px;
            display: flex; align-items: center; justify-content: space-between; padding: 12px 15px;
            background: #f9fbff; border-radius: 12px; transition: 0.3s;
        }
        .category-list li a i { font-size: 12px; color: #008ecc; transition: 0.3s; }
        .category-list li a:hover { background: #008ecc; color: #fff; transform: translateX(5px); }
        .category-list li a:hover i { color: #fff; transform: translateX(3px); }

        /* --- Pagination (Same as Screenshot) --- */
        .pagination { display: flex; gap: 10px; list-style: none; padding: 0; margin-top: 20px; }
        .pagination li span {
            width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
            border-radius: 50%; border: 1px solid #ddd; background: #fff; color: #333; font-weight: 600; transition: 0.3s; cursor: pointer;
        }
        .pagination li.active span { background: #008ecc; color: #fff; border-color: #008ecc; }
        .pagination li.prev-next span { background: #000; color: #fff; border: none; }
        .pagination li:hover span:not(.active) { background: #f0f0f0; }

        @media (max-width: 991px) {
            .news-block-two .inner-box { flex-direction: column; }
            .image-box, .content-box { width: 100%; }
            .image-box { height: 250px; }
        }
    