 :root {
      --primary: #2b2b2b;
      --accent: #f04e23;
      --bg: #f9f9f9;
      --text: #333;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Arial, sans-serif;
      background: var(--bg);
      color: var(--text);
    }
.top-header {
      background: #E02B20;
      color: white;
      padding: 0.5rem 1rem;
      text-align: center;
      font-size: 0.9rem;
    }

    .top-header span {
      margin: 0 91px;
    }

    header {
      background: var(--primary);
      color: white;
      position: sticky;
      top: 0;
      z-index: 999;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      padding: 1rem;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: bold;
    }

    nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-weight: bold;
    }

    @media (max-width: 600px) {
      .header-inner {
        flex-direction: column;
        align-items: center;
      }

      nav {
        flex-direction: column;
        align-items: center;
        margin-top: 0.5rem;
      }
    }

    .hero {
      padding: 2rem;
      text-align: center;
      background: url('https://images.unsplash.com/photo-1612277793812-1ea1df4817d0?auto=format&fit=crop&w=1400&q=80') no-repeat center center;
      background-size: cover;
      color: #E02B20 ;
    }

    .hero h1 {
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
    }

    .hero p {
      font-size: 1.2rem;
    }

    .sliders {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
	  
      padding: 2rem;
      justify-content: center;
      background: #fff;
    }

    .img-compare {
      position: relative;
      width: 100%;
      max-width: 300px;
      height: 500px;
      overflow: hidden;
      cursor: ew-resize;
    }

    .img-compare img {
      position: absolute;
      height: 100%;
      width: 100%;
      object-fit: cover;
    }

    .img-compare .after {
      clip-path: inset(0 50% 0 0);
      transition: clip-path 0.1s ease-out;
    }

    .slider-handle {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 4px;
      background: white;
      border-left: 2px solid var(--accent);
      z-index: 10;
      pointer-events: none;
    }

    .section {
      padding: 2rem;
      text-align: center;
    }
	 .client-logos {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      padding: 1rem;
      align-items: center;
    }

    .client-logos img {
      width: 100%;
      height: auto;
      max-height: 100px;
      object-fit: contain;
    }


    .products {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      padding: 1rem;
    }

    .product-card {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 1rem;
    }

    .product-card img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      border-radius: 4px;
    }
	 .container {
      max-width: 1100px;
      margin: 2rem auto;
      padding: 0 1rem;
    }
    .product-detail {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      align-items: flex-start;
      background: white;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    .product-image {
      flex: 1 1 400px;
    }
    .product-image img {
      width: 100%;
      border-radius: 10px;
      object-fit: cover;
    }

    footer {
      background: var(--primary);
      color: white;
      text-align: center;
      padding: 1rem;
      margin-top: 2rem;
    }

    form {
      max-width: 500px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    input, textarea, button {
      padding: 0.8rem;
      font-size: 1rem;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    button {
      background: var(--accent);
      color: white;
      border: none;
      cursor: pointer;
    }

    button:hover {
      background: #c43d1a;
    }
	
	 .container {
      max-width: 1100px;
      margin: 2rem auto;
      padding: 0 1rem;
    }
    .product-detail {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      align-items: flex-start;
      background: white;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    .product-image {
      flex: 1 1 400px;
    }
    .product-image img {
      width: 100%;
      border-radius: 10px;
      object-fit: cover;
    }
    .product-info {
      flex: 1 1 400px;
    }
    .product-info h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }
    .product-info p {
      font-size: 1rem;
      line-height: 1.6;
    }
    .price-breakup {
      margin-top: 2rem;
    }
    .price-breakup h3 {
      margin-bottom: 1rem;
      color: #f04e23;
    }
    .price-table {
      width: 100%;
      border-collapse: collapse;
    }
    .price-table th, .price-table td {
      padding: 0.75rem 1rem;
      border: 1px solid #ddd;
      text-align: left;
    }
	 .content-section {
    background: linear-gradient(135deg, #e0eafc, #cfdef3);
    padding: 3rem 1rem;
    text-align: center;
  }
  .content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1;
    color: #222;
  }
  .content-wrapper h2 {
    margin-bottom: 1.5rem;
    color: #333;
  }
   .content-section {
    background: linear-gradient(135deg, #e0eafc, #cfdef3);
    padding: 3rem 1rem;
    text-align: center;
  }
  .content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #222;
  }
  .content-wrapper h2 {
    margin-bottom: 1.5rem;
    color: #333;
  }
  .video-section {
    background: #ffffff;
    padding: 3rem 1rem;
  }
  .video-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
  }
  .video-text {
    flex: 1 1 400px;
  }
  .video-text h2 {
    color: #333;
    margin-bottom: 1rem;
  }
  .video-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
  }
  .video-box {
    flex: 1 1 500px;
  }
  .video-box video {
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }