
        
        /* Blog Listing Styles */
        .blog-listing {
            padding-top: 150px;
            padding-bottom: 80px;
        }
        
        .page-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .page-header h1 {
            font-size: 2.5rem;
            color: var(--dark);
        }
        
        .page-header p {
            color: var(--gray);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .blog-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
        }
        
        .blog-image {
            height: 200px;
            overflow: hidden;
        }
        
        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .blog-card:hover .blog-image img {
            transform: scale(1.05);
        }
        
        .blog-content {
            padding: 25px;
        }
        
        .blog-meta {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 0.9rem;
            color: var(--gray);
        }
        
        .blog-meta i {
            margin-right: 8px;
        }
        
        .blog-meta div {
            margin-right: 20px;
        }
        
        .blog-content h2 {
            font-size: 1.4rem;
            margin-bottom: 15px;
        }
        
        .blog-content h2 a {
            color: var(--dark);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .blog-content h2 a:hover {
            color: var(--primary);
        }
        
        .blog-excerpt {
            color: var(--gray);
            margin-bottom: 20px;
        }
        
        .read-more {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }
        
        .read-more i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .read-more:hover i {
            transform: translateX(3px);
        }
        
        .pagination {
                  display: flex;
            justify-content: center;
            margin-top: 50px;
        }
      .pagination button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            margin: 0 5px;
            border-radius: 6px;
            background: white;
            color: blue;
            text-decoration: none;
            font-weight: 600;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
       .pagination button:hover, 
      
       .pagination button.active {
            background: blue;
            color: white;
        }
        
/*         .pagination button {

          padding: 6px 12px;
          margin: 0 5px;
          cursor: pointer;
        }
        .pagination button.active {
          background-color: #007BFF;
          color: white;
          border: none;
        }
        /* Categories Section */
        .categories {
            background: white;
            padding: 40px 0;
            margin-bottom: 50px;
            border-radius: 10px;
        }
        
        .categories h2 {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .category-list {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .category-btn {
            padding: 8px 20px;
            background: var(--light);
            color: var(--dark);
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .category-btn:hover, .category-btn.active {
            background: var(--primary);
            color: white;
        }
        
        .page {
          display: none;      /* Hide all pages initially */
          opacity: 0;
          transition: opacity 0.4s ease;
        }
    
        .page.active {
          display: block;     /* Show only the active page */
          opacity: 1;
        }
        
        .fade-in {
          animation: fadeIn 0.5s ease-in-out;
        }
        
            @keyframes fadeIn {
          from { opacity: 0; }
          to { opacity: 1; }
        }
      /* Highlight active button */
        button.active-btn {
          background-color: #007BFF;
          color: white;
          border: none;
          padding: 8px 16px;
          border-radius: 4px;
        }
    
        button {
          margin: 5px;
          padding: 8px 16px;
        }
        .active-btn {
          background-color: #4f46e5;
          color: white;
          font-weight: bold;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .footer-column {
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .blog-grid {
                grid-template-columns: 1fr;
            }
            
            .nav-links {
                flex-direction: column;
                gap: 15px;
            }
            
            .nav-links li {
                margin-left: 0;
            }
            
            .blog-listing {
                padding-top: 180px;
            }
        }
