      /* Main Blog Image */
        .blog-img {
            margin-bottom: 30px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .blog-img img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .blog-img:hover img {
            transform: scale(1.03);
        }
        
        /* Blog Meta */
        .blog-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 20px;
            align-items: center;
        }
        
        .blog-meta span {
            display: inline-flex;
            align-items: center;
            font-size: 14px;
            color: #6c757d;
        }
        
        .blog-meta i {
            margin-right: 8px;
            color: var(--theme-color);
            font-size: 16px;
        }
        
        /* Content Styling */
        .blog-content {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
        }
        
        .blog-content img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Share Links */
        .share-links {
            margin-top: 40px;
            padding-top: 25px;
            border-top: 1px solid #eee;
        }
        
        .share-links h4 {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .share-links h4 i {
            margin-right: 10px;
            color: var(--theme-color);
        }
        
        .social-links {
            display: flex;
            gap: 10px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #f8f9fa;
            color: #333;
            transition: all 0.3s ease;
            font-size: 16px;
        }
        
        .social-links a:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .social-links a:nth-child(1):hover {
            background: #3b5998;
            color: white;
        }
        
        .social-links a:nth-child(2):hover {
            background: #1da1f2;
            color: white;
        }
        
        .social-links a:nth-child(3):hover {
            background: #0077b5;
            color: white;
        }
        
        .social-links a:nth-child(4):hover {
            background: #25D366;
            color: white;
        }
        
        /* Sidebar Widgets */
        .widget {
            margin-bottom: 40px;
            padding: 25px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .widget_title {
            font-size: 20px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }
        
        .widget_title i {
            margin-right: 10px;
            color: var(--theme-color);
        }
        
        /* Search Widget */
        .search-form {
            position: relative;
        }
        
        .search-form input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #eee;
            border-radius: 8px;
            font-size: 14px;
        }
        
        .search-form button {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            border: none;
            color: #6c757d;
        }
        
        /* Categories Widget */
        .widget_categories ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .widget_categories li {
            margin-bottom: 10px;
        }
        
        .widget_categories li:last-child {
            margin-bottom: 0;
        }
        
        .widget_categories a {
            display: flex;
            align-items: center;
            padding: 10px 0;
            color: #555;
            transition: all 0.3s ease;
        }
        
        .widget_categories a:hover {
            color: var(--theme-color);
            transform: translateX(5px);
            color: white;
        }
        
        .widget_categories a i {
            margin-right: 10px;
            font-size: 12px;
        }
        
        .widget_categories span {
            margin-left: auto;
            background: #f8f9fa;
            padding: 3px 8px;
            border-radius: 20px;
            font-size: 12px;
        }
        
        /* Recent Posts Widget */
        .widget_recent_posts ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .widget_recent_posts li {
            display: flex;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #eee;
        }
        
        .widget_recent_posts li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .post-thumb {
            flex: 0 0 80px;
            margin-right: 15px;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .post-thumb img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .post-thumb:hover img {
            transform: scale(1.1);
        }
        
        .post-content {
            flex: 1;
        }
        
        .post-title {
            font-size: 15px;
            margin-bottom: 5px;
            line-height: 1.4;
        }
        
        .post-title a {
            color: #333;
            transition: all 0.3s ease;
        }
        
        .post-title a:hover {
            color: var(--theme-color);
        }
        
        .post-date {
            font-size: 12px;
            color: #6c757d;
            display: flex;
            align-items: center;
        }
        
        /* Tags Widget */
        .tagcloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .tagcloud a {
            display: inline-block;
            padding: 6px 12px;
            background: #f8f9fa;
            color: #555;
            border-radius: 20px;
            font-size: 12px;
            transition: all 0.3s ease;
        }
        
        .tagcloud a:hover {
            background: var(--theme-color);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Related Posts */
        .related-posts {
            margin-top: 60px;
        }
        
        .sec-title {
            font-size: 28px;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
        }
        
        .sec-title i {
            margin-right: 10px;
            color: var(--theme-color);
        }
        
        .blog-box {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .blog-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .blog-box .blog-img {
            margin-bottom: 0;
            border-radius: 0;
            box-shadow: none;
            flex: 0 0 auto;
        }
        
        .blog-box .blog-img img {
            height: 200px;
            width: 100%;
        }
        
        .blog-box_content {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .blog-box .blog-meta {
            margin-bottom: 10px;
            gap: 10px;
        }
        
        .blog-box .blog-meta a {
            font-size: 12px;
            color: #6c757d;
            display: inline-flex;
            align-items: center;
        }
        
        .blog-box .blog-meta a:hover {
            color: var(--theme-color);
        }
        
        .blog-box .box-title {
            font-size: 18px;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        
        .blog-box .box-title a {
            color: #333;
            transition: all 0.3s ease;
        }
        
        .blog-box .box-title a:hover {
            color: var(--theme-color);
        }
        
        .blog-box .th-btn {
            margin-top: auto;
            align-self: flex-start;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 991px) {
            .blog-img img {
                height: 350px;
            }
        }
        
        @media (max-width: 767px) {
            .blog-img img {
                height: 250px;
            }
            
            .blog-meta {
                gap: 10px;
            }
            
            .widget {
                padding: 20px;
            }
        }
        
        @media (max-width: 575px) {
            .blog-img img {
                height: 200px;
            }
            
            .blog-meta {
                flex-direction: column;
                align-items: flex-start;
            }
        }