/* Scrollable Tabs */
.tabs-container {
  overflow-x: auto;
  white-space: nowrap;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  /* padding: 10px 0; */
  line-height: 50px;
  margin-bottom: 20px;
  margin-left: 40px;
  margin-right: 40px;

}

.tabs-scroll {
  display: flex;
}

.tab-button {
  background: none;
  border: none;
  padding: 10px 20px;
  /* margin-right: 10px; */
  cursor: pointer;
  font-size: 16px;
  color: #555;
  /* border-radius: 25px; */
  transition: all 0.3s ease;
}

.tab-button.active {
  background: #FCDC31;
  color: black;
  box-shadow: 0 4px 6px rgba(0, 123, 255, 0.2);
}

.tab-button:hover {
  background: #e0e0e0;
  color: #333;
}

/* Gallery Layout */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
  padding: 20px;
  /* Set a fixed height for each row */
  grid-auto-rows: minmax(350px, auto);
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}



/* Scrollbar Styling */
.tabs-container::-webkit-scrollbar {
  height: 8px;
}

.tabs-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.tabs-container::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.tabs-container::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* styles.css */
/* Previous styles remain the same */

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 66%;
  max-height: 90%;
  position: relative;
}

#modalImage {
  width: 100%;
  height: auto;
  /* border-radius: 10px; */
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: #ccc;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: white;
  cursor: pointer;
  padding: 20px;
  transition: color 0.3s ease;
}

.prev:hover,
.next:hover {
  color: #ccc;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* styles.css */
/* Previous styles remain the same */

/* Tabs Container */
.tabs-container {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  /* Hide overflow */
  margin-bottom: 20px;
}

.tabs-scroll {
  display: flex;
  overflow-x: hidden;
  /* Hide scrollbar */
  scroll-behavior: smooth;
  /* Smooth scrolling */
  flex: 1;
}

/* styles.css */
/* Previous styles remain the same */

/* Slider Buttons */
.slider-button {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  z-index: 1;
  transition: background 0.3s ease;
  width: 50px;
}

.slider-button:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Hide slider buttons when not needed */
.slider-button.hidden {
  display: none;
}














.gallery {
  display: grid;
  gap: 10px;
  /* Adjust spacing between grid items */
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

/* Mobile: 1 image per row */
@media (max-width: 600px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

/* Tablet: 2 images per row */
@media (min-width: 601px) and (max-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Laptop/Desktop: 3 images per row */
@media (min-width: 1025px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  margin: 20px;

}

.breadcrumb-item.active,
.breadcrumb-item a:hover {
  color: var(--themeht-primary-color);
}

.breadcrumb-item+.breadcrumb-item:before {
  color: var(--themeht-primary-color);
}


/* Adjust padding for tablets (768px and above) */
@media (min-width: 576px) {
  .gallery-container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* Adjust padding for small desktops (1024px and above) */
@media (min-width: 1024px) {
  .gallery-container {
    padding-left: 45px;
    padding-right: 45px;
  }
}

/* Adjust padding for large desktops (1440px and above) */
@media (min-width: 1440px) {
  .gallery-container {
    padding-left: 100px;
    padding-right: 100px;
  }
}

/* Fade transition for gallery */
.gallery {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.gallery.fade-out {
  opacity: 0;
}







.gallery-content {
  display: flex;
  /* max-width: 1000px; */
  padding: 50px;
  gap: 40px;
  margin: auto;
}

.gallery-content h1 {
  flex: 1;
  font-size: 3rem;
  margin: 0;
}

.gallery-content p {
  flex: 1;
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: justify;
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery-content {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .gallery-content h1 {
    font-size: 2.5rem;
  }

  .gallery-content p {
    font-size: 1rem;
  }

  .gallery-content {
    gap: 20px;
  }

  .gallery-content p {
    text-align: center;
  }

}




@media (max-width: 550px) {
  .tabs-container {
    height: 30px;
    margin-bottom: -13px;
  }

  .slider-button {
    font-size: 13px;
  }

  .tab-button {
    font-size: 10px;
    padding: 10px 13px;
  }

}

@media (max-width: 400px) {
  .prev {
    left: 6px;
  }

  .next {
    right: 6px
  }
}
.navbar-logo {
  height: 100px;       /* Adjust as needed */
  width: auto;        /* Maintain aspect ratio */
  display: block;     /* Removes extra line-height from inline images */
  padding: 0;         /* Make sure image has no internal padding */
  margin: 0;          /* Remove any default spacing */
}
.navbar,
.navbar-brand,
.container {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}