* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Roboto, sans-serif;

  }
  
  /* Body Styling */
  body {
    font-family: Roboto, sans-serif;
    color: #333;
  }
  
  /* Header Styling */
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .header {
    background: #ffffff;
    color: white;
    top: 0;
    z-index: 1000;
    margin-bottom: -20px;
    margin-top: -10px;
  }
  
  .logo {
        height: 50px;
        display: flex;
        flex-direction: row;
        margin-top: 20px;
        padding-left: 20px;
        margin-bottom: 20px;
  }
  .logo a {
    text-decoration: none; /* Removes underline from the link */
    display: inline-block;
  }
  
  .logo img {
    height: 50px; /* Adjust the size of the logo */
    width: auto; /* Keep aspect ratio */
  }
  
  
  .nav {
    display: flex;
    flex-direction: row-reverse;
    margin-bottom: 40px;
    margin-top: -45px;
    margin-right: 40px;

  }
  
  .nav-list {
    display: flex;
  }
  
  .nav-list li {
    margin: 0 15px;
    position: relative;
  }
  .nav-list a {
    color: #000000  ;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
  }
  .nav-list a:hover {
    color: #0182C4;
  }
  @media (max-width: 468px) {
    .nav-list a {
      color: #000000;
      overflow: hidden;
    }
    
  }
  @media (max-width: 1440px) {
    .nav {
      margin-right: 60px;
    }
    .nav-list a {
      font-size: 17px;
    }
    .logo img {
      margin-left: 10px;
    }
    .three {
      padding-left: 140px;
  }
}
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 150px;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding-top: 10px;
  }
  .mobile-menu  {
    min-height: 250px; 
    overflow: hidden; 
    transition: height 0.3s ease-in-out; 
    background-color: #ffffff; 
}

  .dropdown-menu li {
    margin: 0;
    border-bottom: 1px solid #ccc;
  }
  
  .dropdown-menu a {
    color: 7A7A7A;
    display: block;
    padding: 10px 10px;
    white-space: nowrap;
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  .nav-links a:hover {
    color:#0182C4;
}
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .bar {
    background: rgb(0, 0, 0);
    height: 3px;
    width: 25px;
    margin: 3px 0;
    margin-left: 280px;
    margin-top: -15px;

  }
  
  @media (max-width: 768px) {
    .nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #ffffff;
        position: absolute;
        top: 60px;
        left: 0;
    }
  
    .nav-list {
        flex-direction: column;
        text-align: left;
        margin-left: 25px;
    }
  
    .nav-list li {
        margin: 10px 0;
    }
  
    .menu-toggle {
        display: flex;
        padding-left: 390px;
    }
  
    .nav.active {
        display: flex;
    }
  }
  @media (max-width:468px) {
    .menu-toggle {
      padding-left: 30px;
      margin-top: -20px;
    }
    .nav {
      margin-top: 0px;
    }
  }
  .carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}
@media (max-width: 468px) {
  .carousel-container {
    margin-top: 50px;
    z-index: -1;
  }
}
.carousel-track {
    display: flex;
    transition: transform 2s ease-in-out; /* Smooth and slow transition */
    width: 100%;
}

.carousel-item {
    flex: 0 0 100%; /* Full-width for each image */
}

.carousel-item img {
    width: 100%;
    height: auto;
}

/* Responsive Handling */
@media (min-width: 768px) {
    .carousel-item img {
        height: auto;
    }
}



/* Carousel Slide */
.carousel-slide {
  min-width: 100%;
  height: auto;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* Navigation Buttons */
.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  z-index: 100;
  font-size: 18px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .prev-btn,
  .next-btn {
      font-size: 16px;
      padding: 8px 16px;
  }
}


/* Product Container */
.product-container {
  max-width: 12000px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}

/* Product Grid Styling */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding-left: 40px;
  padding-right: 40px;
}

.product-item {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  height: 100%; /* Makes sure all products take equal height */
  justify-content: space-between; /* Ensures even spacing between image and title */
}

.product-item:hover {
  transform: translateY(-5px);
}

.product-image {
  flex-grow: 1; /* Allows image to grow and fill available space */
  display: flex;
  justify-content: center;
  align-items: center;
  height:350px;
}

.product-image img {
  width: 100%;
  height: 300px;
  object-fit: contain; /* Ensures image doesn't stretch */
}

.product-title {
  font-size: 1.2rem;
  font-weight: bold;
  padding: 15px;
  color: #333;
  text-align: center;
  background-color: #f8f8f8; /* Light background for contrast */
  border-top: 1px solid #ddd;
}

/* Button Styling */
.view-all-products {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.btn {
  padding: 12px 25px;
  background-color: #0182C4;
  text-decoration: none;
  color: white;
  border-radius: 5px;
  font-size: 1.2rem;
}


/* Responsive Design */
@media (max-width: 1200px) {
  .product-grid {
      grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .product-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid {
      grid-template-columns: 1fr;
  }
}


/* Blog Section */
.blog-section {
  background-color: #0182C4;
  padding: 30px 20px;
  text-align: center;
  margin-top: 30px;
}

.blog-title {
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 30px;
  padding-top: 50px;

}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 200px;
}

.blog-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 90px;
  margin-top: -250px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  flex: 1 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  margin-bottom: 20px;
}

.blog-card img {
  width: 100%;
  height: auto;
  height: 250px;
  padding: 30px;
}

.blog-card h3 {
  font-size: 1.2rem;
  margin: 15px 20px 10px;
  color: #333;
}

.blog-card p {
  font-size: 16px;
  color: #666;
  margin: 0 20px 15px;
  line-height: 2.0pc;
  font-family: sans-serif;
  text-align: justify;

  
}

.blog-card .btn {
  display: inline-block;
  text-align: center;
  background: #0182C4; 
  color: #fff;
  padding: 10px 15px;
  margin: 0 20px 20px;
  text-decoration: none;
  border-radius: 4px;

}

.blog-card .btn:hover {
  background: #0056b3;
}

/* Responsive Design */
@media (max-width: 992px) {
  .blog-card {
      flex: 1 1 calc(50% - 20px);
      max-width: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .blog-card {
      flex: 1 1 100%;
      max-width: 100%;
  }
}
@media (max-width: 768px) {
  .blog-cards {
    padding: 30px;
  }
}
@media (max-width: 468px) {
  .blog-title {
  padding-top: 0;
}
}
.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10px; 
  padding: 20px; 
  margin-top: -50px;
  margin-bottom: 70px;
}

/* Button styling */
.responsive-button h2 {
  font-size: 1rem; 
  color: #555; 
  border: 1px solid #bbb; 
  border-radius: 50px; 
  background-color: transparent; 
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease; 
  text-decoration:none;
  padding-left: 15px;
  padding-right: 35px;
  padding-bottom: 20px;
  padding-top: 20px;
  font-family: sans-serif;
}
.responsive-button h2 a{
  text-decoration: none;
}
.responsive-button {
  text-decoration: none;
}
/* Button hover effect */
.responsive-button h2:hover {
  background-color: #f0f0f0; 
  border-color: #888; 
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .responsive-button h2{
    font-size: 0.9rem; 
    padding: 10px 30px;
  }
}

@media (max-width: 480px) {
  .responsive-button h2 {
    font-size: 14px; 
    padding: 8px 20px;
    margin-top: 50px;
    margin-bottom: -30px;

  }
}

.team-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.team-content {
  align-content: center;
  text-align: justify;
  line-height: 30px;
  max-width:30%;
}

.section-title {
  color: #333333;
  font-family: "Mulish", Sans-serif;
  font-size: 32px;
  font-weight: 700;
}

.section-description {
  font-size: 1rem;
  color: #6F7F90;
  font-family: Sans-serif;
  font-weight: 500;
}

.button-wrapper .contact-button {
  background-color: #0182C4;
  font-family: "Mulish", Sans-serif;
  font-weight: 700;
  border-radius: 0px 0px 0px 0px;
  padding: 15px 20px 15px 20px;
  text-decoration: none;
  color:white;
}

.contact-button:hover {
  background-color: #066AAB;
}

.team-image img {
  max-width: 600px;
  height: auto;
  padding-top:25px
}


.team-section{
  background-image: url(https://labnova.in/wp-content/uploads/2024/04/bg-min.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-left:70px;
  width:90%;

}
.team-section{
  height: auto;
  max-width: 100%;
  border: none;
  border-radius: 0;
  box-shadow: none;
  display:flex;
  justify-content: center;
  justify-content: space-evenly;
  border-radius:20px;
}

@media(max-width:769px){
  .team-section {
      display: inline;
  }

}
/* Responsive Design */

@media (max-width:1024px) {
  .team-section {
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 20px;
  }
}
    .team-content {
      max-width: 100%;
      text-align: center;
      margin-bottom: 20px;
  }

  .team-image {
      max-width: 50%;
  }

  .section-title {
    font-size: 2.2rem;
    margin-top: 20px;
    padding-left: 20px; 
   }

  .section-description {
      font-size: 15px;
      padding: 15px;
      margin-top: -25px;
  }

  .contact-button {
      padding: 10px 15px;
      font-size: 0.9rem;
  }


@media (max-width: 768px) {
  .team-section {
      display: block;
      padding: 10px;
      margin:10px;
  }

  .container {
    padding: 20px;
    background-color: #f7f7f7;
    display:flex;
    justify-content: center;

   
    background-image: url('https://labnova.in/wp-content/uploads/2024/04/bg-map-min.png');
    background-size: cover; /* Cover the entire background area */
    background-position: center center; /* Center the image */
    background-repeat: no-repeat; /* Don't repeat the image */
    height:700px; /* Ensure the background covers the whole viewport */
    margin: 0; /* Remove default margin */
}



/* Inner Container (Full width layout) */
.inner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@media(max-width:468px) {
  .inner-container {
    width: 300px;
  }
  .infobox {
    padding-left: 20px;
    font-size: 14px;
    margin-top: -40px;
  }
  .infobox-left {
    margin-left: 100px;
  }

}

/* Full-width section */
.full-width-container {
    width: 400px;
    padding: 40px;
}

/* Headings */
.heading h3 {
    font-family: "Mulish", sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: #333;
}


/* Infobox Styling */
.infobox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px;
    color: #000;
    border-radius: 8px;
    margin-top: -30px;
 
}

.infobox-left {
    width: 40px;
    height: 40px;
}

.icon-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200%;
    height: 200%;
    background-color: #CDE8F4;
    border-radius: 100px;
    margin-left:-60px;
    margin-top:-20px;
}

.check-circle-icon {
    fill: #0182C4;
    width: 24px;
    height: 24px;
}

  .team-content,
  .team-image {
      max-width: 100%;
      margin: 0 auto;
  }

  .section-title {
      font-size: 1.6rem;
  }

  .section-description {
      font-size: 0.85rem;
      line-height: 1.5;
  }

  .contact-button {
      font-size: 0.85rem;
      padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .section-title {
      font-size: 1.4rem;
  }
  .section-description {
      font-size: 0.8rem;
      padding-left:20px;
  }

  .contact-button {
      font-size: 0.8rem;
      padding: 8px 10px;
      margin-left: 20px;
  }
}
@media(max-width:769px){
  .team-image img{
      width:100%;
      margin-bottom: -12px;
  }
}

/* General Container Styling */
.container {
  padding: 20px;
  background-color: #f7f7f7;
  display:flex;
  justify-content: center;
  background-image: url('https://labnova.in/wp-content/uploads/2024/04/bg-map-min.png');
  background-size: cover; /* Cover the entire background area */
  background-position: center center; /* Center the image */
  background-repeat: no-repeat; /* Don't repeat the image */
  height:700px; /* Ensure the background covers the whole viewport */
  margin: 0; /* Remove default margin */
}



/* Inner Container (Full width layout) */
.inner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Full-width section */
.full-width-container {
  width: 600px;
  padding: 40px;
}

/* Headings */
.heading h3 {
  font-family: "Mulish", sans-serif;
  font-weight: 600;
  font-size: 36px;
  color: #333;
}
@media (max-width:468px ) {
  .heading h3 {
    font-size: 25px;
    text-align: center;
  }
}

/* Infobox Styling */
.infobox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  margin-bottom: 20px;
  color: #000;
  border-radius: 8px;

}

.infobox-left {
  width: 40px;
  height: 40px;
}

.icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200%;
  height: 200%;
  background-color: #CDE8F4;
  border-radius: 100px;
  margin-left:-60px;
  margin-top:-20px;
}

.check-circle-icon {
  fill: #0182C4;
  width: 24px;
  height: 24px;
}

.infobox-content {
  flex: 1;
  font-family: sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  margin: 0px 0px 0px 0px;
  line-height: 20px;
  margin-top: -20px;
}

.infobox h3 {
  font-size: 22px;
  font-family: "Mulish", Sans-serif;
  font-weight: 500;
  color: #000000;
  margin: 20px 0px 10px 0px;
}
 @media (max-width:468px ) {
  .infobox-content {
      margin-top: -10px;
      padding-left: 30px;
  }


 }
/* Contact Form */
.contact-form-container {

  max-width: 1000px;
  margin: 0;
  background-color: #2AD2C1;
  padding: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  height:min-content;
  margin-top:125px;
}

.form-group {
  margin-bottom: 20px;
}

/* Flexbox for name inputs (side by side) */
.name-inputs {
  display: flex;
  justify-content: space-between;
}

.name-inputs input {
  width: 48%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

/* Styling for form inputs */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 0px 10px 0px;
  margin-top: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
}

/* Button styling */
button {
  padding: 12px 200px;
  background-color: #066AAB;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #066AAB;
}
.heading-animated h3 {
  font-size: 27px;
}

.one{
  display: flex;
  width: 100%;
  padding: px;
  column-gap: 20px;
  border-radius: 5px;
  font-size: 16px;
  text-align: justify;
  justify-content: space-evenly;

}
.heading-animated{
  color:#0182C4;
  font-family:"Mulish", Sans-serif;
  font-weight:800;
  font-size: 15px;
  line-height: 2.5pc;
  margin-bottom: 10px;
}
.heading animated fadeInUp h6 {
  font-size: 38px;
}
.custom-label{
  color: white;
  font-family: "Mulish", Sans-serif;
  font-weight:700;
}
.required-star{
  color:red;
}
@media(max-width: 769px) {
  .container{
    display: table-row; 
  }  
}
/* Responsive Styling */

@media (max-width: 1024px) {
  .contact-form-container {
      padding: 20px;
  }
  .full-width-container {
      width: 100%;
      padding: 20px;
  }

  .infobox-content h3 {
      font-size: 20px;
  }

  .infobox-content p {
      font-size: 14px;
  }
}
@media (max-width: 468px) {
.full-width-container {
  width: 400px;

}
.heading-animated h3 {
  text-align: center;
}
}


@media (max-width: 768px) {
  /* Stack infobox content vertically */
  .infobox {
      flex-direction: column;
      align-items: flex-start;
      text-align: center;
  }

  .infobox-left {
      margin-bottom: 50px;
  }
  @media (max-width: 468px) {
    .infobox-left {
      padding-left: 30px;
    }
  }


  /* Align inputs vertically in the form */
  .one {
      flex-direction: column;
  }

  .one input {
      width: 100%;
      margin-bottom: 10px;
  }

  .contact-form-container {
      max-width: 100%;
  }

  button {
      padding: 10px;
  }

  h1 {
      font-size: 28px;
      text-align: center;
  }
}

@media (max-width: 480px) {
  .infobox-content h3 {
      font-size: 18px;
  }

  .infobox-content p {
      font-size: 15px;
      text-align: center;
  }

  button#submit {
      width: 100%;
      margin-top: -20px;
  }

  .icon-wrap {
      width: 70px;
      height: 70px;
      margin: 0 auto;
      margin-top: 20px;
  }

  h1 {
      font-size: 22px;
  }

  .contact-form-container{
    margin-top: 0px;
  }
  

  input, textarea {
      font-size: 14px;
  }
}


@media(max-width:769px){
  .container{
      display:inline-grid;
      height: auto;

  }
}


---------------------------------------------------------------------


/* Footer Section */
.footer {
  color: #fff;
  position: sticky;
}
.footer-top {
  text-align: center;
  padding: 60px 40px;
  background-color: #16203b;
  font-size: 19px;
  margin-top: 50px;

}

.footer-top h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.footer-top h3 {
  color: #ffff;
  font-size: 38px;
}

.footer-top p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #bbb;
  text-align: center;

}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.contact-info i {
  margin-right: 10px;
  color: #ffffff;
}

.footer-top .btn {
  display: inline-block;
  padding: 10px 40px;
  background-color: #0056b3;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 10px;
  font-size: 20px;
  font-weight: 600;
}

.footer-top .btn:hover {
  background-color: #0056b3;
}

.footer {
  color: #fff;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin: auto;
  background-image: url(../assets/images/Labnova-footer-bg.jpg);
  padding-bottom: 30px;
  padding: 40px;

}

.footer-column {
  flex: 1 1 calc(25% - 20px);
  min-width: 220px;
  padding-left: 30px;
  font-size: 18px;

}

.footer-column h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  padding-top: 30px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #007bff;
}

.footer-column p {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  line-height: 1.9pc;
}
.footer a {
  color: #ffffff; /* Highlight color for the link */
  text-decoration: none;
  transition: color 0.3s;
}
.social-icons {
  display: flex;
  gap: 13px;
}
.icons {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.social-icons a {
  color: #ffffff;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #007bff;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  background: #111827;
  font-size: 1.3rem;
  color: #fff;
}
.footer-bottom p {
  color: #fff;
  font-size: 17px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
      flex-direction: row;
  }
  .footer-column {
      flex: 1 1 1 100%;
  }
}
@media (max-width: 468px) {
  .footer-top {
  font-size: 15px;
}
.footer-top h3 {
  font-size: 25px;
}
.footer-container {
  margin-left: -40px;
}
.footer-top h1 {
  font-size: 22px;
}
}
.contact-info {
  display: flex;
  flex-direction: column;
}

/* Conatct Section Strat*/
.main-contact-section {
  background-color: #0182C4;
  padding: 30px 20px;
  text-align: center;
}

.main-contact-title {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 30px;
  padding-top: 130px;
  text-align: center;

}
.main-contact-container {
  padding-bottom: 80px;
  background-color: #0182C4;
}
@media (max-width: 468px ) {
  .main-contact-container {
    margin-top: 50px;
  }
}
.contact-section {
  padding: 0px;
  background-color: #f9f9f9;
}
.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
}

.contact-main-info, .contact-form {
  flex: 1 1 45%;
  margin: 10px;
  font-size: 19px;
}
.contact-main-info {
  line-height: 10px;
}
.contact-form {
  line-height: 25px;
}
h2 {
  font-size: 24px;
  margin-bottom: 10px;
}
.heading h2 {
  font-size: 31px;
  padding-left: 20px;
}
p {
  color: #000000;
  margin-bottom: 10px;
  line-height: 1.5pc;
}
.faq-section h3 {
  font-size: 30px;
  color: #0056b3;
  margin-bottom: 15px;
  padding-left: 15px;
}
.contact-details h3 {
  border-top: 1px solid #ddd;
  font-size: 18px;
  margin: 10px 0 5px;
  padding-top: 30px;
}

.contact-details p {
  margin: 0;
  color: #333;
  margin-bottom: 20px;
}

.social-links {
  border-top: 1px solid #ddd;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 30px;
  color: black;
  padding-top: 30px;
}


.social-links p {
  margin-bottom: 10px;
  font-weight: 600;
  color: black;
  font-size: 23px;
  margin-top: -1px;
  font-family: roboto;
}
.facebook-icon {
  color: #1877F2;
}
.twitter-icon {
  color: #1BAAE1;
}
.instagram-icon {
  color: #000;
}
.linkedin-icon {
  color: #0077B5;
}
.youtube-icon {
  color: #E62117;
}
.social-links a img {
  width: 30px;
  margin-right: 10px;
  color: #000;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 5px;
  color: #333;
}

.contact-form input, .contact-form textarea {
  margin-bottom: 15px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 100%;
}

.contact-form button {
  padding: 10px 20px;
  background-color: #0182C4;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #0182C4;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info, .contact-form {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: 20px;
  }
  p {
    text-align: left;
  }
  .contact-details h3 {
    font-size: 16px;
  }
@media (max-width: 468px) {
  .contact-number {
    display: flex;
    flex-direction: column;
  }
}
.main-contact-title {
  font-size: 1.5rem;
  margin-bottom: -30px;
  padding-top: 51px;
}

  .social-links a img {
    width: 24px;
  }
}
.info-section {
  background-color: #16213E; /* Dark blue background */
  color: #ffffff;
}

.info-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.info-text {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.info-text h3 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
}

.info-text p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #ffff;
  text-align: center;
}

.cta-button {
  background-color: #4B67E0; /* Bright blue */
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-left: 250px;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #3650c1;
}

.info-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.info-image img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .info-container {
    flex-direction: column;
    text-align: center;
  }

  .info-text h3 {
    font-size: 22px;
  }

  .info-text p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .info-text h3 {
    font-size: 24px;
  }

  .cta-button {
    padding: 10px 15px;
    font-size: 14px;
    margin-left: 15px;
  }
}
.products-section {
  background-color: #0182C4;
  padding: 50px 10px;
  margin-bottom: 50px;
  text-align: center;
  position: sticky;
}
.products-title {
  background-color: #0182C4;
  font-size: 2.5rem;
  margin-bottom: 30px;
  padding-top: 50px;
  color: #ffff;

}

.products-container {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 200px;
}
.contact-main-number {
  display: flex;
    flex-direction: column;
    padding-left: 10px;
    align-items: baseline;
    border-top: 1px solid #ddd;
    margin: 10px;
    gap: 5px;
    margin-left: -10px;
    padding-top: 40px;

}

@media (max-width: 468px) {
  .products-title {
    font-size: 1.5rem;
  }
  .products-section {
    padding: 5px 10px;
    margin-top: 30px;
    z-index: -1;
  }
  .contact-main-number {
    flex-direction: column;  
  }
}


/* About page Start */
/* Content Section */
.content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.content p {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.8;
}
/* Responsive Design */
@media (max-width: 768px) {
  .header h1 {
      font-size: 2rem;
  }

  .content p {
      font-size: 1rem;
      margin-left: 20px;
  }
}

@media (max-width: 480px) {
  .header h1 {
      font-size: 1.8rem;
  }

  .content p {
      font-size: 0.9rem;
      text-align: center;
  }
  .content {
    margin-top: -40px;
    margin-bottom: -40px;
  }
}

/* Section Styling */
.vision-section {
  padding: 2rem 1rem;
}

.vision-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Image Container */
.image-container {
  flex: 1 1 45%;
  text-align: center;
}

.vision-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Text Container */
.text-container {
  flex: 1 1 45%;
}

.text-container p {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .text-container p {
      font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .vision-container {
      flex-direction: column;
      text-align: center;
  }

  .text-container p {
      font-size: 0.9rem;
  }
}
.about-section {
  background-color: #000000;
  padding: 30px 20px;
  text-align: center;
}

.about-title {
  color: #fff;
  font-size: 35px;
  margin-bottom: 30px;
  padding-top: 50px;

}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 200px;
}
.about-button {
  padding: 15px 20px;
}
.about-button a {
  color: #ffffff;
  text-decoration: none;
}
.about {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width:468px) {
  .about-button {
    margin-left: 10px;

  }
  .about-title {
    font-size: 19px;
    text-align: center;
    padding-top: 20px;
  }
}
/* Core Values Section */
.core-values-section {
  background-color: #ffffff;
  padding: 40px 20px;
  border-radius: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Section */
.core-values-header {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;

}

.header h1 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.header p {
  font-size: 1rem;
  color: #555;
}

/* Core Values */
.values {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.value {
  flex: 1 1 calc(33.33% - 20px);
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.value:hover {
  transform: translateY(-5px);
}

.value h3 {
  font-size: 1.25rem;
  color: #2c3e50;
  margin-bottom: 10px;
  text-align: center;
}

.value p {
  font-size: 0.95rem;
  color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .value {
      flex: 1 1 100%;
  }

  .header h1 {
      font-size: 1.8rem;
  }

  .header p {
      font-size: 0.95rem;
  }
}
@media (max-width: 1440px) {
  .value p {
    font-size: 17px;
  }
}



/* Careers page start */
/* Header Section */
.careersheader {
  text-align: center;
  background: linear-gradient(to bottom, #5bb8ff, #008cdd);
  color: white;
  padding: 50px 15px;
  padding-bottom: 130px;
}

.careersheader h1 {
  font-size: 35px;
  margin-bottom: 5px;
  color: #fff;
}

.careersheader p {
  font-size: 20px;
  margin-top: 0;
  color: #fff;
}

/* Form Container */
.careers-form-container {
  width: 90%;
  max-width: 500px;
  margin: 20px auto;
  background: #0182C4;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin-top: -100px;
}

/* Form Styling */
.career-form .careers-form-group {
  margin-bottom: 15px;
}

.career-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}
.careersheader p {
  text-align: center;
  color: #000;
}

.career-form input,
.career-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.career-form input:focus,
.career-form textarea:focus {
  outline: none;
  border-color: #008cdd;
}

.career-form .btn-submit {
  display: inline-block;
  background: #008cdd;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.career-form .btn-submit:hover {
  background: #005f99;
}

/* Contact Info */
.contact-info {
  margin-top: 20px;
  font-size: 19px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-info a {
  color: #008cdd;
  text-decoration: none;
  font-weight: bold;
}

.contact-info a:hover {
  text-decoration: underline;
}
.careers-contact-info {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  padding: 10px;
  font-weight: 600;
  background-color: #ffff;
}
/* Responsive Design */
@media (max-width: 600px) {
  .careers header h1 {
      font-size: 20px;
  }

  .careers header p {
      font-size: 14px;
  }

  .careers-form-container {
      padding: 15px;
  }

  .career-form .btn-submit {
      width: 100%;
      text-align: center;
  }
}
@media (max-width: 468px) {
  .careersheader h1 {
      font-size: 22px;
  }
  .careersheader {
    margin-top: 50px;
  }
  .contact-info {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
  }
  .careersheader p {
      font-size: 14px;
      text-align: center;
  }
}
/* Careers page End */


/* Electrolyte Analyzer Code Start */
/* Container Styles */
.container1 {
  width: 50%;
  margin: 0 auto;
  padding: 20px;
 
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Title Styles */
h1 {
  font-size: 30px;
  color: #0182C4;
  margin-bottom: 10px;
}

/* Paragraph Styles */
p {
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  color: #555;
}

/* Button Styles */
.button-group {
  margin: 35px 0;
}
@media (max-width: 468px) {
  .button-group {
    display: flex;
    flex-direction: column;
    margin-left: 50px;
    gap: 30px;
    margin-right: 30px;
    text-align: center;
  }
  .button {
    padding: 12px 10px;
    font-size: 17px;
  }
}

.button {
  background-color: #0182C4;
  color: white;
  padding: 12px 10px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 5px;
  margin: 0 10px;
  transition: background-color 0.3s ease;
  font-weight: 600;
}

.button:hover {
  background-color: #0056b3;
}

/* Features Section Styles */
h2 {
  font-size: 28px;
  color: #333;
  margin-top: 30px;
  text-align: center;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  margin-bottom: 30px;
}

table, th, td {
  border: 1px solid #858585;
}

th, td {
  padding: 15px;
  text-align: left;
}

th {
  background-color: #e1e2e6;
  color:#000;
}

tr:nth-child(even) {
  background-color: #e1e2e6;
}

/* Assay Table Styles */
thead {
  background-color: #007BFF;
  color: white;
}

td, th {
  font-size: 16px;
}

/* Storage Information Styles */
strong {
  color: #007BFF;
  font-weight: bold;
}

/* General Table Styling */
h2, p {
  font-family: sans-serif;
  font-size: 16px;
  text-align: justify;

}
.one{
  display:flex;
  margin: 0 auto;
  max-width: 1200px;
  font-size: 18px;
  gap: 10px;
  line-height: 35px;
}
.test-lists {
  line-height: 30px;
  font-size: 15px;
}
@media(max-width:1440px) {
  h2, p {
    font-size: 19px;
  }
  td, th {
    font-size: 17px;
  }
  .dropdown-title {
    font-size: 19px;
  }
  .test-lists {
    line-height: 35px;
    font-size: 18px;
  }
  .btn {
    font-size: 18px;
  }
  .button {
    font-size: 18px;
  }
  .footer-column ul {
    font-size: 18px;
  }
  .footer-column p {
    font-size: 18px
  }
  .footer-bottom p {
    font-size: 18px
  }

}
@media(max-width:468px) {
  .td, th {
    font-size: 11px;
  }
  .th, td {
    padding: auto;
  }
}
-------------------------------------------------------------------------------------------------------------------

/* General Container Styles */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Sticky Header Section */
.sticky-header {
  position: sticky;
  top: 0;

  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  text-align: center;
}

/* Image Wrapper Styles */
.image-wrapper {
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper img {
  max-width: 70%;
  height: auto;
  border-radius: 8px;

}
---------------------------------------------------------------------------------
/* General Container Styles */
.container2 {
  width: 90%;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

/* Title Section */
.section h2 {
  font-size: 24px;
  color: #333;
  text-align: center;
  margin-bottom: 10px;
}

.section ul {
  list-style-type: none;
  padding: 0;
  text-align: left;
}

.section ul li {
  font-size: 16px;
  color: #555;
  margin: 5px 0;
}

/* Image Section */
.image-section {
  text-align: center;
}

.image-section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  padding-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
----------------------------------------------------------------
.parameters-section {
  padding: 20px;
  background-color: #ffff; /* Light background for the section */
}
.parameters-section{
  background-color:#fff;
}

.header-section {
  text-align: center;
  margin-bottom: 20px; /* Space below the heading */
}

.header-section h2 {
  font-size: 24px;
  color: #333;
  text-align: center;

}

.main-container {
  display: flex;
  max-width: 1000px;
  flex-wrap: wrap; /* Allows flexibility for smaller screens */
  align-items: center;
   background-color: #fff;
   margin:0 auto;
}
@media(max-width:769px){
 .main-container{
  display:inline-block;
  padding: 20px;
 }
}

.list-section {
  flex: 1; /* Takes available space */
  max-width: 600px; /* Optional, to limit list width */
  line-height: 30px;
}

.list-section ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
}

.image-section {
  flex: 1; /* Takes available space */
  max-width: 500px; /* Optional, to limit image width */
  text-align: center; /* Centers the image */
}

.image-section img {
   max-width: 100%;
  border: none;
  /* border-radius: 0; */
  box-shadow: none;
  height: auto;
  max-width: 100%;
  border: none;
  /* border-radius: 0; */
  box-shadow: none;/* Optional rounded corners */
}



---------------------------------------------------------------
/* General Styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Container */
.container9 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Description Section */
.description-section {
  background-color: #ffff;
  border-radius: 8px;
  margin-bottom: 40px;
  margin-top: -25px;
}
@media(max-width:468px){
  .description-section {
    margin-top: 70px;
  }
  .description-content p {
    font-size: 15px;
  }
  .description-heading h2 {
    padding-left: 20px;
  }
  .description-content h3 {
    font-size: 12px;
  }
}
@media(max-width:1440px) {
  .description-heading h2 {
    margin-left: 15px;
  }
}

.description-heading h1 {
  font-size: 2.1em;
  color: #333;
  margin-bottom: 20px;
  padding-left: 20px;
  margin-bottom: 15px;

}
.description-heading h4 {
  font-size: 35px;
}
.description-heading h2 {
  font-size: 30px;
}
.description-content p {
  color: #555;
  margin-bottom: 16px;
  padding-right: 20px;
  padding-left:20px;
  text-align: justify;

}
.core-values-header h4 {
  font-size: 30px;
  color: #066AAB;
}
.description-content h5 {
  margin-top: 20px;
  font-size: 1.2em;
  color: #333;
  padding-left: 20px;
}
.h4 {
  font-size: 30px;
} 
.description-content ul {
  list-style: disc;
  margin-top: 10px;
  padding-left: 50px;
}

.description-content ul li {
  margin-bottom: 10px;
  color: #555;
  font-size: 19px;
}

.description-content ul li strong {
  color: #333;
}

.description-content a {
  color: #007bff;
  text-decoration: none;
}

.description-content a:hover {
  text-decoration: underline;
}
.description-content h3 {
  font-size: 20px;
  color: #0056b3;
  margin-left: 12px;
  margin-bottom: 10px;
}




--------------------------------------------------------------
/* General Styles */
.accordion {
  max-width: 600px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}

.accordion-title {
  display: block;
  cursor: pointer;
  font-size: 18px;
  padding: 10px;
  background: #f7f7f7;
  color: #333;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.accordion-title:hover {
  background-color: #e6e6e6;
}

/* Hide the checkbox */
.accordion-checkbox {
  display: none;
}

/* Default state: content is hidden */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 10px;
  background: #fff;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

/* When checkbox is checked, show content */
.accordion-checkbox:checked ~ .accordion-content {
  max-height: 200px; /* Adjust based on content */
  padding: 10px;
}

/* FAQ Section */
.faq-section {
  max-width: 1200px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  padding-left: 10px;
  padding-right: 10px;
}

/* Dropdown Wrapper */
.dropdown {
  display: flex;
  flex-direction: column;
}

/* Dropdown Item */
.dropdown-item {
  margin-bottom: 10px;
  position: relative;
}

/* Dropdown Title */
.dropdown-title {
  display: block;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  padding: 14px;
  background-color: #f5f5f5;
  color: #333;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  user-select: none;
}

.dropdown-title:hover {
  background-color: #e0e0e0;
}

/* Hide Native Checkbox */
.dropdown-checkbox {
  display: none;
}

/* Dropdown Content */
.dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 10px;
  background-color: #f9f9f9;
  border-radius: 5px;
}

/* Display Content When Checkbox is Checked */
.dropdown-checkbox:checked + .dropdown-title + .dropdown-content {
  max-height: 200px; /* You can adjust the max-height based on your content */
  padding: 10px;
}

/* Content Text */
.dropdown-content p {
  margin: 10px 0;
  line-height: 1.6;
  font-size: 18px;
}

.three {
  padding-left: 80px;
  margin-top: -50px;
  text-align: center;
  
}
.two {
  width: 1150px;
  margin: auto;
}

@media(max-width:769px){
  .button{
      font-size:17px
  }
  .description-content p {
      padding: 0px;
      font-size: 15px;
  }
  .container9{
      padding:0px;
  }
  .image-wrapper img {
      width:350px;
      margin-top: 30px;

  } 
}
@media(max-width: 468px) {
  .description-content {
    padding-left: 20px;
    padding-right: 20px;
  }
  .description-content ul li {
    line-height: 30px;
  }

  .container9{
    margin-top: -50px;
    z-index: -1;
}
  .dropdown {
    padding-left: 5px;
    padding-right: 20px;
  }
  .image-wrapper img {
   margin-top: 90px;
}
.test-lists {
  padding-left: 20px;
  padding-right: 10px;
}

.two{
width:1100px;
margin:0 auto;
}


.three {
text-align: center; 
padding: 0px;
padding-top: 15px;
padding-bottom: 10px;
}

.three img {
max-width: 100%; /* Ensure responsiveness */
max-width: 1000px; /* Limit the maximum width */
height: auto; /* Maintain aspect ratio */
}
@media (max-width: 1440px) {

  .two {
    width: 1150px;
    margin: auto;
}

}


@media (max-width: 768px) {
.three img {
    max-width: 90%; /* Reduce size slightly on tablets and smaller devices */
}
}

@media (max-width: 480px) {
.three img {
    max-width: 90%; /* Ensure full-width on smaller screens */
}
}



@media(max-width:768px){
.two{
  width:100%;
  padding-left: 10px;
  padding-right: 10px ;
}
}

@media (max-width: 480px) {
.two {
  width:90%;
}


.two h1 {
    font-size: 1.1rem; /* Further reduce for smaller screens */
}

.two h2 {
    font-size: 1.2rem;
}

.two p {
    font-size: 0.9rem; /* Smaller font for readability on small devices */
}
}

@media(max-width:768px){
.container1{
  width:90%;
 }
