/* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        } 

        
        :root {
            --primary: #1d0cff;
            --secondary: #FF9E1B;
            --accent: #3498db;
            --light: #f8f9fa;
            --dark: #212529; 
            --gray: #393d40;
            --text: #333333;
            --text-light: #7f8c8d;
            --border: #e0e0e0;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --radius: 8px;
        }
        
        body {
            color: var(--text);
            line-height: 1.6;
            background-color: #f9f9f9;
        }
        
        a {
            text-decoration: none;
            color: #03498f;
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: var(--secondary);
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: var(--secondary);
            color: white;
            border: none;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn:hover {
            background-color: #c0392b;
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--accent);
            color: var(--accent);
        }
        
        .btn-outline:hover {
            background-color: var(--accent);
            color: white;
        }
        

        /* Hero Section */
        .blog-hero {
            
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .blog-hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .blog-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
        }
        
        .breadcrumb a {
            color: white;
            margin: 0 5px;
        }
        
        .breadcrumb span {
            margin: 0 5px;
        }
        
        /* Blog Content */
        .blog-container {
            display: flex;
            gap: 30px;
            padding: 50px 0;
        }
        
        .blog-content {
            flex: 2;
            background: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            overflow: hidden;
        }
        
        .blog-meta {
            padding: 20px;
            border-bottom: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .author-info {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-details h4 {
            margin-bottom: 5px;
        }
        
        .post-date {
            color: var(--text-light);
            font-size: 14px;
        }
        
        .reading-time {
            background-color: var(--light);
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 14px;
        }
        
        .featured-image {
            width: 100%;
            height: 400px;
            overflow: hidden;
        }
        
        .featured-image img {
            width: 100%;
            height: 100%;
            /* object-fit: cover; */
        }
        
        .blog-article {
            padding: 30px;
        }
        
        .blog-article h2 {
            margin: 25px 0 15px;
            color: var(--primary);
            font-size: 1.8rem;
        }
        
        .blog-article h3 {
            margin: 20px 0 10px;
            color: var(--primary);
            font-size: 1.4rem;
        }
        
        .blog-article p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .blog-article ul, .blog-article ol {
            margin: 15px 0 15px 30px;
        }
        
        .blog-article li {
            margin-bottom: 8px;
        }
        
        .highlight-box {
            background-color: var(--light);
            border-left: 4px solid var(--accent);
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-light);
            margin-top: 5px;
            font-size: 14px;
        }
        
        .table-container {
            overflow-x: auto;
            margin: 20px 0;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
        }
        
        th, td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }
        
        th {
            background-color: var(--light);
            font-weight: 600;
        }
        
        tr:hover {
            background-color: #f5f5f5;
        }
        
        .tags {
            display: flex;
            flex-wrap: wrap;
            margin: 30px 0;
        }
        
        .tag {
            background-color: var(--light);
            padding: 5px 15px;
            border-radius: 20px;
            margin-right: 10px;
            margin-bottom: 10px;
            font-size: 14px;
        }
        
        .share-buttons {
            display: flex;
            gap: 10px;
            margin: 30px 0;
        }
        
        .share-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: white;
            font-size: 18px;
        }
        
        .facebook { background-color: #3b5998; }
        .twitter { background-color: #1da1f2; }
        .linkedin { background-color: #0077b5; }
        .pinterest { background-color: #bd081c; }
        
        /* Sidebar */
        .blog-sidebar {
            flex: 1;
        }
        
        .sidebar-widget {
            background: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 25px;
            margin-bottom: 30px;
        }
        
        .widget-title {
            font-size: 1.3rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
            color: var(--primary);
        }
        
        .search-form {
            display: flex;
        }
        
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid var(--border);
            border-right: none;
            border-radius: var(--radius) 0 0 var(--radius);
        }
        
        .search-form button {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
        }
        
        .categories-list, .recent-posts {
            list-style: none;
        }
        
        .categories-list li, .recent-posts li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border);
        }
        
        .categories-list li:last-child, .recent-posts li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .categories-list a, .recent-posts a {
            display: flex;
            justify-content: space-between;
            color: var(--text);
        }
        
        .categories-list a:hover, .recent-posts a:hover {
            color: var(--accent);
        }
        
        .categories-list span {
            background-color: var(--light);
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 12px;
        }
        
        .recent-post {
            display: flex;
            align-items: center;
        }
        
        .recent-post img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: var(--radius);
            margin-right: 15px;
        }
        
        .recent-post-content h4 {
            font-size: 1rem;
            margin-bottom: 5px;
            line-height: 1.3;
        }
        
        .recent-post-content span {
            font-size: 12px;
            color: var(--text-light);
        }
        
        .cta-widget {
            background: linear-gradient(to right, var(--primary), var(--accent));
            color: white;
            text-align: center;
            padding: 30px 20px;
        }
        
        .cta-widget h3 {
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .cta-widget p {
            margin-bottom: 20px;
        }
        
        /* Related Posts */
        .related-posts {
            padding: 50px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            font-size: 2rem;
            color: var(--primary);
        }
        
        .posts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .post-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }
        
        .post-card:hover {
            transform: translateY(-5px);
        }
        
        .post-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .post-card-content {
            padding: 20px;
        }
        
        .post-card h3 {
            margin-bottom: 10px;
            font-size: 1.2rem;
            line-height: 1.4;
        }
        
        .post-card p {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .post-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            color: var(--text-light);
        }
        
        /* Newsletter */
        .newsletter {
            background: linear-gradient(to right, var(--primary), var(--dark));
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        
        .newsletter h2 {
            margin-bottom: 15px;
        }
        
        .newsletter p {
            max-width: 600px;
            margin: 0 auto 30px;
        }
        
        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: var(--radius) 0 0 var(--radius);
        }
        
        .newsletter-form button {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            font-weight: 600;
        }
      
        /* Responsive Styles */
        @media (max-width: 992px) {
            .blog-container {
                flex-direction: column;
            }
            
            .blog-sidebar {
                order: -1;
            }
            
            .sidebar-widgets {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }
        
        @media (max-width: 768px) {
            
            .contact-info {
                margin-bottom: 10px;
            }
            
           
            
            .blog-hero h1 {
                font-size: 2rem;
            }
            
            .sidebar-widgets {
                grid-template-columns: 1fr;
            }
            
            .posts-grid {
                grid-template-columns: 1fr;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-form input, .newsletter-form button {
                width: 100%;
                padding: 10px;
                border-radius: var(--radius);
                margin-bottom: 10px;
            }
        }

                /* Blog Section Styles */
        .blog-section {
            padding: 0px 0;
            
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 10px;
        }
        
        .section-header h2 {
            font-size: 2rem;
            color: #1e293b;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: linear-gradient(90deg, #3b82f6, #10b981);
            border-radius: 3px;
        }
        
        .section-header p {
            color: #64748b;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 10px auto 0;
        }
        
        .blog-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 40px;
        }
        
        .filter-btn {
            padding: 10px 20px;
            background: #e2e8f0;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background: #3b82f6;
            color: white;
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 25px;
            max-height: 700px;
            overflow-x: scroll;
        }
        
        .blog-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
            border: 1px solid #e2e8f0;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
        }
        
        .blog-contents {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .blog-contents h3 {
            font-size: 1.25rem;
            margin-bottom: 15px;
            color: #1e293b;
            line-height: 1.4;
        }
        
        .blog-contents p {
            color: #64748b;
            margin-bottom: 20px;
            font-size: 0.95rem;
            flex-grow: 1;
        }
        
        .read-more {
            display: inline-flex;
            align-items: center;
            padding: 10px 20px;
            background: #3b82f6;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 500;
            transition: background 0.3s ease;
            margin-top: 15px;
            width: fit-content;
        }
        
        .read-more:hover {
            background: #2563eb;
        }
        
        .read-more i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .read-more:hover i {
            transform: translateX(4px);
        }
        
        .no-results {
            grid-column: 1 / -1;
            text-align: center;
            padding: 40px;
            color: #64748b;
            font-size: 1.1rem;
        }
        
        .no-results i {
            font-size: 3rem;
            color: #e2e8f0;
            margin-bottom: 15px;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .blog-grid {
                grid-template-columns: 1fr;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .blog-filter {
                gap: 8px;
            }
            
            .filter-btn {
                padding: 8px 16px;
                font-size: 0.9rem;
            }
        }
        
        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .blog-card {
            animation: fadeIn 0.5s ease-out;
        }
        
        .category-tag {
            display: inline-block;
            padding: 4px 12px;
            background: #e0f2fe;
            color: #0369a1;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-top: 15px;
            font-weight: 500;
        }
