   
        :root {
                 --primary: #F20F0B;
            --secondary: #efbe1b;
            --dark: #2c3e50;
            --light: #f8f9fa;
            --gray: #95a5a6;
            --light-gray: #e0e0e0;
            --transition: all 0.3s ease;
        }
        
     
        
   
        
        .blog-deail-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 0 100px;
            display: flex;
            gap: 40px;
        }
        
        .main-content {
            flex: 1;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 0px 8px;
            max-width: 800px;
            border-top: #F20F0B solid 2px;
        }
        
        .sidebar {
            width: 300px;
        }
        
        /* Header */
        .blog-header {
            margin: 40px 0 30px;
        }
        
        .blog-category {
            display: inline-block;
            background: var(--secondary);
            color: white;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }
        
        .blog-title {
            font-size: 36px;
            color: var(--dark);
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .blog-meta {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            color: var(--gray);
            font-size: 14px;
        }
        
        .blog-meta-item {
            display: flex;
            align-items: center;
            margin-right: 20px;
        }
        
        .blog-meta-item i {
            margin-right: 8px;
            color: var(--primary);
        }
        
        .blog-author {
            display: flex;
            align-items: center;
        }
        
        .blog-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .blog-author-info h4 {
            font-size: 16px;
            color: var(--dark);
            margin-bottom: 5px;
        }
        
        .blog-author-info p {
            font-size: 13px;
            color: var(--gray);
        }
        
        /* Featured Image */
        .featured-image {
            margin-bottom: 40px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Blog Content */
        .blog-content {
            font-size: 16px;
            line-height: 1.8;
            color: #444;
            border-bottom: solid 0.5px #333;
        }
        
        .blog-content p {
            margin-bottom: 25px;
        }
        
        .blog-content h2 {
            font-size: 28px;
            color: var(--dark);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light-gray);
            position: relative;
        }
        
        .blog-content h2:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 2px;
            background: var(--primary);
            bottom: -2px;
            left: 0;
        }
        
        .blog-content h3 {
            font-size: 22px;
            color: var(--dark);
            margin: 30px 0 15px;
        }
        
        .blog-content blockquote {
            border-left: 4px solid var(--primary);
            background: #f8f9fa;
            padding: 20px 25px;
            margin: 30px 0;
            font-style: italic;
            color: var(--dark);
        }
        
        .blog-content ul, 
        .blog-content ol {
            margin: 20px 0;
            padding-left: 30px;
        }
        
        .blog-content li {
            margin-bottom: 10px;
        }
        
        .content-image {
            margin: 30px 0;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .content-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .image-caption {
            text-align: center;
            font-size: 14px;
            color: var(--gray);
            margin-top: 10px;
            font-style: italic;
        }
        
        /* Tags */
        .blog-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 40px 0;
        }
        
        .tag {
            display: inline-block;
            background: #f0f0f0;
            color: var(--dark);
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 13px;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .tag:hover {
            background: var(--primary);
            color: white;
        }
        
        /* Author Box */
        .author-box {
            background: #fff;
            border-radius: 8px;
            padding: 30px;
            
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            display: flex;
            gap: 25px;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h3 {
            font-size: 20px;
            color: var(--dark);
            margin-bottom: 10px;
        }
        
        .author-info p {
            color: #666;
            margin-bottom: 15px;
            font-size: 15px;
        }
        
        .author-social {
            display: flex;
            gap: 15px;
        }
        
        .author-social a {
            color: var(--gray);
            font-size: 16px;
            transition: var(--transition);
        }
        
        .author-social a:hover {
            color: var(--primary);
        }
        
        /* Comments */
        .comments-section {
            margin: 50px 0;
        }
        
        .section-title {
            font-size: 24px;
            color: var(--dark);
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background: var(--secondary);
            bottom: 0;
            left: 0;
        }
        
        .comment {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid var(--light-gray);
        }
        
        .comment-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .comment-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .comment-content {
            flex: 1;
        }
        
        .comment-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        
        .comment-author {
            font-size: 16px;
            font-weight: 600;
            color: var(--dark);
        }
        
        .comment-date {
            font-size: 13px;
            color: var(--gray);
        }
        
        .comment-text {
            color: #555;
            margin-bottom: 15px;
        }
        
        .comment-reply {
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .comment-reply:hover {
            color: var(--secondary);
        }
        
        .comment-reply i {
            margin-right: 5px;
        }
        
        /* Comment Form */
        .comment-form {
            background: #fff;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-top: 50px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--light-gray);
            border-radius: 5px;
            font-size: 15px;
            transition: var(--transition);
        }
        
        .form-control:focus {
            border-color: var(--primary);
            outline: none;
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .submit-btn:hover {
            background: var(--secondary);
        }
        
        /* Related Posts */
        .related-posts {
            margin: 50px 0;
        }
        
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .related-post {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        
        .related-post:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .related-post-img {
            height: 160px;
            overflow: hidden;
        }
        
        .related-post-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .related-post:hover .related-post-img img {
            transform: scale(1.05);
        }
        
        .related-post-content {
            padding: 20px;
        }
        
        .related-post-date {
            font-size: 12px;
            color: var(--gray);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }
        
        .related-post-date i {
            margin-right: 5px;
            font-size: 11px;
        }
        
        .related-post-title {
            font-size: 16px;
            color: var(--dark);
            line-height: 1.4;
            margin-bottom: 10px;
        }
        
        .related-post-title a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .related-post-title a:hover {
            color: var(--primary);
        }
        
        .read-more-link {
            display: inline-flex;
            align-items: center;
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .read-more-link:hover {
            color: var(--secondary);
        }
        
        .read-more-link i {
            margin-left: 5px;
            font-size: 12px;
            transition: var(--transition);
        }
        
        .read-more-link:hover i {
            transform: translateX(3px);
        }
        
        /* Sidebar Widgets */
        .sidebar-widget {
            background: #fff;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .widget-title {
            font-size: 18px;
            color: var(--dark);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light-gray);
            position: relative;
        }
        
        .widget-title:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 2px;
            background: var(--primary);
            bottom: -2px;
            left: 0;
        }
        
        /* Search Widget */
        .search-form {
            position: relative;
        }
        
        .search-input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--light-gray);
            border-radius: 30px;
            font-size: 14px;
            outline: none;
            transition: var(--transition);
        }
        
        .search-input:focus {
            border-color: var(--primary);
        }
        
        .search-button {
            position: absolute;
            right: 5px;
            top: 5px;
            background: var(--primary);
            color: white;
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .search-button:hover {
            background: var(--secondary);
        }
        
        /* Popular Posts Widget */
        .popular-post {
            display: flex;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed var(--light-gray);
        }
        
        .popular-post:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .popular-post-img {
            width: 70px;
            height: 70px;
            border-radius: 5px;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .popular-post-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .popular-post-content h4 {
            font-size: 15px;
            margin-bottom: 5px;
            line-height: 1.4;
        }
        
        .popular-post-content h4 a {
            color: var(--dark);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .popular-post-content h4 a:hover {
            color: var(--primary);
        }
        
        .popular-post-date {
            font-size: 12px;
            color: var(--gray);
            display: flex;
            align-items: center;
        }
        
        .popular-post-date i {
            margin-right: 5px;
            font-size: 11px;
        }
        
        /* Categories Widget */
        .categories-list {
            list-style: none;
        }
        
        .categories-list li {
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px dashed var(--light-gray);
        }
        
        .categories-list li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .categories-list a {
            display: flex;
            justify-content: space-between;
            color: var(--dark);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .categories-list a:hover {
            color: var(--primary);
        }
        
        .categories-list span {
            background: var(--light-gray);
            color: var(--dark);
            font-size: 12px;
            padding: 2px 8px;
            border-radius: 10px;
        }
        
        /* Tags Widget */
        .tags-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .tag-widget {
            display: inline-block;
            background: #f0f0f0;
            color: var(--dark);
            padding: 5px 12px;
            border-radius: 30px;
            font-size: 13px;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .tag-widget:hover {
            background: var(--primary);
            color: white;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .blog-deail-container {
                flex-direction: column;
            }
            
            .sidebar {
                width: 100%;
            }
            
            .author-box {
                flex-direction: column;
                text-align: center;
            }
            
            .author-avatar {
                margin: 0 auto 20px;
            }
            
            .author-social {
                justify-content: center;
            }
        }
        
        @media (max-width: 768px) {
            .blog-title {
                font-size: 28px;
            }
            
            .blog-content h2 {
                font-size: 24px;
            }
            
            .blog-content h3 {
                font-size: 20px;
            }
        }
    