 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', sans-serif;
    }

    body {
   
      color: #333;
    }

    .navbar {
      background-color: #ffffff;
      padding: 15px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .navbar-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 0 20%;
    }

    .logo {
      font-size: 24px;
      font-weight: bold;
      color: #1c1c1c;
    }

    .nav-links {
      display: flex;
      gap: 25px;
      align-items: center;
    }

    .nav-links a {
      color: #333;
      text-decoration: none;
      font-size: 16px;
      position: relative;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      width: 0%;
      height: 2px;
      background: #06c4fd;
      left: 0;
      bottom: -5px;
      transition: 0.3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .call-btn {
      background-color: #06c4fd;
      color: #fff;
      padding: 8px 16px;
      border-radius: 5px;
      text-decoration: none;
      transition: background 0.3s ease;
    }

    .call-btn:hover {
      background-color: #048cc5;
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .menu-toggle div {
      width: 25px;
      height: 3px;
      background: #06c4fd;
      margin: 4px 0;
    }

    @media (max-width: 1024px) {
  .navbar-container {
    margin: 0 30px;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 30px;
    right: 30px;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    display: none; /* Hide menu by default */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .nav-links.active {
    display: flex; /* Show menu when toggled */
  }

  .menu-toggle {
    display: flex;
  }
}


     .hero-banner {
    background: linear-gradient(to right, #06c4fd, #048cc5);
    padding: 100px 20px;
    text-align: center;
    color: #fff;
  }

  .hero-content {
    max-width: 800px;
    margin: 0 auto;
  }

  .hero-banner h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .hero-banner p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .cta-btn {
    background-color: #fff;
    color: #048cc5;
    padding: 12px 28px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
    font-weight: 600;
    display: inline-block;
  }

  .cta-btn:hover {
    background-color: #e6f7ff;
    color: #045f92;
  }

  .banner-image {
    margin-top: 40px;
  }

  .banner-image img {
    width: 100%;
    /*max-width: 500px;*/
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  @media (max-width: 768px) {
    .hero-banner h1 {
      font-size: 32px;
    }

    .hero-banner p {
      font-size: 16px;
    }

    .banner-image img {
      max-width: 90%;
    }
     #comparison{
    /*width: 100%!important;*/
    margin-left: 0%!important;
    margin-right: 0%!important;
    padding: 20px!important;
  }
  #installation{
    margin-left: 0%!important;
    margin-right: 0%!important;
  }
   #about-us{
      margin-left: 0%!important;
    margin-right: 0%!important;
    padding: 20px!important;
  }
  }

  #comparison{
    padding:60px 20px; 
    font-family:'Noto Sans', sans-serif;
    background:#f9f9f9;
    margin-left: 20%;
    margin-right: 20%;
  }

  #installation{
    background:#fff; 
    padding:60px 20px; 
    font-family:'Noto Sans', sans-serif;
    margin-left: 20%;
    margin-right: 20%;
  }
  #about-us{
    padding:60px 0px;
    font-family:'Noto Sans', sans-serif;
    margin-left: 20%;
    margin-right: 20%;
  }


   @media (max-width: 768px) {
    #comparison table {
      font-size: 14px;
    }

    #comparison h2 {
      font-size: 24px;
    }

    #comparison th, #comparison td {
      padding: 10px;
    }
  }

  @media (max-width: 480px) {
    #comparison table {
      min-width: 100%;
      display: block;
      overflow-x: auto;
    }

    #comparison table thead {
      display: none;
    }

    #comparison table tbody tr {
      display: block;
      margin-bottom: 20px;
      background: #fff;
      border: 1px solid #ddd;
    }

    #comparison table tbody td {
      display: block;
      text-align: left;
      padding: 10px 15px;
      border-bottom: 1px solid #eee;
      position: relative;
    }

    #comparison table tbody td::before {
      content: attr(data-label);
      font-weight: bold;
      display: block;
      margin-bottom: 5px;
      color: #1c1c1c;
    }
  }