body {
  font-family: Arial, sans-serif;
}

.cards-container {
  display: flex;
  justify-content: space-around;
  margin-top: 50px;
}

.card {
  width: 200px;
  text-align: center;
  cursor: pointer;
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.gradient_layer_recent_work_img {
  background-color: transparent;
  padding: 10px;
  position: absolute;
  bottom: 0px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
}
.disabled {
  opacity: 0.2 !important;
  pointer-events: none;
}
.company_img:hover .gradient_layer_recent_work_img {
  background-color: #0e0e1191 !important;
}

/* Lightbox styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
}

.lightbox-content img {
  max-width: 90%;
  max-height: 80vh;
  margin-top: 50px;
}

.close {
  position: absolute;
  top: 10px;
  right: 25px;
  color: white;
  font-size: 35px;
  cursor: pointer;
}

.navigation .prev,
.navigation .next {
  color: white;
  font-size: 30px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 10px;
}

.navigation .prev {
  left: 20px;
}

.navigation .next {
  right: 20px;
}

/* recent slider light house css  */
/* Lightbox Modal Styling */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 100px;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
  /* Darker background for focus */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-modal .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Show the modal when active */
.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

/* Images in the lightbox take half of viewport height and width */
.lightbox-modal img {
  width: 100%;
  height: 500px;
  max-height: 500px;
  object-fit: cover;
}

.swiper-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Navigation buttons for the swiper */
.swiper-button-next,
.swiper-button-prev {
  color: white;
  z-index: 10000;
  /* Ensure buttons are above everything */
}

.lighthouse_img {
  display: flex;
  justify-content: center;
}
