.image-container {
  position: relative;
  overflow: hidden;
}

.image-container img {
  width: 250px;
  height: 250px;
  transition: 0.1s ease-in-out;
}
.image-title {
  position: absolute;
  top: 80%;
  left: 106px;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 20px;
  background: rgba(0, 0, 0, 0.5); /* Optional background for better readability */
  padding: 5px 5px;
  border-radius: 0;
  z-index: 2;
  transition: opacity 0.1s ease-in-out;
  width: 212px;	
}

.image-container:hover .image-title {
    opacity: 0;
}

/* Show overlay on hover */
.image-container:hover .overlay {
  opacity: 1;
}
 
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
  height: 250px;
  background: rgba(3, 102, 47, 0.9); /* Green background with transparency */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  font-size: 18px;
  text-align: center;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.image-container:hover .overlay {
  opacity: 1;
}

.image-container:hover img {
  filter: brightness(50%); /* Darken the image on hover */
}

.flip_text {
  font-size: 14px;
  color: #fff;
  text-align: left;
  padding: 30px;
}

.image-wrapper {
  display: flex;
  flex-wrap: wrap; /* Allows wrapping to the next row if space runs out */
  gap: 10px; /* Adds spacing between images */
}

.offcanvas {
  background-color: #03662f;}
.offcanvas-header .btn-close {

  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #f6da75; 
  padding: 35px;
  opacity: 1;}
.offcanvas-header .btn-close:hover{
  background-color: #54a17e;
}
.offcanvas-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.offcanvas-body .nav-item .nav-link.active {
  color: #54a17e;
}

.nav-link {
  color: #f6da75;
}
.nav-link:hover {
  color: #54a17e;
}

