body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f4f8;
    color: #333;
    line-height: 1.6;
}
.blog-card {
            background: white;
            border-radius: 10px;
            box-shadow: var(--card-shadow);
            overflow: hidden;
            transition: all 0.3s; 
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .blog-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .blog-body {
            padding: 1.5rem;
        }
           .blog-summary{     
			height: 60px;
			overflow: hidden;
			display: -webkit-box;
			-webkit-box-orient: vertical;
			-webkit-line-clamp: 2;
			line-height: 20px;
			font-size:0.85rem
	}
        .blog-category {
            display: inline-block;
            background: rgba(44, 125, 160, 0.1);
            color: var(--primary-color);
            border-radius: 20px;
            padding: 0.25rem 0.75rem;
            font-size: 0.85rem;
            margin-bottom: 0.75rem;
        }
        
        .blog-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--accent-color); 
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 30px;
        }
        
        .blog-excerpt {
            color: #666;
            margin-bottom: 1rem;
        }
        
        .blog-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: #777;
        }
        
        .blog-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: var(--secondary-color);
            margin-right: 0.5rem;
			text-align: center;
    padding: 3px;
        }
        
        .blog-footer {
            padding: 0.8rem 1.5rem;
            background-color: var(--light-bg);
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #eee;
        }
        
        .read-time {
            color: #777;
            font-size: 0.85rem;
        }
        
        .btn-read {
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 6px;
            padding: 0.4rem 0.8rem;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.3s;text-decoration:none
        }
        
        .btn-read:hover {
            background-color: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .sidebar-card {
            background: white;
            border-radius: 10px;
            box-shadow: var(--card-shadow);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .sidebar-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #eee;
        }
        
        .category-list {
            list-style: none;
            padding: 0;
        }
        
        .category-item {
            padding: 0.5rem 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .category-item:last-child {
            border-bottom: none;
        }
        
        .category-link {
            text-decoration: none;
            color: #555;
            display: flex;
            justify-content: space-between;
            transition: color 0.3s;
        }
        
        .category-link:hover {
            color: var(--primary-color);
        }
        
        .category-count {
            background: rgba(44, 125, 160, 0.1);
            color: var(--primary-color);
            border-radius: 12px;
            padding: 0.1rem 0.5rem;
            font-size: 0.8rem;
        }
        
        .popular-post {
            display: flex;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .popular-post:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .popular-image {
            width: 80px;
            height: 80px;
            border-radius: 6px;
            object-fit: cover;
            margin-right: 1rem;
        }
        
        .popular-title {
            font-size: 0.95rem;
            font-weight: 500;
            margin-bottom: 0.25rem;
        }
        
        .popular-date {
            color: #777;
            font-size: 0.8rem;
        }
        
        .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        
        .tag {
            background: rgba(44, 125, 160, 0.1);
            color: var(--primary-color);
            border-radius: 20px;
            padding: 0.25rem 0.75rem;
            font-size: 0.85rem;
            transition: all 0.3s;
        }
        
        .tag:hover {
            background: var(--primary-color);
            color: white;
        }
        
        .newsletter-form {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            border-radius: 10px;
            padding: 1.5rem;
            color: white;
        }
        
        .pagination {
            justify-content: center;
            margin-top: 2rem;
        }
        
        .page-item.active .page-link {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .page-link {
            color: var(--primary-color);
        }
        
        .featured-post {
            border: 2px solid var(--primary-color);
            position: relative;
        }
        
        .featured-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--primary-color);
            color: white;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        
        .search-container {
            position: relative;
            margin-bottom: 1.5rem;
        }
        
        .search-container input {
            padding-right: 40px;
        }
        
        .search-btn {
            position: absolute;
            right: 5px;
            top: 5px;
            background: transparent;
            border: none;
            color: var(--primary-color);
        }
        
        @media (max-width: 991px) {
            .blog-grid {
                margin-bottom: 2rem;
            }
            
            .sidebar {
                margin-top: 2rem;
            }
        }
        
        @media (max-width: 767px) {
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .popular-post {
                flex-direction: column;
            }
            
            .popular-image {
                width: 100%;
                height: 150px;
                margin-right: 0;
                margin-bottom: 0.5rem;
            }
        }
		.design-process {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
    flex-wrap: wrap;
}.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 1.5rem;
    margin: 0.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    position: relative;
}.step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}.step-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}.blog-body h3 {
    font-size: 1.5rem;
    margin: 1rem 0 0.75rem;
    color: var(--primary-color);
}.blog-body p {
    margin-bottom: 1.5rem;
}