    :root {
      --primary-color: #00a3e0;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Roboto, sans-serif;
      background: #ffffff;
      color: #1a1a1a;
    }

    .wrapper {
      width: 90%;
      margin: auto;

    }

    header {
      background-color: #fff;
      border-bottom: 1px solid #ccc;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 4px 20px;
      width: 100%;
      height: unset;
    }

    .left-nav,
    .right-nav {
      display: flex;
      align-items: center;
    }

    .left-nav img {
      height: 90px;
      margin-left: 40px;
      margin-right: 50px;
    }

    .left-nav a {
      text-decoration: none;
      color: #767676;
      font-size: 20px;
      font-weight: 300;
      margin-right: 34px;
      font-stretch: normal;
      font-style: normal;
      line-height: 1.33;
      letter-spacing: normal;
      text-align: left;
    }

    .search-bar {
      position: relative;
      margin-right: 8px;
      width: 460px;
    }

    .search-bar input[name="search"] {
      width: 100%;
      padding: 14px 40px 10px 16px;
      border: 1px solid #ccc;
      font-size: 16px;
      box-sizing: border-box;
    }


    .search-box i {
      position: absolute;
      right: 12px;
      margin-top: 2px;
      top: 50%;
      transform: translateY(-50%);
      color: #666;
      pointer-events: none;
      font-size: 18px;
      text-align: center;
    }

    /* .search-bar img {
      position: absolute;
      right: 30px;
      top:16px;
      width: 20px;
    } */

    .icon {
      width: 23px;
      margin-left: 16px;
      margin-right: 20px;
    }

    .sign-in-btn {
      background: #1a1a1a;
      color: white;
      padding: 8px 16px;
      border: none;
      text-decoration: none;
      font-size: 16px;
      margin-right: 20px-;
    }

    nav.secondary {
      background: var(--primary-color);
      padding: 12px 40px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
    }

    nav.secondary a {
      color: white;
      margin-right: 40px;
      font-size: 16px;
      text-decoration: none;
    }

    .hero {
      display: flex;
      padding: 30px 26px;
      background: #fff;
      justify-content: left;
      align-items: stretch;
      /* ensures both columns match height */
    }

    .hero-text {
      flex: 1 1 50%;

      display: flex;
      flex-direction: column;
      justify-content: center;
      /* vertically center text */
      align-items: center;
      /* center the block */
      text-align: left;
    }

    .hero-text h1,
    .hero-text p {
      width: 100%;
      max-width: 550px;
      /* optional: controls line length */
      text-align: left;
    }

    .hero-text h1 {
      font-size: 30px;
      margin-top: 0;
      margin-bottom: 14px;
      font-weight: 300;
      line-height: 1.17;
      color: #2c3038;
    }

    .hero-text p {
      font-size: 13px;
      line-height: 1.5;
      color: #000;
      letter-spacing: 0.27;
    }

    .hero-image {
      flex: 1 1 50%;
      display: flex;
      justify-content: left;
      margin-left: 20px;
      align-items: left;
      /* vertically center image to match text */
    }

    .hero-image img {
      width: 70%;
      zoom: 140%;

      height: auto;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .hero {
        flex-direction: column;
        align-items: center;
      }

      .hero-text,
      .hero-image {
        padding-right: 0;
        align-items: center;
        text-align: center;
      }

      .hero-text h1,
      .hero-text p {
        text-align: center;
      }
    }


    .floating-buttons {
      position: fixed;
      right: 0;
      top: 13%;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      z-index: 999;
    }

    .feedback-btn {
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      background-color: #00a3e0;
      color: white;
      border: none;
      text-align: center;
      padding: 8px 10px;
      margin-top: 100px;
      margin-bottom: 10px;
      font-size: 12px;
      border-radius: 0px 4px 4px 0px;
      cursor: pointer;
      font-family: "Roboto", sans-serif;
    }

    .printer-btn {
      background-color: white;
      border: 1px solid #ccc;
      border-radius: 4px 0 0 4px;
      padding: 6px;
      cursor: pointer;
      margin-bottom: 100px;
    }

    .printer-btn img {
      width: 20px;
      height: 20px;
      display: block;

    }

    /* Responsive placement if screen is small */
    @media (max-width: 500px) {
      .floating-buttons {
        top: 60%;
      }

      .feedback-btn {
        font-size: 12px;
        padding: 6px 8px;
      }

      .printer-btn img {
        width: 18px;
        height: 18px;
      }
    }

    /* slider  */

    .container {
      width: 100%;
      margin: auto;
      padding: 20px;
      display: flex;
      justify-content: space-between;
      background-color: #f7f7f7;
      align-items: stretch;
      /* Important: stretches children including divider */
      gap: 20px;
    }

    .left-box {
      flex: 1;
      justify-content: center;
      align-items: stretch;
      min-width: 300px;
      padding: 26px 35px;
    }

    .left-box h2 {
      font-size: 22px;
      margin-bottom: 20px;
    }

    .left-box label {
      display: block;
      margin: 10px 0;
      font-size: 16px;
    }

    .input-group {
      margin: 20px 0;
    }

    input[type="text"] {
      width: 65%;
      padding: 10px 12px;
      font-size: 14px;
      margin-top: 5px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    button {
      margin-top: 10px;
      padding: 10px 12px;
      background-color: var(--primary-color);
      border: none;
      color: white;
      font-size: 14px;
      border-radius: 4px;
      cursor: pointer;
      margin-left: 20px;
    }

    button:hover{
      background-color: black;
      border: none;
      color: white;

    }



    .sign-in {
      margin-top: 15px;
      color: #0071c5;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .sign-in:hover {
      text-decoration: underline;
    }

    .divider {
      width: 1px;
      background-color: #ccc;
      align-self: stretch;
      /* Ensures full vertical alignment */
    }

    .right-box {
      flex: 1;
      min-width: 400px;
      padding: 20px;
      position: relative;
    }

    .right-box h3 {
      margin-bottom: 15px;
    }

    .slider {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
    }

    .slides {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .slides img {
      width: 100%;
      max-height: 500px;
      object-fit: contain;
    }

    .nav-btns {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
    }

    .nav-btns button {
      background: transparent;
      border: none;
      color: var(--primary-color);
      font-size: 35px;
      font-weight: lighter;
      padding: 10px;
      cursor: pointer;
      border-radius: 50%;
    }

    .support-info {
      width: 90%;
      margin-left: 40px;
      padding: 20px;
      font-size: 16px;
      line-height: 1.4;
      color: #000;
      text-align: left;
      margin-top: 20px;
    
    }

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
      }

      .left-box,
      .right-box {
        padding: 10px;
      }

      .divider {
        display: none;
      }

    }

    /* Card container */
    .support-section {
      margin-top: 24px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
   
    }

    .support-section h1 {
      font-size: 30px;
      text-align: center;
      margin-bottom: 20px;
      margin-top: 20px;
    }

    /* Individual cards */
    .card {
      background-color: #fff;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      width: 300px;
      padding: 30px 20px;
      text-align: center;
      border-radius: 8px;
      transition: transform 0.2s ease;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .support-section .card p {
      font-size: 22px;
      font-weight: 300;
      color: #000;
    }

    /* Icons */
    .card .icon {
      width: 80px;
      height: 80px;
      background-color: var(--primary-color);
      color: white;
      font-size: 28px;
      border-radius: 50%;
      margin: 0 auto 15px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

     .privacy {
    max-width: 1200px;         /* keeps content readable, not stretched */
    margin: 40px auto;        /* centers it horizontally with top/bottom space */
    padding: 30px 40px;       /* inner spacing */
    background: #fff;         /* optional: white background for clarity */
    border-radius: 12px;      /* soft corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* subtle shadow */
    font-family: 'Exo', sans-serif;
    line-height: 1.6;
    color: #333;
}

.privacy h1 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 32px;
    color: #222;
}

.privacy h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: #444;
}

.privacy p,
.privacy ul {
    margin-bottom: 15px;
}

    /* footer starts */

   footer {
    background-color: #00a3e0;
    color: #d9e3f0;
    padding: 50px 80px 30px;
  }

  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
  }

  .footer-column h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 18px;
    text-transform: capitalize;
  }

  .footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #bfcde0;
  }

  .footer-column ul {
    list-style: none;
    padding: 0;
  }

  .footer-column ul li {
    margin-bottom: 8px;
  }

  .footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
  }

  .footer-column ul li a:hover {
    text-decoration: underline;
  }

  .footer-icons {
    margin-top: 15px;
  }

  .footer-icons i {
    font-size: 18px;
    color: #ffffff;
    margin-right: 12px;
    cursor: pointer;
  }

  .footer-note {
    margin-top: 40px;
    font-size: 13px;
    color: #b0bfd3;
    text-align: left;
  }

  .footer-bottom {
    margin-top: 25px;
    text-align: right;
    font-size: 13px;
    color: #a5b6ce;
  }

  @media (max-width: 768px) {
    footer {
      padding: 40px 30px;
    }
    .footer-bottom {
      text-align: center;
      margin-top: 30px;
    }
  }
    /* Scroll to top button */
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  background-color: #00a3e0;
  color: white;
  border: none;
  padding: 12px 14px;
  border-radius: 10%;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  
}

#scrollTopBtn:hover {
  background-color: #000000;
}

/* Responsive */
@media (max-width: 768px) {
  .card {
    width: 100%;
    max-width: 300px;
  }
}

    /* footer ends */

    /* installing */

      .installContainer {
      margin-top: 40px;
      background: white;
      border-radius: 12px;
      padding: 50px;
      text-align: center;
      width: 650px;
      box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
      margin: 0 auto;
      margin-bottom: 40px;
    }
    .installContainer h2 {
      margin-bottom: 30px;
    
    }
    .bar {
        width: 80%;
  height: 18px;
  background: #ddd;
  border-radius: 10px;
  margin: 20px auto;   /* centers the bar */
  overflow: hidden;
      overflow: hidden;
      margin-top: 30px;
      margin-bottom: 20px;
    }

   
    .fill {
      height: 100%;
      width: 0%;
      background: #0073e6;
      border-radius: 10px;
      transition: width 0.2s;
    }

    #installBar{
      background: rgb(7, 150, 7);
    }
    .status {
      font-weight: bold;
      margin-top: 5px;
    }
    .error {
      color: red;
      font-weight: bold;
      margin-top: 15px;
    }

    /* Monitor-Printer loader section */
    .device-loader {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 40px;
      margin-bottom: 20px;
    
    }
    .device-loader img {
      width: 60px;
      height: auto;
    }
    .loader-bar {
      flex: 1;
      height: 12px;
      background: #ddd;
      margin: 0 15px;
      border-radius: 5px;
      position: relative;
      overflow: hidden;
    }
    .loader-fill {
      width: 80%;
      height: 100%;
      background: #0073e6;
      border-radius: 5px;
      position: absolute;
      animation: slide 2s infinite alternate ease-in-out;
    }
    @keyframes slide {
      from { left: 0; }
      to { left: 70%; }
    }

    /* setup section */

     /* Section */
    .setup-section {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 30px;
      padding: 80px 20px;
      flex-wrap: wrap;
    }

    /* Left Text Box */
    .setup-box {
      background: #fff;
      border: 2px solid #6FD7FF;
      border-radius: 15px;
      box-shadow: 0 0 10px rgba(0, 168, 232, 0.2);
      padding: 40px;
      width: 600px;
      text-align: center;
    }

    .setup-box h2 {
      color: #002855;
      font-size: 30px;
      margin-bottom: 30px;
    }

    .setup-box p {
      color: #000;
      line-height: 1.7;
      font-size: 20px;
    }

    .setup-box .note {
      margin-top: 30px;
      
    }

    /* Right Image Box */
    .image-box {
      background: #fff;
      border: 2px solid #6FD7FF;
      border-radius: 15px;
      box-shadow: 0 0 10px rgba(0, 168, 232, 0.2);
      padding: 20px;
    }

    .image-box img {
      width: 475px;
      height: auto;
      display: block;
    }

   
    @media (max-width: 768px) {
      .setup-box, .image-box img {
        width: 90%;
      }
      .setup-section {
        flex-direction: column;
      }
    }