   
        :root {
            --primary-color: #1e3a8a;
            --secondary-color: #3b82f6;
            --accent-color: #ef4444;
            --light-color: #f8fafc;
            --dark-color: #1e293b;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }
        
        /* Top Bar */
        .top-bar {
            background-color: var(--primary-color);
            color: white;
            padding: 10px 0;
            font-size: 0.9rem;
        }
        
        /* Navigation */
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand img {
            height: 40px;
        }
        
        .nav-item {
            margin: 0 5px;
        }
        
        .nav-link {
            color: var(--dark-color);
            font-weight: 500;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover, .nav-link.active {
            background-color: var(--secondary-color);
            color: white;
        }
        
        /* Hero Slider */
        .hero-slider {
            height: 80vh;
            overflow: hidden;
            position: relative;
        }
        
        .carousel-item {
            height: 80vh;
            background-size: cover;
            background-position: center;
        }
        
        .carousel-item:nth-child(1) {
            background-image: url(../assets/img/banner1.jpg);
        }
        
        .carousel-item:nth-child(2) {
            background-image: url(../assets/img/banner2.jpg);
        }
        
        .carousel-item:nth-child(3) {
            background-image: url(../assets/img/banner3.jpg);
        }
        
        .carousel-caption {
            bottom: 30%;
            background-color: rgba(0, 0, 0, 0.6);
            padding: 20px;
            border-radius: 10px;
        }
        
        .carousel-caption h5 {
            font-size: 2.5rem;
            font-weight: 700;
        }
        
        /* Products Section */
        .products-section {
            padding: 80px 0;
            background-color: var(--light-color);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            text-align: center;
        }
        
        .section-title h2 {
            font-weight: 700;
            color: var(--dark-color);
            display: inline-block;
            padding-bottom: 10px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .product-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            margin-bottom: 30px;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .product-img {
            height: 250px;
            overflow: hidden;
        }
        
        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-img img {
            transform: scale(1.05);
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-title {
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--dark-color);
        }
        
        .product-price {
            font-weight: 700;
            color: var(--accent-color);
            font-size: 1.2rem;
        }
        
        .product-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--accent-color);
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        /* Features Section */
        .features-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .feature-box {
            text-align: center;
            padding: 30px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .feature-box:hover {
            background-color: var(--light-color);
            transform: translateY(-5px);
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        /* Testimonials */
        .testimonials-section {
            padding: 80px 0;
            background-color: var(--light-color);
        }
        
        .testimonial-card {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin: 15px;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--secondary-color);
        }
        
        /* Newsletter */
        .newsletter-section {
            padding: 60px 0;
            background-color: var(--secondary-color);
            color: white;
        }
        
        .newsletter-form {
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Footer */
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 60px 0 0;
        }
        
        .footer-logo img {
            height: 50px;
            margin-bottom: 20px;
        }
        
        .footer-links h5 {
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h5:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: var(--secondary-color);
            bottom: 0;
            left: 0;
        }
        
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-5px);
        }
        
        /* Sub Footer */
        .sub-footer {
            background-color: #0f172a;
            padding: 20px 0;
            font-size: 0.9rem;
        }
        
        /* Animations */
        .animate-fade-in {
            animation: fadeIn 1s ease-in-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero-slider, .carousel-item {
                height: 60vh;
            }
            
            .carousel-caption h5 {
                font-size: 1.8rem;
            }
            
            .nav-item {
                margin: 5px 0;
            }
        }

 .terms-header {
            background-color: var(--primary-color);
            color: white;
            padding: 80px 0;
            margin-bottom: 50px;
        }
        
        .terms-header h1 {
            font-weight: 700;
        }
        
        .terms-container {
            max-width: 900px;
            margin: 0 auto 50px;
        }
        
        .terms-section {
            margin-bottom: 40px;
        }
        
        .terms-section h2 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary-color);
        }
        
        .terms-section h3 {
            color: var(--dark-color);
            font-weight: 600;
            margin: 25px 0 15px;
        }
		
		 /* Product Header */
        .product-header {
            background-color: var(--light-color);
            padding: 30px 0;
            margin-bottom: 50px;
        }
        
        .breadcrumb {
            background-color: transparent;
            padding: 0;
        }
        
        /* Product Gallery */
        .product-gallery {
            margin-bottom: 30px;
        }
        
        .main-image {
            border: 1px solid #eee;
            border-radius: 5px;
            overflow: hidden;
            margin-bottom: 15px;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f9f9f9;
        }
        
        .main-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .thumbnail-container {
            display: flex;
            gap: 10px;
        }
        
        .thumbnail {
            width: 80px;
            height: 80px;
            border: 1px solid #ddd;
            border-radius: 5px;
            overflow: hidden;
            cursor: pointer;
            background-color: #f9f9f9;
        }
        
        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .thumbnail.active {
            border-color: var(--secondary-color);
        }
        
        /* Product Info */
        .product-title {
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 10px;
        }
        
       
        .old-price {
            text-decoration: line-through;
            color: #999;
            font-size: 1.4rem;
            margin-left: 10px;
        }
        
        .product-badge {
            display: inline-block;
            background-color: var(--accent-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .product-meta {
            margin-bottom: 25px;
        }
        
        .product-meta span {
            display: block;
            margin-bottom: 5px;
        }
        
        .product-meta .sku {
            color: #666;
        }
        
        .product-meta .availability {
            color: #28a745;
            font-weight: 500;
        }
        
        .product-options {
            margin-bottom: 30px;
        }
        
        .option-title {
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .size-options {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .size-option {
            width: 50px;
            height: 50px;
            border: 1px solid #ddd;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        
        .size-option.active {
            border-color: var(--secondary-color);
            background-color: rgba(59, 130, 246, 0.1);
        }
        
        .color-options {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .color-option {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            border: 2px solid transparent;
        }
        
        .color-option.active {
            border-color: var(--secondary-color);
        }
        
        .color-black {
            background-color: #1a1a1a;
        }
        
        .color-blue {
            background-color: #3b82f6;
        }
        
        .color-red {
            background-color: #ef4444;
        }
        
        .quantity-selector {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .quantity-btn {
            width: 40px;
            height: 40px;
            border: 1px solid #ddd;
            background-color: #f9f9f9;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        
        .quantity-input {
            width: 60px;
            height: 40px;
            border-top: 1px solid #ddd;
            border-bottom: 1px solid #ddd;
            border-left: none;
            border-right: none;
            text-align: center;
        }
        
        .action-buttons {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .btn-add-to-cart {
            background-color: var(--secondary-color);
            color: white;
            padding: 12px 30px;
            font-weight: 600;
        }
        
        .btn-add-to-cart:hover {
            background-color: #2563eb;
            color: white;
        }
        
        .btn-wishlist {
            background-color: white;
            border: 1px solid #ddd;
            padding: 12px 15px;
        }
        
        .product-share {
            margin-bottom: 30px;
        }
        
        .share-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: #f5f5f5;
            color: var(--dark-color);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
        }
		
	.p-img{
		border-radius:50px;
	}		