body {
            background-color: #f8f9fa;
            color: #212529;
        }
        
        /* Hero Banner with Particles */
        .hero-banner {
            background: linear-gradient(135deg, #f442f0 0%, #a89834 100%);
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
        }
        
        .particle {
            position: absolute;
            background-color: rgba(255, 255, 255, 0.7);
            border-radius: 50%;
            pointer-events: none;
            transition: transform 0.2s ease, opacity 0.3s ease;
        }
        
        /* Featured Products */
        .index-container .featured-card {
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            overflow: hidden;
            margin-bottom: 0;
            background-color: white;
        }
        
        .index-container .featured-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .index-container .featured-card img {
            transition: transform 0.5s ease;
			padding: 30px;
        }
        
        .index-container .featured-card:hover img {
            transform: scale(1.05);
        }
        
        .index-container .badge-hot {
            position: absolute;
            top: 10px;
            right: 10px;
            animation: pulse 1.5s infinite;
			z-index: 1000;
        }
        
        .index-container .price-container {
            display: flex;
            align-items: center;
            margin: 10px 0;
        }
        
        .index-container .current-price {
            font-size: 24px;
            font-weight: 600;
            color: #4285f4;
            margin-right: 10px;
        }
        
        .index-container .original-price {
            font-size: 0.9rem;
            text-decoration: line-through;
            color: #6c757d;
        }
        
        .index-container .rating {
            color: #ffc107;
            margin-bottom: 10px;
        }
        
        .index-container .rating .fa-star {
            margin-right: 2px;
        }
        
        .index-container .card-body, 
        .index-container .card-footer {
            background-color: white;
            color: #212529;
        }
.index-container .card-body .card-title{
	height: 50px;
    overflow: hidden;font-weight:600
}
.index-container .blog-card .card-text{
	height: 40px;
    line-height: 120%;
    overflow: hidden;
    color: #999;
}
        .index-container .text-muted {
            color: #6c757d !important;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        /* Blog Section */
        .index-container .blog-card {
            border: none;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            margin-bottom: 20px;
            background-color: white;
        }
        
        .index-container .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }
        
        /* Policy Section */
        .index-container .policy-box {
            padding: 20px;
            border-radius: 10px;
            background: white;
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid #e9ecef;
        }
        
        .index-container .policy-box:hover {
            background: #4285f4;
            color: white;
            transform: translateY(-5px);
            border-color: #4285f4;
        }
        
        .index-container .policy-box:hover .policy-icon {
            color: white;
        }
        
        .index-container .policy-icon {
            font-size: 2.5rem;
            color: #4285f4;
            margin-bottom: 15px;
        }
        
        /* Section Titles */
        .index-container .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: 40px;
            color: #212529;
        }
        
        .index-container .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background: #4285f4;
            animation: underline 3s infinite;
        }

.index-container .blog-card .card-img-top{padding:20px}
        
        @keyframes underline {
            0% { width: 50px; left: 0; }
            50% { width: 100%; left: 0; }
            100% { width: 50px; left: calc(100% - 50px); }
        }
        
        /* Buttons */
        .index-container .btn-light {
            background-color: white;
            color: #212529;
        }
        
        .index-container .btn-outline-primary {
            color: #4285f4;
            border-color: #4285f4;
        }
        
        .index-container .btn-outline-primary:hover {
            background-color: #4285f4;
            color: white;
        }
        
        .index-container .btn-link.text-primary {
            color: #4285f4 !important;
        }
        
        .index-container .btn-link.text-primary:hover {
            color: #3367d6 !important;
        }
        
        /* Background Sections */
        .index-container .bg-light-surface {
            background-color: #e9ecef;
        }
        
        .index-container .bg-light-bg {
            background-color: #f8f9fa;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 767.98px) {
            .index-container .hero-banner {
                padding: 60px 0;
            }
            
            .index-container .hero-banner h1 {
                font-size: 2.2rem;
            }
            
            .index-container .policy-box {
                margin-bottom: 15px;
            }
        }
		
@media (min-width: 1200px) {
    .index-container .container {
        max-width: 1280px
    }
}