#blog{
            line-height: 1.6;
            background: linear-gradient(60deg, #04145f 0%, rgb(4 13 55) 100%);
            min-height: 100vh;
            padding:20px;
	            .container {
            /*max-width: 1200px;*/
            margin: 0 auto;
            padding: 20px;
        }

        .blogs-stats {
            text-align: center;
            color: white;
            margin-bottom: 30px;
            opacity: 0.8;
            animation: fadeInUp 1s ease-out 0.1s both;
        }


        .blog-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.6s ease-out;
            /*opacity: 0;*/
            transform: translateY(0px);
        }

        .blog-card.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        .blog-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
        }

        .blog-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            font-size: 0.9rem;
            color: #666;
        }

        .blog-date {
            background: #f8f9fa;
            padding: 5px 12px;
            border-radius: 20px;
            font-weight: 500;
        }

        .blog-status {
            padding: 5px 12px;
            border-radius: 20px;
            font-weight: 500;
            text-transform: uppercase;
            font-size: 0.8rem;
        }

        .status-active {
            background: #d4edda;
            color: #155724;
        }

        .status-inactive {
            background: #f8d7da;
            color: #721c24;
        }

        .blog-id {
            background: #e9ecef;
            color: #495057;
            font-size: 0.7rem;
            padding: 3px 8px;
            border-radius: 10px;
        }

        .blog-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
            line-height: 1.3;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        .blog-card:hover .blog-title {
            color: #667eea;
        }

        .blog-meta-title {
            color: #888;
            font-size: 0.9rem;
            font-style: italic;
            margin-bottom: 10px;
        }

        .blog-description {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
            font-size: 1rem;
        }

        .blog-content {
            color: #555;
            margin-bottom: 25px;
            line-height: 1.7;
            display: -webkit-box;
            /*-webkit-line-clamp: 3;*/
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .blog-keywords {
            margin-bottom: 20px;
        }

        .keyword-tag {
            display: inline-block;
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            padding: 5px 12px;
            margin: 3px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .blog-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        .blog-dates {
            font-size: 0.8rem;
            color: #999;
        }

        .read-more-btn {
            display: inline-block;
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .read-more-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
            text-decoration: none;
            color: white;
        }

        .loading-animation {
            text-align: center;
            color: white;
            margin: 50px 0;
        }

        .spinner {
            border: 4px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            border-top: 4px solid white;
            width: 50px;
            height: 50px;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }

        .load-more-container {
            text-align: center;
            margin: 30px 0;
        }

        .load-more-btn {
            background: rgba(255,255,255,0.2);
            color: white;
            border: 2px solid rgba(255,255,255,0.3);
            padding: 15px 30px;
            border-radius: 30px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .load-more-btn:hover {
            background: rgba(255,255,255,0.3);
            transform: translateY(-2px);
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.5rem;
            }
            
            .blogs-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-bottom: 38px;
            }
            
            .blog-card {
                padding: 20px;
            }
            
            .blog-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .blog-footer {
                flex-direction: column;
                gap: 15px;
                align-items: flex-end;
            }
        }

        .search-filter-container {
            max-width: 600px;
            margin: 0 auto 40px;
            padding: 20px;
            background: rgba(255,255,255,0.1);
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        .search-box {
            width: 100%;
            padding: 15px 20px;
            border: none;
            border-radius: 25px;
            font-size: 1rem;
            outline: none;
            background: rgba(255,255,255,0.9);
            margin-bottom: 15px;
        }

        .search-box::placeholder {
            color: #999;
        }

        .filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }

        .filter-tag {
            padding: 8px 16px;
            background: rgba(255,255,255,0.2);
            color: white;
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .filter-tag:hover,
        .filter-tag.active {
            background: rgba(255,255,255,0.3);
            transform: translateY(-2px);
        }
	        }