.shadow-effect {
        background: #fff;
        padding: 5px;
        border-radius: 4px;
        text-align: center;
        border:1px solid #ECECEC;
        box-shadow: 0 19px 38px rgba(0,0,0,0.10), 0 15px 12px rgba(0,0,0,0.02);
        }
      .video_large_wrap a {
        position: relative;
        display: block;
       
      }
      .video_large_wrap a:after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: url(../images/play_icon_01.png) no-repeat center center;
        z-index: 2;
        width: 80px;   /* control icon size */
        height: 80px;
        background-size: contain;
        animation: pulsePlay 1.8s infinite;
      }

     /* Glow + pulse animation */
@keyframes pulsePlay {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}



  .icon_Box .service-icon{
    color: #77787a;
    background: linear-gradient(to left, #fcfcfc, #f3f3f3);    
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(0,0,0,0.03);
    position: relative;
    z-index: 1;
    transition: all .3s ease-in-out;
}
.icon_Box .service-icon:before{
    content: "";
    background: linear-gradient(to right, #fcfcfc, #f3f3f3);
    width: 88%;
    height: 88%;
    border-radius: 50%;
    box-shadow: 5px 0 5px rgba(0, 0, 0, 0.1);
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
}

.icon_Box .service-icon:hover{transform: scale(1.1);}
.service-content{transition: all .3s ease-in-out;}
.service-content h4{ font-size: 15px;  transition: all .3s ease-in-out; }
.service-content:hover h4{ font-weight: 600; }
.icon_Box .service-icon img{ 
    width: 100px; 
    margin: auto; 
    top: 20px;
    position: relative; 
  }


.banking-partners {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}


.trust-text {
  font-size: 14px; text-transform: uppercase; font-weight: 600;
  color: #151618;
  margin-bottom: 25px;
}

.bank-logos {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.bank-card {
  width: 220px;
  height: 110px;
  border-radius: 12px;
  background: #fff;
  box-shadow:  0 5px 15px rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.bank-card img {
  max-width: 160px;
  filter: grayscale(0);
  opacity: 1;
}

.bank-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

.bank-card:hover img {
  filter: grayscale(100%);
  opacity: 1;
}

.features {
  list-style: none;
  padding: 0;
  margin: 20px 0 35px;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.features li {
  font-size: 15px;
  color: #333;
  position: relative;
  padding-left: 22px;
}

.features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2b8e2d;
}

#floor-plan-slider .owl-nav button.owl-next, .featured_carousel .owl-nav button.owl-next{

  background: url(../images/arrow_lg_2.png) no-repeat right; background-size: cover;
    width: 70px;
    height: 70px;
  }

  #floor-plan-slider .owl-nav button.owl-prev, .featured_carousel .owl-nav button.owl-prev{
    left: -12px;
  background: url(../images/arrow_lg_2.png) no-repeat left; background-size: cover;
    width: 70px;
    height: 70px;
  }
.featured_carousel .owl-nav button.owl-prev{left: -25px;}
.featured_carousel .owl-nav button.owl-next{ right: -45px; }
/* -------- Layout -------- */
.gallery-wrap{  
  margin: 30px auto;
}

/* Each slide */
.zoom-item{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  transition: .5s ease;
  transform: scale(0.85);
  opacity: .55;
  filter: blur(2px);      /* side blur */
}

/* Center slide */
.zoom-gallery .center .zoom-item{
  transform: scale(1);
  opacity: 1;
  filter: blur(0);
}

/* Images */
.zoom-item img{
  width: 100%;
  display: block;
  border-radius: 18px;
}

/* -------- ZOOM ICON -------- */
.zoom-icon{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0,0,0,.6);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: .3s ease;
  z-index: 5;
}

/* Hide icon on all slides by default */
/* Disable only side slides, NOT the inner content */
.zoom-gallery .owl-item:not(.center) .zoom-item{
  pointer-events: none;
}

/* Enable only center slide */
.zoom-gallery .owl-item.center .zoom-item{
  pointer-events: auto;
}

/* Enable only center slide */
.zoom-gallery .center{
  pointer-events: auto;
}

.zoom-icon.show-zoom {
  opacity: 1 !important;
  visibility: visible !important;
}


/* 👉 YOUR REQUIREMENT — only center + hover */

.zoom-gallery .owl-item.center .zoom-item:hover .zoom-icon{
  opacity: 1;
  visibility: visible;
}
/* -------- Glass Caption -------- */
.caption-box{
  position: absolute;
  bottom: 30px;
  left: 15px;
  right: 15px;
  padding: 12px 15px;
  border-radius: 15px;

  background: rgba(255,255,255,.18);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
}

.caption-box h4{
  margin: 0;
  font-size: 18px;
  color: #fff;
}

.caption-box p{
  margin: 4px 0 0;
  font-size: 11px;
  position: absolute;
  bottom:-28px;
  right: 0
}

/* position arrows container full height */
.nav-arrows{
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none; /* taaki images block na ho */
}

/* make buttons clickable again */
.nav-arrows button{
  pointer-events: auto;
  background: #fff;
  border: 1px solid #ddd;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* slight spacing from edges */
.nav-arrows .prev{
  margin-left: 5%;
}

.nav-arrows .next{
  margin-right: 5%;
}

/* ===== FINAL WORKING HOVER FIX ===== */

/* ensure correct positioning */
.image_set,
.img-box,
.zoom-item{
  position: relative !important;
}

.col-custom-5-col {
  position: relative;
  min-height: 1px;
  padding-right: 15px; /* Matches Bootstrap's default gutter padding */
  padding-left: 15px;  /* Matches Bootstrap's default gutter padding */
}

/* For medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .col-custom-5-col {
    width: 20%;
    float: left;
  }
}

@media only screen and (max-width: 767px) {

  .icon_Box .service-icon{ width: 120px; height: 120px; }
  .icon_Box .service-icon img{ width: 75px; }
  .services__item img {
    width: 100px !important;
    margin: auto auto 10px auto;
}
  .icon_list .owl-nav{ top: 30%;}
  
  .col-custom-5-col{ margin: auto; width: 80%; }
  .content-column { margin-left: 20px;margin-top: 0; }

  #floor-plan-slider .owl-nav button.owl-next, #floor-plan-slider .owl-nav button.owl-prev{ width: 45px; height: 45px; }
#floor-plan-slider .owl-nav button.owl-prev{ left: 18px; }

  }