
    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #121212;
      color: #fff;
    }

    
    .header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 20px;
      background-color: #1f1f1f;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    }

    .logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: #f08804;
      text-decoration: none;
    }

    .search-bar {
      flex: 1;
      margin: 0 20px;
      display: flex;
      align-items: center;
    }

    .search-bar input {
      flex: 1;
      padding: 10px;
      border: none;
      border-radius: 5px 0 0 5px;
      outline: none;
      font-size: 1rem;
      background-color: #333;
      color: #fff;
    }

    .search-bar button {
      padding: 10px 20px;
      border: none;
      background-color: #f08804;
      color: #fff;
      font-size: 1rem;
      cursor: pointer;
      border-radius: 0 5px 5px 0;
    }

    .search-bar button:hover {
      background-color: #d97803;
    }

    .nav-links {
      display: flex;
      gap: 20px;
    }

    .nav-link {
      text-decoration: none;
      color: #fff;
      font-size: 1rem;
      transition: color 0.3s;
    }

    .nav-link:hover {
      color: #f08804;
    }

    .cart {
      display: flex;
      align-items: center;
      gap: 5px;
      cursor: pointer;
    }

    .cart-icon {
      font-size: 1.5rem;
    }

    .cart-count {
      background-color: #f08804;
      color: #121212;
      font-weight: bold;
      border-radius: 50%;
      padding: 2px 6px;
      font-size: 0.8rem;
    }


        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('background.jpg') center/cover no-repeat;
        }

        .hero-content {
            text-align: center;
            max-width: 800px;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #ff9900;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #e0e0e0;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .hero-buttons a {
            text-decoration: none;
            padding: 15px 30px;
            font-size: 1rem;
            border-radius: 5px;
            color: #121212;
            background-color: #ff9900;
            transition: background-color 0.3s ease;
        }

        .hero-buttons a:hover {
            background-color: #ffb84d;
        }

        /* Scroll Icon */
        .scroll-down {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            color: #e0e0e0;
            font-size: 1rem;
            cursor: pointer;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translate(-50%, 0);
            }
            40% {
                transform: translate(-50%, -10px);
            }
            60% {
                transform: translate(-50%, -5px);
            }
        }
   
       
        /* Container */
        .deals-section {
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Section Header */
        .deals-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .deals-header h2 {
            font-size: 2rem;
            margin: 0;
            color: #f5a623; /* Highlight color */
        }

        .deals-header a {
            text-decoration: none;
            color: #1e88e5; /* Blue link */
            font-size: 1rem;
        }

        /* Deals Grid */
        .deals-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        /* Individual Deal Item */
        .deal-item {
            background-color: #1e1e1e; /* Dark card background */
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .deal-item:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.7);
        }

        .deal-item img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .deal-content {
            padding: 15px;
        }

        .deal-title {
            font-size: 1.2rem;
            margin: 0 0 10px;
            color: #ffffff;
        }

        .deal-price {
            font-size: 1rem;
            color: #f5a623;
        }

        .deal-old-price {
            font-size: 0.9rem;
            color: #888888;
            text-decoration: line-through;
            margin-left: 10px;
        }

        .deal-actions {
            margin-top: 15px;
            text-align: center;
        }

        .deal-actions button {
            background-color: #1e88e5;
            color: #ffffff;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }

        .deal-actions button:hover {
            background-color: #1565c0;
        }
  

      

        .h2 {
            text-align: center;
            margin: 20px 0;
            color: #ffcc00;
        }

        .recommendations {
            display: flex;
            flex-wrap: nowrap;
            overflow-x: auto;
            padding: 20px;
            gap: 20px;
            scrollbar-width: thin;
            scrollbar-color: #ffcc00 #2c2c2c;
        }

        .recommendations::-webkit-scrollbar {
            height: 10px;
        }

        .recommendations::-webkit-scrollbar-thumb {
            background-color: #ffcc00;
            border-radius: 5px;
        }

        .recommendations::-webkit-scrollbar-track {
            background: #2c2c2c;
        }

        .card {
            background-color: #1e1e1e;
            border: 1px solid #2c2c2c;
            border-radius: 10px;
            min-width: 200px;
            max-width: 200px;
            padding: 15px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.7);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 12px rgba(0, 0, 0, 0.9);
        }

        .card img {
            width: 100%;
            border-radius: 5px;
        }

        .card h3 {
            font-size: 16px;
            margin: 10px 0;
            color: #ffcc00;
        }

        .card p {
            font-size: 14px;
            color: #cccccc;
        }

        .card button {
            background-color: #ffcc00;
            color: #121212;
            border: none;
            border-radius: 5px;
            padding: 10px 15px;
            font-size: 14px;
            cursor: pointer;
            margin-top: 10px;
        }

        .card button:hover {
            background-color: #e6b800;
        }
       
        
                .recommendations-container {
                    max-width: 1200px;
                    margin: 50px auto;
                    padding: 20px;
                }
        
                .section-header {
                    font-size: 2rem;
                    margin-bottom: 20px;
                    color: #f8f9fa;
                }
        
                .recommendations-carousel {
                    display: flex;
                    overflow-x: auto;
                    gap: 20px;
                    padding-bottom: 10px;
                }
        
                .recommendations-carousel::-webkit-scrollbar {
                    height: 8px;
                }
        
                .recommendations-carousel::-webkit-scrollbar-thumb {
                    background-color: #555;
                    border-radius: 10px;
                }
        
                .recommendations-carousel::-webkit-scrollbar-track {
                    background-color: #222;
                }
        
                .product-card {
                    flex: 0 0 auto;
                    background-color: #1f1f1f;
                    border: 1px solid #333;
                    border-radius: 8px;
                    width: 200px;
                    padding: 15px;
                    text-align: center;
                    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
                }
        
                .product-card img {
                    width: 100%;
                    border-radius: 5px;
                }
        
                .product-name {
                    font-size: 1.1rem;
                    margin: 10px 0;
                    color: #f1f1f1;
                }
        
                .product-price {
                    font-size: 1rem;
                    color: #4caf50;
                }
        
                .add-to-cart {
                    margin-top: 10px;
                    display: inline-block;
                    background-color: #4caf50;
                    color: #fff;
                    padding: 10px 15px;
                    border: none;
                    border-radius: 5px;
                    text-decoration: none;
                    font-size: 0.9rem;
                    cursor: pointer;
                    transition: background-color 0.3s;
                }
        
                .add-to-cart:hover {
                    background-color: #45a049;
                }
          

              

        .featured-services {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .featured-title {
            font-size: 2rem;
            text-align: center;
            margin-bottom: 20px;
            color: #f0f0f0;
        }

        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .service-card {
            background-color: #1e1e1e;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }

        .service-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .service-content {
            padding: 15px;
        }

        .service-title {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #ff9900;
        }

        .service-description {
            font-size: 1rem;
            color: #d0d0d0;
            margin-bottom: 15px;
        }

        .service-cta {
            display: inline-block;
            background-color: #ff9900;
            color: #121212;
            padding: 10px 15px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .service-cta:hover {
            background-color: #cc7a00;
        }
   

        

        .trending-section {
            padding: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .trending-section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            text-align: center;
        }

        .carousel {
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .carousel-container {
            display: flex;
            gap: 20px;
            transition: transform 0.4s ease-in-out;
        }

        .product-card {
            background-color: #1e1e1e; /* Slightly lighter for contrast */
            border-radius: 8px;
            padding: 20px;
            width: 200px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
        }

        .product-card img {
            width: 100%;
            height: auto;
            border-radius: 5px;
        }

        .product-card h3 {
            font-size: 1rem;
            margin: 10px 0;
            color: #ffffff;
        }

        .product-card p {
            font-size: 0.9rem;
            color: #bbbbbb;
        }

        .product-card .price {
            color: #4caf50;
            font-weight: bold;
        }

        .carousel-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.6);
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 10px;
            border-radius: 50%;
            z-index: 10;
        }

        .carousel-button.left {
            left: 10px;
        }

        .carousel-button.right {
            right: 10px;
        }

        .carousel-button:hover {
            background-color: rgba(255, 255, 255, 0.8);
            color: #000;
        }
    

      

        .testimonials-section {
            max-width: 800px;
            margin: 50px auto;
            padding: 20px;
            text-align: center;
            background-color: #1e1e1e; /* Slightly lighter than background */
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
        }

        .testimonials-section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .testimonials-slider {
            position: relative;
            overflow: hidden;
        }

        .testimonial {
            display: none;
            padding: 20px;
            animation: fade-in 1s ease-in-out;
        }

        .testimonial.active {
            display: block;
        }

        @keyframes fade-in {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .author {
            margin-top: 15px;
            font-style: italic;
            font-size: 1.1rem;
            color: #b3b3b3; /* Subtle text for author */
        }

        .navigation-buttons {
            margin-top: 20px;
        }

        .nav-btn {
            background-color: #333333;
            color: #ffffff;
            border: none;
            border-radius: 5px;
            padding: 10px 15px;
            cursor: pointer;
            margin: 0 5px;
            font-size: 1rem;
            transition: background-color 0.3s;
        }

        .nav-btn:hover {
            background-color: #555555;
        }

        .nav-btn:disabled {
            background-color: #222222;
            cursor: not-allowed;
        }

     

    .newsletter-section {
      background-color: #1e1e1e; /* Slightly lighter dark background */
      padding: 2rem;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
      text-align: center;
      max-width: 400px;
      width: 100%;
    }

    .newsletter-section h2 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
      color: #ff9800; /* Highlight color */
    }

    .newsletter-section p {
      font-size: 1rem;
      margin-bottom: 1.5rem;
      color: #cccccc;
    }

    .newsletter-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .newsletter-form input[type="email"] {
      padding: 0.75rem;
      border: 1px solid #333;
      border-radius: 4px;
      background-color: #252525;
      color: #ffffff;
      font-size: 1rem;
    }

    .newsletter-form input[type="email"]::placeholder {
      color: #888888;
    }

    .newsletter-form button {
      padding: 0.75rem;
      border: none;
      border-radius: 4px;
      background-color: #ff9800;
      color: #121212;
      font-size: 1rem;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .newsletter-form button:hover {
      background-color: #e68900;
    }

    .success-message {
      margin-top: 1rem;
      color: #4caf50; /* Success green */
      font-size: 1rem;
      display: none;
    }
  
    /* General styles for dark theme */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #fff;
  }
  
  /* Footer styles */
  .footer {
    background-color: #1a1a1a;
    padding: 40px 20px;
    text-align: center;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .footer-section {
    flex: 1 1 200px;
    margin: 10px;
  }
  
  .footer-section h3 {
    margin-bottom: 20px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  
  .footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
  }
  
  .footer-section ul li a:hover {
    color: #ff9900;
  }
  
  .social-icons {
    display: flex;
    gap: 10px;
  }
  
  .social-icon img {
    width: 30px;
    height: 30px;
    transition: opacity 0.3s ease;
  }
  
  .social-icon img:hover {
    opacity: 0.7;
  }
  
  .payment-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
  }
  
  .payment-icons img {
    width: 40px;
    height: 25px;
  }
  
  .footer-bottom {
    margin-top: 20px;
    font-size: 14px;
    color: #777;
  }
  
  .footer-bottom p {
    margin: 0;
  }

  /* Global Styles */
body {
    background-color: #121212;
    color: #f1f1f1;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  
  header {
    background-color: #1f1f1f;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
  }
  
  header .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
  }
  
  header nav ul li {
    margin-right: 20px;
  }
  
  header nav ul li a {
    text-decoration: none;
    color: #f1f1f1;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  
  header nav ul li a:hover {
    color: #ff9900;
  }
  
  /* Main Content */
  .content {
    padding: 50px;
    text-align: center;
  }
  
  h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  p {
    font-size: 1.2rem;
  }
  
  /* Interactive Features */
  .live-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
  }
  
  .live-chat button {
    background-color: #ff9900;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }
  
  .live-chat button:hover {
    transform: scale(1.1);
  }
  
  /* Scroll to Top Button */
  .scroll-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1000;
  }
  
  .scroll-to-top button {
    background-color: #1f1f1f;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: none;
  }
  
  .scroll-to-top button:hover {
    background-color: #ff9900;
  }
  
  /* Footer Section */
  footer {
    background-color: #1f1f1f;
    padding: 20px;
    text-align: center;
    color: #fff;
  }
  