 /* Full Page Layout */
        body {
            overflow-x: hidden;
            font-family: 'Roboto', sans-serif;
        }
        
        .main-wrapper {
            margin-left: 0;
            width: 100%;
        }
        
        .middle-sidebar-center {
            padding: 0 15px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Header Fix */
        .middle-sidebar-header {
            left: 0;
        }
        
        /* Trending Header */
        .trending-header {
            text-align: center;
            padding: 20px 0;
            margin-bottom: 20px;
        }
        
        .trending-title {
            font-size: 24px;
            font-weight: 700;
            color: #333;
            margin-bottom: 5px;
        }
        
        .trending-subtitle {
            font-size: 14px;
            color: #666;
        }
        
        /* Search Box Section */
        .search-section {
            max-width: 800px;
            margin: 0 auto 15px;
            padding: 0 15px;
        }
        
        .search-container {
            position: relative;
        }
        
        .search-form {
            display: flex;
            width: 100%;
        }
        
        .search-box {
            flex: 1;
            padding: 10px 20px;
            font-size: 14px;
            border: 1px solid #ddd;
            border-radius: 40px;
            outline: none;
            box-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }
        
        .search-button {
            position: absolute;
            right: 5px;
            top: 5px;
            background: transparent;
            border: none;
            padding: 5px 15px;
            border-radius: 40px;
            cursor: pointer;
            color: #555;
        }
        
        /* Trending Searches - Made smaller */
        .trending-searches {
            text-align: center;
            margin: 10px auto;
            max-width: 800px;
        }
        
        .trending-tags-title {
            font-size: 12px;
            color: #555;
            margin-bottom: 8px;
        }
        
        .trending-tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 6px;
        }
        
        .trending-tag {
            background: #f3f3f3;
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.2s;
            color: #065FD4;
            border: 1px solid #e0e0e0;
        }
        
        .trending-tag:hover {
            background: #e0e0e0;
        }
        
        /* Course List View */
        .course-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }
        
        .course-item {
            display: flex;
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            transition: all 0.3s;
            position: relative;
            flex-direction: column;
        }
        
        @media (min-width: 768px) {
            .course-item {
                flex-direction: row;
            }
        }
        
        .trending-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background:white;
			box-shadow:1px 1px 1px 1px silver;
            color: royalblue;
            font-weight: bold;
            padding: 2px 6px;
            border-radius: 3px;
            font-size: 11px;
            z-index: 2;
            display: flex;
            align-items: center;
        }
        
        .trending-icon {
            margin-right: 3px;
            font-size: 10px;
        }
        
        .course-image-container {
            width: 100%;
            min-height: 180px;
            overflow: hidden;
            position: relative;
        }
        
        @media (min-width: 768px) {
            .course-image-container {
                width: 250px;
                min-width: 250px;
                height: 140px;
            }
        }
        
        .course-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        
        .course-item:hover .course-image {
            transform: scale(1.05);
        }
        
        .course-details {
            flex: 1;
            padding: 15px;
            display: flex;
            flex-direction: column;
        }
        
        .course-title {
            font-size: 16px;
            font-weight: 600;
            color: #0066c0;
            margin-bottom: 8px;
            line-height: 1.3;
        }
        
        .course-description {
            color: #555;
            font-size: 13px;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.4;
        }
        
        .course-meta-container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            margin-top: auto;
            gap: 10px;
        }
        
        .course-meta-item {
            display: flex;
            align-items: center;
            font-size: 12px;
            color: #555;
        }
        
        .course-rating {
            display: flex;
            align-items: center;
        }
        
        .stars {
            color: #FFB700;
            margin-right: 3px;
            font-size: 12px;
        }
        
        .course-price-container {
            margin-left: auto;
            text-align: right;
        }
        
        .course-price {
            font-size: 16px;
            font-weight: bold;
            color: #B12704;
            white-space: nowrap;
        }
        
        .course-mrp {
            font-size: 12px;
            text-decoration: line-through;
            color: #555;
            margin-left: 3px;
        }
        
        .course-discount {
            color: #388e3c;
            font-size: 12px;
            margin-left: 3px;
        }
        
        .buy-now-btn {
            background: #FFA41C;
            border: none;
            padding: 8px 15px;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            color: #000;
            transition: all 0.3s;
            margin-top: 10px;
            font-size: 13px;
            align-self: flex-start;
        }
        
        .buy-now-btn:hover {
            background: #FA8900;
        }
        
        /* Popular Searches Section */
        .popular-searches {
            margin: 30px auto;
        }
        
        .section-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .search-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .search-item {
            background: #f7f7f7;
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 12px;
            color: #065FD4;
        }
        
        .search-count {
            color: #666;
            font-size: 11px;
            margin-left: 5px;
        }
        
        /* Mobile specific adjustments */
        @media (max-width: 767px) {
            .course-title {
                font-size: 15px;
                margin-bottom: 6px;
            }
            
            .course-description {
                font-size: 12px;
                margin-bottom: 8px;
            }
            
            .course-meta-item {
                font-size: 11px;
            }
            
            .course-price {
                font-size: 14px;
            }
            
            .course-mrp, .course-discount {
                font-size: 11px;
            }
            
            .buy-now-btn {
                padding: 6px 12px;
                font-size: 12px;
            }
            
            .trending-badge {
                font-size: 10px;
                padding: 2px 5px;
            }
        }