.elementor-1353 .elementor-element.elementor-element-79187e9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1353 .elementor-element.elementor-element-813be10{width:100%;max-width:100%;}.elementor-1353 .elementor-element.elementor-element-00624f2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-1353 .elementor-element.elementor-element-971eaec{width:100%;max-width:100%;}.elementor-1353 .elementor-element.elementor-element-9df93eb{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-1353 .elementor-element.elementor-element-2fd1cd0{width:100%;max-width:100%;}.elementor-1353 .elementor-element.elementor-element-9fab3fd{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-1353 .elementor-element.elementor-element-5f521de{width:100%;max-width:100%;}.elementor-1353 .elementor-element.elementor-element-ddf0b0e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-1353 .elementor-element.elementor-element-4d7d292{width:100%;max-width:100%;}.elementor-1353 .elementor-element.elementor-element-27075b6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-1353 .elementor-element.elementor-element-5cd5e88{width:100%;max-width:100%;}.elementor-1353 .elementor-element.elementor-element-146be34{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-1353 .elementor-element.elementor-element-8822f37{width:100%;max-width:100%;}/* Start custom CSS for html, class: .elementor-element-4d7d292 *//* Gallery Item */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  width: 100%;
  height: 280px; /* ✅ Fixed height for all slides */
}

.gallery-item img {
  width: 100%;
  height: 100%;       /* ✅ Ensure image fills the fixed height */
  object-fit: cover;   /* ✅ Crops image while keeping aspect ratio */
  display: block;
  transition: transform 0.4s ease;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(185, 122, 60, 0.88);
  color: #fff;
  font-size: 1.1rem;
  padding: 12px 15px;
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s ease;
  font-weight: 500;
}

.gallery-item:hover img {
  transform: scale(1.15);
}

.gallery-item:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}
/* Pagination Dots */
.swiper-pagination-bullet {
  background: #ec741c !important;   /* default orange */
  opacity: 0.5;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #ec741c !important;   /* active dot stays orange */
  opacity: 1;
  transform: scale(1.3);            /* enlarge active dot */
}
/* Custom Arrow Colors */
.swiper-button-next,
.swiper-button-prev {
  color: #ec741c !important;   /* arrow color */
  font-weight: bold;
  transition: color 0.3s ease, transform 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #b95a12 !important;   /* darker orange on hover */
  transform: scale(1.2);
}/* End custom CSS */