      .dropdown-item.active {
            background-color: #e9ecef;
            color: #000;
            font-weight: bold;
        }
        .language-selected {
            font-weight: bold;
        }
/* Blog list page css */

        /* .container {
            display: flex;
            min-height: calc(100vh - 80px);
        } */

        .main-content {
            margin-top: 70px;
            min-height: calc(100vh - 70px);
            padding: 3rem;
            background: #ffffff;
            overflow-y: auto;
        }

        .blog-header {
            margin-bottom: 3rem;
            border-bottom: 1px solid #e0e0e0;
            padding-bottom: 2rem;
        }

        .blog-title {
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 0.5rem;
            color: #000000;
        }

        .blog-subtitle {
            color: #666666;
            font-size: 1rem;
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .blog-card {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            background: #ffffff;
            border: 1px solid #000000;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .blog-card:hover {
            box-shadow: 0 0 0 2px #000000;
            transform: translateY(-2px);
        }

        .blog-image {
            width: 100%;
            height: 200px;
            background: #f8f8f8;
            border-bottom: 1px solid #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.05);
        }

        .blog-image-placeholder {
            color: #999999;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-align: center;
        }

        .blog-content {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            padding: 2rem;
        }

        .blog-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #f0f0f0;
        }

        .blog-date {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #666666;
            font-weight: 400;
        }

        .blog-category {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #999999;
            background: #f8f8f8;
            padding: 0.25rem 0.75rem;
            border: 1px solid #e0e0e0;
        }

        .blog-post-title {
            font-size: 1.3rem;
            font-weight: 400;
            margin-bottom: 1rem;
            color: #000000;
            line-height: 1.3;
        }

        .blog-excerpt {
            color: #666666;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .see-more-btn {
            margin-top: auto;
            background: none;
            border: 1px solid #000000;
            padding: 0.75rem 2rem;
            color: #000000;
            font-family: inherit;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            width: auto;
            text-decoration: none;
            text-align: center;
        }

        .see-more-btn:hover {
            background: #000000;
            color: #ffffff;
            transform: translateY(-1px);
        }

        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 3rem;
            padding: 2rem 0;
            border-top: 1px solid #e0e0e0;
        }

        .pagination-container {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .pagination-btn {
            background: none;
            border: 1px solid #000000;
            padding: 0.5rem 1rem;
            color: #000000;
            font-family: inherit;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            min-width: 40px;
        }

        .pagination-btn:hover:not(.active):not(:disabled) {
            background: #f0f0f0;
        }

        .pagination-btn.active {
            background: #000000;
            color: #ffffff;
        }

        .pagination-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .pagination-info {
            margin: 0 1rem;
            font-size: 0.8rem;
            color: #666666;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .blog-grid {
                grid-template-columns: 1fr;
            }

            .main-content {
                margin-left: 0;
                padding: 2rem;
            }

            .sidebar {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .main-content {
                padding: 2rem 1rem;
                margin-top: 70px;
            }

            .blog-title {
                font-size: 2rem;
            }

            .blog-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

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

            .pagination-container {
                flex-wrap: wrap;
                gap: 0.25rem;
            }

            .pagination-info {
                width: 100%;
                text-align: center;
                margin: 1rem 0;
            }
        }

        @media (max-width: 480px) {
            .header {
                padding: 0 1rem;
            }

            .logo {
                font-size: 1.2rem;
            }

            .user-info {
                font-size: 0.8rem;
            }

            .main-content {
                padding: 1.5rem 0.5rem;
            }

            .blog-content {
                padding: 1.5rem;
            }

            .pagination-btn {
                padding: 0.4rem 0.8rem;
                font-size: 0.7rem;
                min-width: 35px;
            }
        }

        /* Blog Detail Css */

        .back-link {
            display: inline-flex;
            align-items: center;
            margin-top: 2rem;
            padding: 0.75rem 1.5rem;
            border: 1px solid #000000;
            color: #000000;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .article_img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 8px;
            max-height: 300px;
        }
        .back-link:hover {
            background: #000000;
            color: #ffffff;
            transform: translateY(-1px);
        }

        .back-link::before {
            content: "‹";
            margin-right: 0.5rem;
            font-size: 1.2rem;
        }

        .article-header {
            border-bottom: 1px solid #e0e0e0;
            padding-bottom: 2rem;
            margin-bottom: 3rem;
        }

        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #f0f0f0;
        }

        .article-date {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #666666;
            font-weight: 400;
        }

        .article-category {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #999999;
            background: #f8f8f8;
            padding: 0.5rem 1rem;
            border: 1px solid #e0e0e0;
        }

        .article-title {
            font-size: 2.5rem;
            font-weight: 300;
            color: #000000;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .article-excerpt {
            font-size: 1.1rem;
            color: #666666;
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .article-content {
            border-top: 1px solid #999999;
            margin-top: 100px;
            font-size: 1rem;
            line-height: 1.8;
            color: #333333;
        }

        .article-content h2 {
            font-size: 1.8rem;
            font-weight: 400;
            color: #000000;
            margin: 2.5rem 0 1.5rem 0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 1px solid #e0e0e0;
            padding-bottom: 0.5rem;
        }

        .article-content h3 {
            font-size: 1.3rem;
            font-weight: 500;
            color: #000000;
            margin: 2rem 0 1rem 0;
            font-style: italic;
        }

        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }

        .article-content blockquote {
            border-left: 4px solid #000000;
            padding-left: 2rem;
            margin: 2rem 0;
            font-style: italic;
            color: #555555;
            background: #f8f8f8;
            padding: 1.5rem 2rem;
        }

        .article-content ul, .article-content ol {
            margin: 1.5rem 0;
            padding-left: 2rem;
            list-style: disc;
        }

        .article-content li {
            margin-bottom: 0.3rem;
        }

        .article-footer {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid #e0e0e0;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .article-quote{
            border-left: 4px solid #000000;
            border-right: 4px solid #000000;
            text-align: center;
            font-style: italic;
            color: #555555;
            background: #f8f8f8;
            padding: 1.5rem 2rem;
        }
        .article-description {
            margin-top: 3rem;
            padding: 2rem;
            background: #f8f8f8;
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            font-size: 1rem;
            line-height: 1.7;
            color: #444444;
            text-align: justify;
            text-align: center;
        }
        .article-tags {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .tag {
            background: #f8f8f8;
            border: 1px solid #e0e0e0;
            padding: 0.25rem 0.75rem;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #666666;
            transition: all 0.3s ease;
        }

        .tag:hover {
            background: #e8e8e8;
            color: #333333;
        }

        .article-share {
            display: flex;
            gap: 0.5rem;
        }

        .share-btn {
            padding: 0.5rem 1rem;
            border: 1px solid #000000;
            background: none;
            color: #000000;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .share-btn:hover {
            background: #000000;
            color: #ffffff;
        }

        .related-articles {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid #e0e0e0;
            padding: 50px;
        }

        .related-title {
            font-size: 1.3rem;
            font-weight: 400;
            color: #000000;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 2rem;
            text-align: center;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .related-card {
            border: 1px solid #e0e0e0;
            padding: 1.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .related-card:hover {
            border-color: #000000;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .related-card-title {
            font-size: 1rem;
            font-weight: 500;
            color: #000000;
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .related-card-excerpt {
            font-size: 0.85rem;
            color: #666666;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 0.75rem;
        }

        .related-card-date {
            font-size: 0.7rem;
            color: #999999;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .article-container {
                padding: 2rem;
            }

            .related-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .article-hero {
                height: 250px;
            }

            .article-container {
                padding: 2rem 1rem;
            }

            .article-title {
                font-size: 2rem;
            }

            .article-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }

            .article-footer {
                flex-direction: column;
                align-items: flex-start;
            }

            .article-content h2 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .header {
                padding: 0 1rem;
            }

            .logo {
                font-size: 1.2rem;
            }

            .user-info {
                font-size: 0.8rem;
            }

            .article-container {
                padding: 1.5rem 0.5rem;
            }

            .article-title {
                font-size: 1.8rem;
            }

            .article-content {
                font-size: 0.95rem;
            }

            .back-link {
                padding: 0.5rem 1rem;
                font-size: 0.7rem;
            }
        }
