   /* Custom Styles for Theme Demo Site */
   :root {
            --primary-color: #0d6efd;
            --secondary-color: #6c757d;
            --light-bg: #f8f9fa;
            --card-shadow: 0 4px 12px rgba(0,0,0,0.08);
            --hover-shadow: 0 8px 24px rgba(0,0,0,0.12);
        }
        
        body {
            background-color: var(--light-bg);
            font-family: 'Poppins', sans-serif;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            padding-top: 80px; /* Space for fixed header */
        }
        
        /* Header Styles */
        .header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            border-bottom: 1px solid #e9ecef;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .search-container {
            position: relative;
            max-width: 600px;
            width: 100%;
        }
        
        .search-box-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }
        
        .search-box {
            border-radius: 50px;
            border: 2px solid #dee2e6;
            padding: 12px 20px 12px 55px;
            width: 100%;
            font-size: 1rem;
            transition: all 0.3s;
            background-color: #f8f9fa;
        }
        
        .search-box:focus {
            box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.25);
            border-color: var(--primary-color);
            background-color: #fff;
        }
        
        .search-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #6c757d;
            font-size: 1.2rem;
            z-index: 2;
        }
        
        .clear-search {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #6c757d;
            font-size: 1.1rem;
            cursor: pointer;
            padding: 5px;
            display: none;
            z-index: 2;
        }
        
        .clear-search:hover {
            color: #dc3545;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
            color: white;
            padding: 60px 0;
            margin-bottom: 40px;
        }
        
        .hero-title {
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .hero-subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Card Styles */
        .demo-card {
            border: none;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: all 0.3s ease;
            height: 100%;
            background-color: #fff;
        }
        
        .demo-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--hover-shadow);
        }
        
        .card-img-top {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.5rem;
            text-align: center;
            padding: 15px;
            transition: transform 0.5s ease;
            position: relative;
            overflow: hidden;
        }
        
        .card-img-top::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
            z-index: 1;
        }
        
        .card-img-text {
            position: relative;
            z-index: 2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        .demo-card:hover .card-img-top {
            transform: scale(1.05);
        }
        
        .card-body {
            padding: 1.5rem;
        }
        
        .card-title {
            font-weight: 600;
            font-size: 1.2rem;
            margin-bottom: 0.75rem;
            color: #212529;
        }
        
        .card-text {
            color: var(--secondary-color);
            margin-bottom: 1.25rem;
            line-height: 1.5;
            font-size: 0.95rem;
        }
        
        .btn-demo {
            background-color: var(--primary-color);
            border: none;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-weight: 500;
            transition: all 0.2s;
            margin-right: 0.5rem;
            font-size: 0.9rem;
        }
        
        .btn-demo:hover {
            background-color: #0b5ed7;
            transform: translateY(-2px);
        }
        
        .btn-buy {
            background-color: #28a745;
            border: none;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-weight: 500;
            transition: all 0.2s;
            font-size: 0.9rem;
        }
        
        .btn-buy:hover {
            background-color: #218838;
            transform: translateY(-2px);
        }
        
        .category-badge {
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            color: white;
        }
        
        /* Search Results Header */
        .search-results-header {
            background-color: #fff;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 30px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            display: none;
        }
        
        .search-results-header.active {
            display: block;
        }
        
        .search-results-count {
            font-size: 1.1rem;
            color: #495057;
            margin: 0;
        }
        
        .search-term {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        /* Pagination Styles */
        .pagination-container {
            margin: 50px 0;
            display: flex;
            justify-content: center;
        }
        
        .pagination {
            --bs-pagination-active-bg: var(--primary-color);
            --bs-pagination-active-border-color: var(--primary-color);
            --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
        }
        
        .page-link {
            color: var(--primary-color);
            border-radius: 8px;
            margin: 0 3px;
            border: 1px solid #dee2e6;
            padding: 10px 15px;
            font-weight: 500;
        }
        
        .page-item.active .page-link {
            border-color: var(--primary-color);
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 15px;
            margin: 20px 0;
            border-radius: 4px;
            font-size: 0.95rem;
        }
        
        /* Footer */
        .footer {
            background-color: #343a40;
            color: #adb5bd;
            padding: 40px 0;
            margin-top: auto;
        }
        
        .footer a {
            color: #f8f9fa;
            text-decoration: none;
        }
        
        .footer a:hover {
            text-decoration: underline;
        }
        
        /* Mobile Styles */
        @media (max-width: 768px) {
            body {
                padding-top: 120px; /* More space for fixed header on mobile */
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .card-img-top {
                height: 180px;
                font-size: 1.2rem;
            }
            
            .card-title {
                font-size: 1.1rem;
            }
            
            .card-text {
                font-size: 0.9rem;
            }
            
            .btn-demo, .btn-buy {
                padding: 0.4rem 0.8rem;
                font-size: 0.85rem;
            }
            
            .search-container {
                margin-top: 15px;
                max-width: 100%;
            }
            
            .header {
                padding: 10px 0;
            }
            
            .logo {
                font-size: 1.5rem;
            }
        }
        
        /* No Results Message */
        .no-results {
            text-align: center;
            padding: 80px 20px;
            display: none;
            background-color: #fff;
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        
        .no-results.active {
            display: block;
        }
        
        .no-results i {
            font-size: 5rem;
            color: #dee2e6;
            margin-bottom: 20px;
        }
        
        .no-results h3 {
            color: #6c757d;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .no-results p {
            color: #6c757d;
            font-size: 1.1rem;
            margin-bottom: 25px;
        }
        
        .no-results .btn {
            padding: 10px 25px;
            font-weight: 500;
        }
        
        /* Content Container */
        .content-container {
            margin-top: 30px;
        }
        
        /* Support Link Styles */
        .support-link {
            display: inline-flex;
            align-items: center;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            transition: all 0.2s;
        }
        
        .support-link:hover {
            background-color: rgba(13, 110, 253, 0.1);
            color: var(--primary-color);
            transform: translateY(-2px);
        }
        
        .support-link i {
            margin-right: 0.5rem;
        }
        
        /* Category Badge Colors */
        .badge-corporate { background-color: #0d6efd; }
        .badge-ecommerce { background-color: #dc3545; }
        .badge-saas { background-color: #198754; }
        .badge-travel { background-color: #6f42c1; }
        .badge-education { background-color: #fd7e14; }
        .badge-restaurant { background-color: #20c997; }
        .badge-realestate { background-color: #0dcaf0; }
        .badge-fitness { background-color: #dc3545; }
        .badge-portfolio { background-color: #6610f2; }
        .badge-events { background-color: #f33f5f; }
        .badge-blog { background-color: #ffc107; color: #212529; }
        .badge-legal { background-color: #212529; }
        .badge-medical { background-color: #17a2b8; }
        .badge-startup { background-color: #e83e8c; }
        .badge-photography { background-color: #6f42c1; }
        .badge-construction { background-color: #fd7e14; }
        .badge-beauty { background-color: #20c997; }
        .badge-religious { background-color: #6c757d; }
        .badge-pets { background-color: #0dcaf0; }
        .badge-automotive { background-color: #dc3545; }
        .badge-landscaping { background-color: #198754; }
        .badge-finance { background-color: #0d6efd; }
        .badge-wedding { background-color: #e83e8c; }
        .badge-hospitality { background-color: #fd7e14; }
        
        /* Card Row Spacing */
        .card-row {
            margin-bottom: 40px; /* Space between rows */
        }
        
        .card-col {
            margin-bottom: 30px; /* Space between cards in the same row */
        }