/* Default styles for both menus */
.mobile-menu {
    display: none; /* Hide the mobile menu by default */
  }
  
  ul.regular-menu {
    display: block; /* Show the regular menu by default */
  }
  
  /* Style the mobile dropdown menu */
  .mobile-menu select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    margin-bottom: 10px;
  }
  


  @media (min-width: 768px) {
    .logo-header {
      display: block; /* Show the image on desktop screens */
    }
  }

  /* CSS for mobile screens (screens with a maximum width of 767px) */
  @media (max-width: 767px) {
    .logo-header {
      display: none; /* Hide the image on mobile screens */
    }
  }

  /* Add this CSS to your stylesheet */
/* Add this CSS to your stylesheet */
.img-card {
  position: relative;
  margin-bottom: 20px;
  background-color: #f8f8f8;
  border-radius: 10px;
  text-align: center;
  overflow: hidden;
  cursor: pointer;

   box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  height: auto; /* Set a fixed height for the card */
}

.img-card img {
  width: 100%;
  height: 100%; /* Set the image height to 100% to match the card height */
  object-fit: cover; /* Make the image fit within the card while maintaining aspect ratio */
  border-radius: 10px;
  transition: opacity 0.3s;
  opacity: 1;
}

.img-description {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f8f8;
  color: #fff;
  padding: 5px 10px;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s;
}

/* .img-card:hover img {
  opacity: 0;
}

.img-card:hover .img-description {
  opacity: 1;
} */

.animate {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.animate:hover {
  opacity: 0.8; /* Adjust as needed for the desired effect */
}



.img-disp img:hover {
  transform: scale(0.96);
}

/* .img-disp h5 {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
} */

/* .img-disp:hover h5 {
  opacity: 1;
} */



.displayText {
  display: none; /* Initially hidden */
  transition: opacity 0.5s ease-in-out; /* Animation settings */
}



.img-disp {
  display: flex;
  flex-wrap: wrap;
  
  height: auto;
  align-items: center;
  /* height: 300px; */
  margin: 0px 0px;
}

.img-disp img {
  
  height: auto; /* Allow the height to adjust based on the image aspect ratio */
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
  object-fit: cover;
 
}
.whats-app {
  position: fixed;
  width: 50px;
  height: 60px;
  bottom: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 3px 4px 3px #999;
  left: 15px;
  z-index: 100;
}

.my-float {
  margin-top: 10px;
}
article {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s, transform 0.5s;
}

article.active {
  opacity: 1;
  transform: scale(1);
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

article.animate {
  animation: zoomIn 0.2s forwards; /* Use forwards to retain the final state */
}

  /* Use media queries to hide or show the appropriate menu based on screen size */
  @media (max-width: 768px) {
    .mobile-menu {
      display: block; /* Show the mobile menu on smaller screens */
    }
  
    ul.regular-menu {
      display: none; /* Hide the regular menu on smaller screens */
    }
  }
  
  @media (min-width: 769px) {
    .mobile-menu {
      display: none; /* Hide the mobile menu on larger screens */
    }
  
    ul.regular-menu {
      display: block; /* Show the regular menu on larger screens */
    }
  }

  .animate {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  
  .animate:hover {
    opacity: 1;
  }
  




  
  