

.icons img {
    filter: invert(100%);
}
.nav-links a {
    color: black;
}
.lang-btn {
    color: rgba(0, 0, 0, 0.811);
}
.lang-selector img {
    filter: invert(0%);
    -webkit-filter: invert(0%);
}
 
        /* Single Blog Section */
        .single-blog-section {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .single-blog-container {
            display: flex;
            gap: 30px;
            align-items: flex-start;
        }

        /* Main Blog Content */
        .blog-content {
            flex: 1;
            margin-bottom: 30px;
        }

        .blog-header {
            margin-bottom: 30px;
            text-align: center;
        }

        .blog-main-category {
            display: inline-block;
            background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .blog-main-title {
            font-size: 32px;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .blog-main-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            color: #666;
            font-size: 14px;
            margin-bottom: 30px;
        }

        .blog-main-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .blog-main-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 30px;
        }

        .blog-main-content {
            font-size: 16px;
            line-height: 1.8;
            color: #444;
        }

        .blog-main-content h2 {
            color: #333;
            margin: 30px 0 20px 0;
            font-size: 24px;
        }

        .blog-main-content h3 {
            color: #333;
            margin: 25px 0 15px 0;
            font-size: 20px;
        }

        .blog-main-content p {
            margin-bottom: 20px;
        }

        .blog-main-content ul, .blog-main-content ol {
            margin: 20px 0;
            padding-right: 30px;
        }

        .blog-main-content li {
            margin-bottom: 8px;
        }

        /* Sidebar */
        .sidebar {
            width: 300px;
            border-radius: 15px;
            height: fit-content;
            position: sticky;
            top: 120px;
            background-color: #f4f4f4;

        }

        .sidebar h3 {
            margin-top: 20px;
            font-size: 15px;
            margin-bottom: 20px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #333;
            padding-bottom: 10px;
        }

        .sidebar h4 {
            margin-top: 20px;
            font-size: 15px;
            margin-bottom: 20px;
            font-weight: 600;
            margin: 25px 0 15px 0;
            color: #555;
        }
        .category {
            display: block;
            padding: 10px 15px;
            margin-bottom: 8px;
            color: #666;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 14px;
        }

        .category:hover,
        .category.active {
            background: #ff6b6b;
            color: white;
        }

        .post {
            display: flex;
            gap: 12px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

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

        .post img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
        }

        .post-info h6 {
            font-size: 14px;
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
            line-height: 1.4;
        }

        .post-info small {
            font-size: 12px;
            color: #999;
        }
        .tag {
            background-color: rgba(34, 37, 41, 1);
            display: inline;
            color: white;
            font-size: 12px;
            border-radius: 20px;
            padding: 4px 10px;
            transition: .3s;

        }

        .tag:hover {
            background: #ff6b6b;
            color: white;
        }

        /* Mobile Filter Toggle */
        .filter-toggle {
            display: none;
            position: fixed;
            top: 140px;
            right: 20px;
            background: #ff6b6b;
            color: white;
            border: none;
            border-radius: 50px;
            width: 45px;
            height: 45px;
            font-size: 18px;
            cursor: pointer;
            z-index: 1001;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
            transition: transform 0.3s;
            cursor: cell;
        }
        

        .filter-toggle:hover {
            transform: scale(1.1);
        }

        .filter-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 999999999999999999;
        }

        .filter-overlay.active {
            display: block;
        }

        .filter-close {
            display: none;
        }

        /* Share Section */
        .share {
            margin-bottom: 30px;
        }

        .share-post {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 18px;
            color: #333;
            margin-bottom: 20px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icons i {
        color: white;
        padding: 10px 13px;
        margin-left: 10px;
        cursor: pointer;
        transition: .3s;
        }
        .fa-facebook-f {
            background-color: rgba(59, 90, 154, 1);
        }
        .fa-twitter {
            background-color: rgba(26, 169, 225, 1);
        }
        .fa-linkedin-in {
            background-color: rgba(0, 115, 178, 1);
        }
        .fa-google-plus-g {
            background-color: rgba(221, 75, 57, 1);
        }
        .fa-envelope {
            background-color: rgba(221, 75, 57, 1);
        }
        .social-icons i:hover {
            background: #ff6b6b;
            color: white;
            transform: translateY(-2px);
        }

        /* Author Section */
        .author {
            margin-bottom: 30px;
        }

        .author-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 20px;
        }

        .about-author {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .author-img img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
        }

        .author-info {
            flex: 1;
        }

        .author-name {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }

        .author-p {
            color: #666;
            line-height: 1.6;
        }

        /* Suggested Posts */
        .suggested {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-top: 30px;
        }

        .blog {
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
        }

        .blog:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }

        .blog img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }


        .blog h2 {
            font-size: 18px;
            margin: 15px 20px 10px 20px;
            color: #333;
        }

        .blog p {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            margin: 0 20px 20px 20px;
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .single-blog-container {
                flex-direction: column;
            }

            .sidebar {
                position: fixed;
                top: 0;
                right: -3px;
                width: 300px;
                height: 100vh;
                overflow-y: auto;
                z-index: 999999999;
                transition: right 0.3s ease;
                border-radius: 0;
            }

            .sidebar.active {
                right: 0;
            }

            .filter-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .filter-close {
                display: block;
                position: absolute;
                top: 15px;
                left: 15px;
                background: none;
                border: none;
                font-size: 20px;
                color: #666;
                cursor: pointer;
            }

            .blog-content {
                padding: 25px;
            }

            .blog-main-title {
                font-size: 24px;
            }

            .blog-main-meta {
                flex-direction: column;
                gap: 10px;
            }

            .nav-links {
                display: none;
            }

            .about-author {
                flex-direction: column;
                text-align: center;
            }

            .suggested {
                grid-template-columns: repeat(2, 1fr);
            }
            .single-blog-section {
                padding: 0;
            }
            .blog {
                box-shadow: none;
            }
            .blog img {
                margin-bottom: -40px;
            }
        }

        @media (max-width: 480px) {
            .blog-main-title {
                font-size: 20px;
            }

            .blog-content {
                padding: 20px;
            }
            * {
                cursor: default ;            
                
            }
        }
