        .web-container {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #e0e0e0;
            margin: 0;
            padding: 0;
            line-height: 1.6;
            overflow-x: hidden;
			background: #000;

			
        }

        
        .web-container .banner {
            background-color: #1a1a1a;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            margin-bottom: 60px;
        }
        
        .web-container .banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, 
                rgba(98, 0, 234, 0.1) 0%, 
                rgba(98, 0, 234, 0.3) 50%, 
                rgba(98, 0, 234, 0.1) 100%);
            z-index: 1;
            animation: gradientPulse 12s ease infinite;
            background-size: 300% 300%;
        }
        
        .web-container .banner-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 20px;
            max-width: 800px;
            animation: fadeInUp 1s ease-out;
        }
        
        .web-container .banner h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #ffffff;
            text-shadow: 0 0 15px rgba(98, 0, 234, 0.5);
            animation: textGlow 3s ease-in-out infinite alternate;
        }
        
        .web-container .banner p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            color: #b0b0b0;
            animation: fadeIn 1.5s ease-out;
        }
        
        .web-container .banner-btn {
            background-color: #6200ea;
            color: white;
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 5px 20px rgba(98, 0, 234, 0.5);
            position: relative;
            overflow: hidden;
            animation: pulse 2s infinite;
        }
        
        .web-container .banner-btn:hover {
            background-color: #7c4dff;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(98, 0, 234, 0.7);
        }
        
        .web-container .banner-btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 5px;
            height: 5px;
            background: rgba(255, 255, 255, 0.5);
            opacity: 0;
            border-radius: 100%;
            transform: scale(1, 1) translate(-50%);
            transform-origin: 50% 50%;
        }
        
        .web-container .banner-btn:focus:not(:active)::after {
            animation: ripple 1s ease-out;
        }
        
        .web-container .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            color: #ffffff;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .web-container .section-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #6200ea, #7c4dff);
            margin: 20px auto;
            border-radius: 2px;
            animation: lineExpand 1s ease-out;
        }
        
        .web-container .featured-products {
            padding: 0 20px 60px;
            max-width: 1280px;
            margin: 0 auto;
        }
        
        .web-container .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .web-container .product-card {
            background-color: #1e1e1e;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transform: translateY(0);
        }
        
        .web-container .product-card:hover {
            transform: translateY(-15px) rotate(1deg);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }
        
        .web-container .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #6200ea, #7c4dff);
            z-index: 2;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }
        
        .web-container .product-card:hover::before {
            transform: scaleX(1);
        }
        
        .web-container .product-image {
            background-color: #fff;
            position: relative;
            overflow: hidden;
			padding:20px;
        }

        
        .web-container .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }



        
        .web-container .product-card:hover .product-image img {
            transform: scale(1.1) rotate(1deg);
        }
        
        .web-container .product-info {
            padding: 25px;
        }
        
        .web-container .product-title {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #ffffff;
            transition: color 0.3s ease;
			    height: 70px;
    overflow: hidden;
        }
        
        .web-container .product-card:hover .product-title {
            color: #7c4dff;
        }
        
        .web-container .product-rating {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .web-container .stars {
            color: #ffc107;
            margin-right: 10px;
            font-size: 1.1rem;
            letter-spacing: 2px;
        }
        
        .web-container .rating-count {
            font-size: 0.9rem;
            color: #b0b0b0;
        }
        
        .web-container .product-price {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .web-container .current-price {
            font-size: 1.5rem;
            font-weight: bold;
            color: #ffffff;
            position: relative;
        }
        
        .web-container .current-price::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #7c4dff;
            transition: width 0.5s ease;
        }
        
        .web-container .product-card:hover .current-price::after {
            width: 100%;
        }
        
        .web-container .original-price {
            font-size: 1rem;
            text-decoration: line-through;
            color: #b0b0b0;
            margin-left: 15px;
        }
        
        .web-container .product-btn {
            background-color: transparent;
            color: #6200ea;
            border: 2px solid #6200ea;
            padding: 10px 25px;
            width: 100%;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.4s ease;
            font-weight: 600;

            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }
        
        .web-container .product-btn:hover {
            background-color: #6200ea;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(98, 0, 234, 0.4);
        }
        
        .web-container .product-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }
        
        .web-container .product-btn:hover::before {
            left: 100%;
        }
        
        .web-container .view-more {
            text-align: center;
            margin-top: 60px;
        }
        
        .web-container .view-more-btn {
            background-color: transparent;
            color: #ffffff;
            border: 2px solid #6200ea;
            padding: 15px 40px;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.5s ease;
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }
        
        .web-container .view-more-btn:hover {
            background-color: #6200ea;
            box-shadow: 0 0 25px rgba(98, 0, 234, 0.6);
            letter-spacing: 2px;
        }
        
        .web-container .view-more-btn::after {
            content: '→';
            position: absolute;
            right: 20px;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .web-container .view-more-btn:hover::after {
            opacity: 1;
            right: 30px;
        }
        
        .web-container .blog-section {
            padding: 60px 20px;
            background: linear-gradient(to bottom, #1a1a1a 0%, #121212 100%);
            margin-top: 60px;
            position: relative;
        }
        
        .web-container .blog-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #6200ea, #7c4dff);
        }
        
        .web-container .blog-container {
            max-width: 1280px;
            margin: 0 auto;
        }
        
        .web-container .blog-posts {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 40px;
        }
        
        .web-container .blog-card {
            background-color: #252525;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .web-container .blog-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
        }
        
        .web-container .blog-image {
            height: 200px;
            background-color: #333;
            position: relative;
            overflow: hidden;
        }
        
        .web-container .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        .web-container .blog-card:hover .blog-image img {
            transform: scale(1.1);
        }
        
        .web-container .blog-content {
            padding: 25px;
        }
        
        .web-container .blog-date {
            font-size: 0.9rem;
            color: #b0b0b0;
            margin-bottom: 15px;
        }
        
        .web-container .blog-title {
            font-size: 1.4rem;
            color: #ffffff;
    height: 54px;
    overflow: hidden;
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }
.web-container .blog-title a{color:#fff}
.web-container .blog-title a:hover{color:#7c4dff}
        .web-container .blog-card:hover .blog-title {
            color: #7c4dff;
        }
        
        .web-container .blog-excerpt {
            font-size: 1rem;
            color: #b0b0b0;
            margin-bottom: 20px;
            line-height: 1.2;
    height: 76px;
    overflow: hidden;
        }
        
        .web-container .read-more {
            color: #6200ea;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
        }
        
        .web-container .read-more:hover {
            color: #7c4dff;
            letter-spacing: 1px;
        }
        
        .web-container .read-more::after {
            content: '→';
            margin-left: 5px;
            transition: margin-left 0.3s ease;
        }
        
        .web-container .read-more:hover::after {
            margin-left: 10px;
        }
        
        .web-container .policies {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            padding: 80px 20px;
            max-width: 1280px;
            margin: 0 auto;
        }
        
        .web-container .policy-card {
            text-align: center;
            padding: 40px 30px;
            background-color: #1e1e1e;
            border-radius: 15px;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .web-container .policy-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
        }
        
        .web-container .policy-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #6200ea, #7c4dff);
            z-index: 2;
        }
        
        .web-container .policy-icon {
            font-size: 3rem;
            color: #6200ea;
            margin-bottom: 25px;
            display: inline-block;
            transition: all 0.5s ease;
        }
        
        .web-container .policy-card:hover .policy-icon {
            transform: rotateY(360deg) scale(1.2);
        }
        
        .web-container .policy-title {
            font-size: 1.4rem;
            color: #ffffff;
            margin-bottom: 20px;
            transition: color 0.3s ease;
        }
        
        .web-container .policy-card:hover .policy-title {
            color: #7c4dff;
        }
        
        .web-container .policy-desc {
            font-size: 1rem;
            color: #b0b0b0;
            line-height: 1.7;
        }
        
        /* Animations */
        @keyframes gradientPulse {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        @keyframes textGlow {
            from {
                text-shadow: 0 0 10px rgba(98, 0, 234, 0.5);
            }
            to {
                text-shadow: 0 0 20px rgba(98, 0, 234, 0.8);
            }
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(98, 0, 234, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(98, 0, 234, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(98, 0, 234, 0);
            }
        }
        
        @keyframes ripple {
            0% {
                transform: scale(0, 0);
                opacity: 1;
            }
            20% {
                transform: scale(25, 25);
                opacity: 1;
            }
            100% {
                opacity: 0;
                transform: scale(40, 40);
            }
        }
        
        @keyframes lineExpand {
            from {
                transform: scaleX(0);
            }
            to {
                transform: scaleX(1);
            }
        }
        
        @media (max-width: 768px) {
            .web-container .banner {
                height: 400px;
            }
            
            .web-container .banner h1 {
                font-size: 2.5rem;
            }
            
            .web-container .banner p {
                font-size: 1.1rem;
            }
            
            .web-container .section-title {
                font-size: 2rem;
            }
            
            .web-container .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 30px;
            }
            
            .web-container .blog-posts {
                grid-template-columns: 1fr;
            }
            
            .web-container .policies {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }