 /* Modern dark theme blog styles */
        .blog-dark-theme {
            background: #0a0a0a;
            color: #ffffff;
            min-height: 100vh;
        }

        .blog-header-section {
            background: #0a0a0a;
            padding: 200px 0 0px;
        }

        .blog-header-section h1 {
            font-size: 48px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #ffffff;
            text-align: left;
        }

        .blog-header-section p {
            font-size: 16px;
            color: #888888;
            margin-bottom: 40px;
            text-align: left;
        }

        .blog-categories {
            display: flex;
            justify-content: flex-start;
            gap: 30px;
            margin-bottom: 50px;
            border-bottom: 1px solid #222;
            padding-bottom: 20px;
        }

        .blog-categories a {
            color: #888;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            padding: 8px 0px;
            transition: all 0.3s ease;
            position: relative;
        }

        .blog-categories a:hover,
        .blog-categories a.active {
            color: #ffffff;
        }

        .blog-categories a.active::after {
            content: '';
            position: absolute;
            bottom: -21px;
            left: 0;
            right: 0;
            height: 2px;
            background: #007bff;
        }

        .blog-main-content {
            background: #0a0a0a;
            padding: 0px 0 60px;
        }

        .blog-article {
            background: #111111;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            border: 1px solid #1a1a1a;
        }

        .blog-article:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            border-color: #333;
        }

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

        .blog-article-content {
            padding: 24px;
        }

        .blog-article-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .blog-category-tag {
            background: #007bff;
            color: #ffffff;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .blog-category-tag.design {
            background: #ff6b6b;
        }

        .blog-category-tag.development {
            background: #4ecdc4;
        }

        .blog-category-tag.javascript {
            background: #f7d794;
            color: #333;
        }

        .blog-category-tag.react {
            background: #61dafb;
            color: #333;
        }

        .blog-category-tag.nextjs {
            background: #000000;
            border: 1px solid #333;
        }

        .blog-date {
            color: #666;
            font-size: 12px;
            font-weight: 500;
        }

        .blog-article-title {
            font-size: 18px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .blog-article-title a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .blog-article-title a:hover {
            color: #007bff;
        }

        .blog-author-info {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .blog-author-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            object-fit: cover;
        }

        .blog-author-name {
            color: #cccccc;
            font-weight: 500;
            font-size: 13px;
        }

        .blog-article-excerpt {
            color: #999999;
            line-height: 1.5;
            margin-bottom: 16px;
            font-size: 14px;
        }

        .blog-read-more {
            color: #007bff;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s ease;
            font-size: 13px;
        }

        .blog-read-more:hover {
            color: #0056b3;
            transform: translateX(3px);
        }

        .blog-read-more i {
            font-size: 12px;
        }

        .blog-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 60px;
        }

        .blog-pagination a,
        .blog-pagination span {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            background: #1a1a1a;
            color: #888;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .blog-pagination a:hover,
        .blog-pagination .current {
            background: #007bff;
            color: #ffffff;
        }

        @media (max-width: 768px) {
            .blog-header-section h1 {
                font-size: 28px;
            }

            .blog-categories {
                flex-wrap: wrap;
                gap: 20px;
            }

            .blog-article-content {
                padding: 20px;
            }

            .blog-article-title {
                font-size: 16px;
            }
        }

        /* Navbar dark theme adjustments */
        .navbar {
            background: #0a0a0a !important;            
        }

        .navbar-brand img {
            filter: brightness(1.2);
        }

        .nav-link {
            color: #cccccc !important;
        }

        .nav-link:hover {
            color: #ffffff !important;
        }

        /* Footer dark theme */
        .footer_area_two {
            background: #0a0a0a !important;           
        }

        

         /* Dark theme article styles */
        .article-dark-theme {
            background: #0a0a0a;
            color: #e0e0e0;
            min-height: 100vh;
        }
        
        .article-header {
            background: #0a0a0a;
            padding: 200px 0 0px;
            text-align: center;
        }
        
        .article-meta-info {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .article-category {
            background: #2a2a2a;
            color: #ffffff;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .article-date {
            color: #888;
            font-size: 14px;
            font-weight: 500;
        }
        
        .article-title {
            font-size: 48px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 30px;
            line-height: 1.2;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .article-breadcrumb {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            color: #888;
            font-size: 14px;
        }
        
        .article-breadcrumb a {
            color: #888;
            text-decoration: none;
        }
        
        .article-breadcrumb a:hover {
            color: var(--saas-blue);
        }
        
        .article-content-section {
            background: #0a0a0a;
            padding: 50px 0;
        }
        
        .article-main-content {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .article-hero-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 40px;
        }
        
        .article-content {
            line-height: 1.8;
            font-size: 16px;
            color: #e0e0e0;
        }
        
        .article-content h2 {
            color: #ffffff;
            font-size: 32px;
            font-weight: 700;
            margin: 40px 0 20px 0;
            line-height: 1.3;
        }
        
        .article-content h3 {
            color: #ffffff;
            font-size: 24px;
            font-weight: 600;
            margin: 30px 0 15px 0;
        }
        
        .article-content p {
            margin-bottom: 20px;
            color: #d0d0d0;
        }
        
        .article-content ul,
        .article-content ol {
            margin: 20px 0;
            padding-left: 30px;
        }
        
        .article-content li {
            margin-bottom: 8px;
            color: #d0d0d0;
        }
        
        .article-content blockquote {
            background: #1a1a1a;
            border-left: 4px solid var(--saas-blue);
            padding: 20px 25px;
            margin: 30px 0;
            border-radius: 8px;
            font-style: italic;
            color: #ffffff;
        }
        
        .article-content pre {
            background: #111111;
            border: 1px solid #333;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            overflow-x: auto;
            font-size: 14px;
            color: #e0e0e0;
        }
        
        .article-content code {
            background: #1a1a1a;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 14px;
            color: var(--saas-blue);
        }
        
        .article-content img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 30px 0;
        }
        
        .article-content a {
            color: var(--saas-blue);
            text-decoration: none;
        }
        
        .article-content a:hover {
            text-decoration: underline;
        }
        
        .article-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 40px 0;
            padding-top: 30px;
            border-top: 1px solid #333;
        }
        
        .article-tag {
            background: #1a1a1a;
            color: #ffffff;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .article-tag:hover {
            background: var(--saas-blue);
            color: #ffffff;
        }
        
        .article-navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 40px 0;
            padding: 30px 0;
            border-top: 1px solid #333;
            border-bottom: 1px solid #333;
        }
        
        .article-nav-link {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #888;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .article-nav-link:hover {
            color: var(--saas-blue);
        }
        
        .article-author-section {
            background: #111111;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .article-author-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .article-author-info h4 {
            color: #ffffff;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .article-author-info p {
            color: #b0b0b0;
            margin: 0;
            line-height: 1.5;
        }
        
        .article-cta-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
            border-radius: 12px;
            padding: 40px;
            text-align: center;
            margin: 60px 0;
        }
        
        .article-cta-section h3 {
            color: #ffffff;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .article-cta-section p {
            color: #b0b0b0;
            font-size: 16px;
            margin-bottom: 25px;
        }
        
        .article-cta-button {
            background: var(--saas-blue);
            color: #ffffff;
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .article-cta-button:hover {
            background: #0056b3;
            color: #ffffff;
            transform: translateY(-2px);
        }
        
        @media (max-width: 768px) {
            .article-title {
                font-size: 32px;
            }
            
            .article-main-content {
                padding: 0 15px;
            }
            
            .article-author-section {
                flex-direction: column;
                text-align: center;
            }
            
            .article-navigation {
                flex-direction: column;
                gap: 20px;
            }
            
            .article-meta-info {
                flex-direction: column;
                gap: 10px;
            }
        }
