/* =============================================
   Blog Page Specific Styles
   ============================================= */
        /* Specific Styles for Blog Page Content */
        .blog-hero {
            padding: 160px 0 60px 0;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        .blog-hero .hero-subtitle {
            font-family: var(--font-heading);
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--clr-primary);
            margin-bottom: 12px;
            display: inline-block;
        }
        .blog-hero .hero-title {
            font-family: var(--font-heading);
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 800;
            color: var(--text-white);
            line-height: 1.1;
            margin-bottom: 20px;
            letter-spacing: -0.03em;
        }
        body.light-theme .blog-hero .hero-title {
            color: #0f172a;
        }
        .blog-hero .hero-desc {
            font-size: 18px;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Toolbar & Filters */
        .blog-toolbar-section {
            position: relative;
            z-index: 2;
            margin-bottom: 40px;
        }
        .toolbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            background: rgba(13, 20, 32, 0.45);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 20px 30px;
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
        }
        body.light-theme .toolbar-container {
            background: rgba(255, 255, 255, 0.85);
            border-color: rgba(15, 23, 42, 0.08);
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
        }

        .search-box {
            position: relative;
            max-width: 320px;
            width: 100%;
        }
        .search-box .search-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 14px;
        }
        .search-box input {
            width: 100%;
            padding: 12px 16px 12px 44px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            color: var(--text-white);
            font-family: var(--font-body);
            font-size: 14px;
            outline: none;
            transition: all 0.3s ease;
        }
        body.light-theme .search-box input {
            background: rgba(15, 23, 42, 0.02);
            border-color: rgba(15, 23, 42, 0.08);
            color: #0f172a;
        }
        .search-box input:focus {
            border-color: var(--clr-primary);
            background: rgba(255, 255, 255, 0.06);
            box-shadow: 0 0 15px rgba(0, 212, 255, 0.1);
        }
        body.light-theme .search-box input:focus {
            background: #ffffff;
            box-shadow: 0 0 15px rgba(0, 212, 255, 0.06);
        }

        .blog-filters {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .filter-tab {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: var(--text-muted);
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            font-family: var(--font-body);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }
        body.light-theme .filter-tab {
            border-color: rgba(15, 23, 42, 0.08);
            color: #475569;
        }
        .filter-tab:hover {
            color: var(--clr-primary);
            border-color: var(--clr-primary);
            background: rgba(0, 212, 255, 0.05);
        }
        .filter-tab.active {
            background: var(--clr-primary);
            border-color: var(--clr-primary);
            color: #040814;
            font-weight: 600;
            box-shadow: 0 8px 20px rgba(0, 212, 255, 0.25);
        }
        body.light-theme .filter-tab.active {
            color: #ffffff;
            box-shadow: 0 8px 20px rgba(0, 212, 255, 0.15);
        }

        /* Blog Grid */
        .blog-grid-section {
            position: relative;
            z-index: 2;
            padding-bottom: 120px;
        }
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        @media (max-width: 768px) {
            .blog-grid {
                grid-template-columns: 1fr;
            }
        }

        .blog-card {
            background: rgba(13, 20, 32, 0.45);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
            text-decoration: none;
            position: relative;
        }
        body.light-theme .blog-card {
            background: rgba(255, 255, 255, 0.85);
            border-color: rgba(15, 23, 42, 0.08);
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
        }

        .blog-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            padding: 1px;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(53, 228, 139, 0.1) 100%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }
        body.light-theme .blog-card::before {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(53, 228, 139, 0.1) 100%);
        }

        .blog-card:hover {
            transform: translateY(-8px);
            border-color: rgba(0, 212, 255, 0.2);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.35),
                0 0 25px rgba(0, 212, 255, 0.08);
        }
        body.light-theme .blog-card:hover {
            background: #ffffff;
            border-color: rgba(0, 212, 255, 0.15);
            box-shadow: 
                0 20px 40px rgba(15, 23, 42, 0.06),
                0 0 25px rgba(0, 212, 255, 0.04);
        }
        .blog-card:hover::before {
            opacity: 1;
        }

        .blog-card-image {
            position: relative;
            width: 100%;
            height: 220px;
            overflow: hidden;
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
        }
        .blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .blog-card:hover .blog-card-image img {
            transform: scale(1.08);
        }

        .category-tag {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 2;
            padding: 6px 14px;
            background: var(--clr-primary);
            color: #040814;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            border-radius: 6px;
            box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
        }
        body.light-theme .category-tag {
            color: #ffffff;
            box-shadow: 0 4px 12px rgba(0, 212, 255, 0.15);
        }

        .blog-card-content {
            padding: 28px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        .blog-meta {
            display: flex;
            gap: 15px;
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 14px;
        }
        .blog-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .blog-card-title {
            font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 700;
            color: var(--text-white);
            line-height: 1.4;
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }
        body.light-theme .blog-card-title {
            color: #0f172a;
        }
        .blog-card-desc {
            font-size: 14px;
            color: var(--clr-text-sec);
            line-height: 1.6;
            margin-bottom: 24px;
            flex-grow: 1;
        }
        body.light-theme .blog-card-desc {
            color: #475569;
        }

        .blog-read-more {
            font-size: 13px;
            font-weight: 700;
            color: var(--clr-primary);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: auto;
            transition: gap 0.3s ease;
            text-decoration: none;
        }
        .blog-read-more i {
            transition: transform 0.3s ease;
        }
        .blog-card:hover .blog-read-more i {
            transform: translateX(5px);
        }

        /* No Results */
        .no-results {
            grid-column: 1 / -1;
            text-align: center;
            padding: 60px 0;
            display: none;
        }
        .no-results i {
            font-size: 48px;
            color: var(--text-muted);
            margin-bottom: 16px;
        }
        .no-results h3 {
            font-family: var(--font-heading);
            font-size: 22px;
            margin-bottom: 8px;
            color: var(--text-white);
        }
        body.light-theme .no-results h3 {
            color: #0f172a;
        }
        .no-results p {
            color: var(--text-muted);
        }
