  .slide {
    position: relative;
    height: 550px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    color: var(--white);
    justify-content: center;
    background-image: linear-gradient(to right, #060606b4, rgba(42, 39, 39, 0.915));
    }

.ul-banner-2-slide-bg-img{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    width: -webkit-fill-available;
}

.ul-banner-title {
    font-size: 45px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 20px;
    font-weight: 600; 
}

.breadcrumb-box {
    display: inline-block;
    padding: 0px 25px;
    background-color: rgba(123, 120, 120, 0.292);
    color: white;
}

.breadcrumb{
   margin-top: 1rem;
}

.breadcrumb a {
  color: white;
  text-decoration: none;
  margin-right: 7px;
}

.breadcrumb a:hover {
  color: #a42b13;
}

.ul-banner-txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
 
/*------------------- Responsive -------------------*/

/* Tablet view (≤ 991px) */
 @media (max-width: 991px) {
  .slide {
    height: 450px;
    padding: 50px 20px;
  }

  .ul-banner-title {
    font-size: 50px;
	  text-align: center;
  }

  .breadcrumb-box {
    padding: 0px 20px;
  }
	.project-details {
    margin: 40px 40px !important;
	} 
	.image img {
    width: unset !important;
	}
}
@media (max-width: 576px) {
  .slide {
    height: 350px;
    padding: 30px 15px;
  }

  .ul-banner-title {
    font-size: 32px;
	text-align: center;
  }

  .breadcrumb-box {
    padding: 0px 15px;
	  margin-right: 10px;
  }

  .breadcrumb a {
    font-size: 0.85rem;
    margin-right: 5px;
  }
} 

/*------------------------------------------Image slider styling---------------------------*/
/* .slider {
/*   width: 85rem;
/*   height: 600px;
  margin: 82px auto;
  position: relative; 
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

input[type="radio"] {
  display: none;
}


.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}


.slided {
  width: 100%;
  flex-shrink: 0;
  height: 100%;
}

.slided img {
  width: 100%;
  height: 100%;
  object-fit: cover; */
/*   border-radius: 20px;
}


.slides {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
}

.slided {
  width: 100%;
  flex-shrink: 0;
  height: 100%;
}
 

.navigation-manual {
  position: absolute;
  bottom: 15px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 10;
}

.manual-btn {
  border: 2px solid #ffffff;
  padding: 5px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.manual-btn:hover {
  background: #a42b13;
}
 */ 


/*---------------------------------- Responsive Styling ----------------------------------*/


/* @media (max-width: 1024px) {
  .slider {
    width: 90%;
    height: 450px;
    margin: 60px auto;
    border-radius: 18px;
  }

  .slided img {
    border-radius: 18px;
  }

  .manual-btn {
    padding: 5px;
  }
}

@media (max-width: 768px) {
  .slider {
    width: 95%;
    height: 320px;
    margin: 50px auto;
    border-radius: 15px;
  }

  .slided img {
    border-radius: 15px;
  }

  .navigation-manual {
    bottom: 15px;
    gap: 10px;
  }

  .manual-btn {
    padding: 4px;
    border-width: 1.5px;
  }
}
*/
/* @media (max-width: 480px) {
  .slider {
    width: 100%;
    height: 250px;
    margin: 40px auto;
    border-radius: 12px;
  }

  .manual-btn {
    padding: 3px;
  }
}
 */ 

/* MAIN SLIDER WRAP */
.slider {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0px 20px;
}

/* HIDE RADIO BUTTONS */
.slider input[type="radio"] {
    display: none;
}

/* SLIDES GRID */
.slider .slides {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* EACH SLIDE CARD */
.slider .slides .slided {
    background: linear-gradient(135deg, #ededed, #f6f6f6);
    border-radius: 28px;
    padding: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    overflow: hidden;
}

/* IMAGE */
.slider .slides .slided img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* HOVER EFFECT */
.slider .slides .slided:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
}



/* RESPONSIVE */
@media (max-width: 1024px) {
    .slider .slides {
        grid-template-columns: repeat(2, 1fr);
		gap: 15px;
    }
	
}

@media (max-width: 600px) {
    .slider .slides {
        grid-template-columns: 1fr;
		gap: 0px;
    }
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 85%;
}

/* ARROWS */
.lightbox-arrow {
    position: absolute;
    top: 50%;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    transform: translateY(-50%);
    user-select: none;
}

.lightbox-arrow.left { left: 30px; }
.lightbox-arrow.right { right: 30px; }

/* CLOSE */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}



/*-----------------------------Projectg details styling--------------------*/

.project-details {
  max-width: 1350px;
  margin: 40px auto;
  padding: 0px;
}

.section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.section h3{
    font-weight: 700;
}
.section h4{
    font-weight: 700;
}

.section p {
  font-size: 1rem;
  margin-bottom: 12px;
  text-align: start;
}

@media (max-width: 480px) {
	.section p {
    line-height: 20px;
}
}