/* Navbar Styles */
html{
  font-family: 'Times New Roman', ;
}
.logo {
    display: flex; /* Use Flexbox */
    align-items: center; /* Vertically center the items */
    gap: 10px; /* Add some spacing between the image and the text */
  }
  
  .logo img {
    max-width: 50px; /* Adjust the size as needed */
    height: auto; /* Maintain aspect ratio */
    border-radius: 5px; /* Optional: Add rounded corners */
    
  }
  
  .logo h3 {
    font-size: 1.2rem; /* Adjust text size for responsiveness */
    margin: 0;
  }
  

/* General Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background-color: skyblue;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

body{
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}



.navbar .logo h3 {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.menu ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.menu ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.menu ul li a:hover,
.menu ul li a.active {
    color: #333;
    font-weight: bold;
    text-decoration: underline;
}

/* Hamburger Icon */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.5rem;
}

.hamburger .bar {
    width: 3rem;
    height: 0.4rem;
    background-color: white;
    transition: all 0.3s ease;
}



.whatsapp-float {
    position: fixed;
    bottom: 1.5rem; /* Adjust spacing from the bottom */
    right: 1.5rem; /* Adjust spacing from the right */
    z-index: 1000;
    background-color: #25D366; /* WhatsApp green */
    border-radius: 50%;
    width: 3.5rem; /* Size of the icon */
    height: 3.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
  }
  
  .whatsapp-icon {
    width: 60%;
    height: 60%;
  }
  
  /* Footer Section */
.footer {
    background-color: #e5e5e3;
    color: #ffffff;
    padding: 40px 20px;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-about,
  .footer-links,
  .footer-contact {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
  }
  
  .footer-heading {
    font-size: 1.5rem;
    color: #020266;
    margin-bottom: 20px;
  }
  
  .footer-about p,
  .footer-contact p {
    font-size: 0.9rem;
    line-height: 1.6;
    font-size: 1.3rem;
    color: black;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    color: black;
    text-decoration: none;
    font-size: 1.3rem;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #ff2d2a;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    border-top: 1px solid #444444;
    padding-top: 20px;
    flex-wrap: wrap;
  }
  
  .footer-bottom p {
    font-size: 0.8rem;
    margin: 0;
    color: black;
  }
  
  .footer-socials a {
    margin-left: 10px;
    display: inline-block;
  }
  
  .footer-socials img {
    width: 20px;
    height: 20px;
    filter: invert(1);
    transition: transform 0.3s ease;
  }
  
  .footer-socials a:hover img {
    transform: scale(1.2);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-socials {
      margin-top: 10px;
    }
  }

 

.navbar {
    display: flex;
    justify-content: space-between;
    background: #92d6f8;
    padding: 15px 30px;
    color: white;
    align-items: center;
}

.navbar .menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar .menu ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* gallery */

.lab-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  padding: 20px;
}

.lab-photos img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.lab-photos img:hover {
  transform: scale(1.05);
}
.hamburger {
  display: none;
  cursor: pointer;
}
.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: black;
}
/* @media screen and (max-width: 768px) {
  .menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      left: 0;
      background: white;
      width: 100%;
      padding: 10px;
  }
  .menu.active {
      display: flex;
  } */
  /* .hamburger {
      display: block;
  } */
}