/* Slider Container */
.custom-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px; /* Optional: rounds the corners of the slider */
}

/* The Moving Track */
.slider-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  width: 100%;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
}

.slide img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Navigation Arrows */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(25, 25, 25, 0.6); /* Semi-transparent dark contrast */
  color: #FFFFFF;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  z-index: 10;
}

.slider-btn:hover {
  background-color: #80B215; /* Brand green on hover */
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

/* Dots Navigation */
.slider-dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: #FFFFFF;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}

.dot.active {
  opacity: 1;
  background-color: #80B215; /* Active dot brand green */
}

#features
{
  background-color:#f9faf9 !important;
}

.g-5, .gy-5
{
  --bs-gutter-y: 0rem !important;
}

.logo-in-footer
{
  width:75%;
  height:75%;
  padding-bottom:30px;
}

.reviewer-details h5
{
  color:var(--default-color);
}

.header .header-social-links {
  padding-right: 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 24px;
}

.header .header-social-links a:hover {
  color: var(--accent-color);
}

.header .header-social-links a i {
  line-height: 0px;
}

.header .header-social-links .facebook {
  color: #3b5998;
}

.header .header-social-links .instagram {
  color: #2f2f30;
}

.header .header-social-links .whatsapp {
  color: #25d366;
}

.header .header-social-links .tiktok {
  color: #ff0050;
}

/* Custom Lightbox Overlay */
.custom-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18, 18, 18, 0.95); /* Deep charcoal background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.custom-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.custom-lightbox img {
  max-width: 90%;
  max-height: 90vh;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border-radius: 8px;
}

/* Close Button */
.custom-lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #ffffff;
  font-size: 45px;
  font-weight: 300;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s ease;
}

.custom-lightbox-close:hover {
  color: #80B215; /* Solid Edge Green */
}

/* Optional: Slight hover effect on the gallery images */
.custom-lightbox-link img {
  transition: transform 0.3s ease;
}
.custom-lightbox-link:hover img {
  transform: scale(1.02);
}

/* Navigation Arrows */
.custom-lightbox-prev,
.custom-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s ease;
  padding: 15px; /* Creates a larger tap target for mobile */
  z-index: 10000;
}

.custom-lightbox-prev {
  left: 10px;
}

.custom-lightbox-next {
  right: 10px;
}

.custom-lightbox-prev:hover,
.custom-lightbox-next:hover {
  color: #80B215;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .custom-lightbox-prev,
  .custom-lightbox-next {
    font-size: 30px;
    padding: 10px;
  }
  .custom-lightbox img {
    max-width: 80%; /* Leaves room for the arrows on small screens */
  }
}

.about-2 .differentiators-area .diff-header p
{
  max-width:100% !important;
}

.heroshowroomlink
{
  color:#fff !important;
}

/* Decorex Announcement Block */
.decorex-announcement {
  border-left: 5px solid #80B215;
  background-color: #f8f9fa;
}

.decorex-title {
  color: #333333;
}

.decorex-icon {
  color: #80B215;
}

/* Gallery Year Headings */
.gallery-year-heading {
  font-size: 26px;
  font-weight: 600;
  color: #333333;
  padding-bottom: 8px;
  margin-bottom: 20px;
  border-bottom: 3px solid #80B215;
  display: inline-block;
}

/* Project Gallery Headings */
.project-category-heading {
  font-size: 26px;
  font-weight: 600;
  color: #333333;
  padding-bottom: 8px;
  margin-bottom: 20px;
  border-bottom: 3px solid #80B215;
  display: inline-block;
}

/* Force perfect uniformity for all thumbnails */
.project-thumb {
  width: 100%;
  aspect-ratio: 4 / 3; /* Change to 1 / 1 if you prefer square thumbnails */
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Optional hover effect to make the grid feel interactive */
.project-thumb:hover {
  transform: scale(1.03);
}

/* Offset the scroll position so the sticky header doesn't cover the category title when clicked */
.project-category-block {
  scroll-margin-top: 120px; 
}

.about-heading
{
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}