        
                
        /* Blog Hero */
        .blog-hero {
            padding: 150px 0 100px;
            background: rgb(123 61 255 / 24%);
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
        .blog-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
                        
        }
        
        .blog-hero-container {
            position: relative;
            z-index: 1;
        }
        
        .blog-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--dark-color);
        }
        
        .blog-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            color: var(--gray-color);
        }
        
        /* Blog Content */
        .blog-content {
            background: white;
            max-width: 1200px;
            margin: auto;
        }

           
        .section-title {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #f8f9fa;
            border-radius: 2px;
        }
        
        .section-title p {
            color: var(--gray-color);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .blog-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 50px;
        }
        
        /* Blog Posts */
        .blog-posts {
            display: flex;
            flex-direction: column;
            gap: 50px;
        }

         
        .blog-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            width: 700px;
            
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .blog-img {
            height: auto;
            width: 100%;
            overflow: hidden;
            position: relative;
        }
        
        .blog-img img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .blog-card:hover .blog-img img {
            transform: scale(1.1);
        }
        
        .blog-category {
            position: absolute;
            top: 20px;
            right: 20px;
            background: hsl(259, 100%, 62%);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .blog-content-card {
            padding: 30px;
        }
        
        .blog-meta {
            display: flex;
            margin-bottom: 15px;
            font-size: 0.9rem;
            color: var(--gray-color);
        }
        
        .blog-meta span {
            margin-right: 20px;
            display: flex;
            align-items: center;
        }
        
        .blog-meta i {
            margin-right: 5px;
        }
        
        .blog-content-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark-color);
            line-height: 1.4;
        }
        
        .blog-content-card p {
            color: var(--gray-color);
            margin-bottom: 20px;
        }
        
        .blog-link {
            color: hsl(259, 100%, 62%);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .blog-link i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .blog-link:hover i {
            transform: translateX(5px);
        }
        
        /* Blog Sidebar */
        .blog-sidebar {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        
        .sidebar-widget {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .widget-title {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--dark-color);
            position: relative;
            padding-bottom: 10px;
        }
        
        .widget-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: hsl(259, 100%, 62%);
            border-radius: 2px;
        }
        
        /* Search Widget */
        .search-form {
            display: flex;
        }
        
        .search-input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #e9ecef;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
            outline: none;
        }
        
        .search-btn {
            padding: 12px 20px;
            background: hsl(259, 100%, 62%);
            color: white;
            border: none;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .search-btn:hover {
            background: hsl(259, 100%, 62%);
        }
        
        /* Categories Widget */
        .categories-list {
            list-style: none;
        }
        
        .categories-list li {
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid #f1f3f4;
        }
        
        .categories-list li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .categories-list a {
            color: var(--gray-color);
            text-decoration: none;
            display: flex;
            justify-content: space-between;
            transition: all 0.3s ease;
        }
        
        .categories-list a:hover {
            color: hsl(259, 100%, 62%);
        }
        
        .category-count {
            background: var(--light-color);
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 0.8rem;
        }
        
        /* Recent Posts Widget */
        .recent-posts {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .recent-post {
            display: flex;
            gap: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f1f3f4;
        }
        
        .recent-post:last-child {
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .recent-post-img {
            width: auto;
            height: 80px;
            border-radius: 10px;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .recent-post-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .recent-post-content h4 {
            font-size: 0.9rem;
            margin-bottom: 5px;
            line-height: 1.4;
        }
        
        .recent-post-content h4 a {
            color: var(--dark-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .recent-post-content h4 a:hover {
            color: hsl(259, 100%, 62%);
        }
        
        .recent-post-content span {
            font-size: 0.8rem;
            color: var(--gray-color);
        }
        
        /* Tags Widget */
        .tags-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .tag {
            background: var(--light-color);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            color: var(--dark-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .tag:hover {
            background: hsl(259, 100%, 62%);
            color: white;
        }
        
        /* Newsletter Widget */
        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .newsletter-input {
            padding: 12px 15px;
            border: 1px solid #e9ecef;
            border-radius: 5px;
            font-size: 1rem;
            outline: none;
        }
        
        .newsletter-input:focus {
            border-color: hsl(259, 100%, 62%);
        }
        
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 50px;
        }
        
        .pagination-list {
            display: flex;
            list-style: none;
            gap: 10px;
        }
        
        .pagination-item a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: white;
            color: var(--dark-color);
            text-decoration: none;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .pagination-item.active a,
        .pagination-item a:hover {
            background: hsl(259, 100%, 62%);
            color: white;
        }
        
       
        /* Responsive Styles */
        @media (max-width: 992px) {
            .blog-container {
                grid-template-columns: 1fr;
            }
            
            .blog-sidebar {
                order: -1;
            }
        }
        
        @media (max-width: 768px) {
            
            .blog-hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            section {
                padding: 60px 0;
            }
            
            .blog-hero {
                padding: 120px 0 60px;
            }
            
            .blog-hero h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .blog-content-card {
                padding: 20px;
            }
            
            .blog-meta {
                flex-direction: column;
                gap: 5px;
            }
            
            .sidebar-widget {
                padding: 20px;
            }

            .blog-card {
                width: 100%;
                
            }

         .blog-img {
            height: auto;
            width: 100%;
            
        }
        }
    