*{
    padding: 0;
    margin: 0;
        }
/* top navigation bar */
.topnav {
    overflow: hidden;
    background-color: #333;
   }
   
   /* Style the topnav links */
   .topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
   }
   
   /* Change color on hover */
   .topnav a:hover {
    background-color: #ddd;
    color: black;
   }
   
   /* Add a color to the active/current link */
   .topnav a.active {
    background-color: #4CAF50;
    color: white;
   }
   
   /* Style the main content */
   .main {
    margin-top: 30px;
    min-height: 500px;
    padding: 0 16px;
   }
   
   /* Style the products section */
   .products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
    /* background-image: url(https://www.genotek.global/hubfs/5ecbb620c0621d4155a02109_bg@2x-min.pngs); */
   }
   
   /* Style individual products */
   .product {
    border: 1px solid #ddd;
    padding: 16px;
    text-align: center;
    background-color: #f1f1f1;
   }
   
   .product img {
    max-width: 100%;
    height: auto;
   }
   
   .product h2 {
    margin: 0;
    padding: 16px 0;
   }
   
   /* Style the footer */
   .footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    /* position: fixed; */
    bottom: 0;
    width: 100%;
   }

   /* about section */
   .about-section {
    width: 80%;
    margin: 0 auto;
    padding: 50px 0;
    background-color: #f7f7f7;
    color: #333;
    text-align: center;
    background-image: url(https://www.genotek.global/hubfs/5ed4e72b8a31272381787d79_HubspotHero1.6highresR1.jpg);
    background-position: 50% 50%;
}

.about-section h1 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 16px;
    margin-bottom: 20px;
}

.about-section img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

/* media  queries */
@media (max-width: 1024px) {
    .about-section {
        padding: 30px 0;
    }

    .about-section h1 {
        font-size: 24px;
    }

    .about-section p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 30px 0;
    }

    .about-section h1 {
        font-size: 24px;
    }

    .about-section p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 20px 0;
    }

    .about-section h1 {
        font-size: 20px;
    }

    .about-section p {
        font-size: 12px;
    }
}
/* body */
body {
    font-size: 16px;
    line-height: 1.5;
  }
  
  @media (min-width: 768px) {
    body {
      font-size: 18px;
      line-height: 1.625;
    }
  }
  
  @media (min-width: 1024px) {
    body {
      font-size: 20px;
      line-height: 1.75;
    }
  }

/* contact section */

#contact-form {
    font-family: Arial, sans-serif;
    width: 300px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
    margin-top: 85px;
  }
  
  #contact-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  #contact-form input,
  #contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
    box-sizing: border-box;
  }
  
  #contact-form textarea {
    height: 150px;
  }
  
  #contact-form button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  #contact-form button:hover {
    background-color: #3e8e41;
  }

  /* product section */
   .product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .product-card {
    width: 100%;
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    margin-bottom: 20px;
    position: relative;
  }
  
  .product-card:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  }
  
  .product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .product-details {
    padding: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.8);
    transition: 0.3s;
    opacity: 0;
  }
  
  .product-card:hover .product-details {
    opacity: 1;
  }
  
  .product-details h2 {
    margin-top: 0;
  }
  
  .product-side {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
  }
  
  .product-side button {
    flex-grow: 1;
  }
  
  @media (min-width: 768px) {
    .product-card {
      width: calc(33.333% - 20px);
    }
  
    .product-details {
      position: relative;
      padding: 20px;
      opacity: 1;
    }
  }
  /* assist bar */
  .assistant-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 10px;
    box-sizing: border-box;
  }
  
  .assistant-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .assistant-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .assistant-button:hover {
    background-color: #3e8e41;
  }

  /* client */
  .client-section {
    background-color: #f2f2f2;
    padding: 50px 0;
    text-align: center;
    background-image: url(https://www.genotek.global/hubfs/5ecbb620c0621d4155a02109_bg@2x-min.pngs);
  }
  
  .client-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
  }
  
  .client-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .client-logos img {
    width: 200px;
    height: auto;
    margin: 0 20px 20px 0;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  /* project */
  .project-section {
    background-color: #f2f2f2;
    padding: 50px 0;
    text-align: center;
    background-image:url(https://www.genotek.global/hubfs/5ed4e72b8a31272381787d79_HubspotHero1.6highresR1.jpg);
    background-position: 50% 50%;
    margin-bottom: 35px;
  }
  
  .project-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
  }
  
  .project-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .project-card {
    width: 33.33%;
    padding: 20px;
    box-sizing: border-box;
    text-align: left;
  }
  
  .project-card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 20px;
  }
  
  .project-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .project-card p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .project-card a {
    display: block;
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .project-card a:hover {
    background-color: #3e8e41;
  }
  /*
  .learn-more-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .learn-more-button:hover {
    background-color: #3e8e41;
  }
  */