
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}
.gallery-item:hover .overlay {
  opacity: 1;
}
.gallery-item .plus {
  font-size: 40px;
  color: #fff;
  background: #f4a100;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  text-align: center;
}
.lightbox-content {
  max-width: 80%;
  max-height: 80%;
}
.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}


.heroSlider {
  width: 100%;
  /* height: 100vh; */
}
.slide-img {
  width: 100%;
  /* height: 100vh;         */
  object-fit: cover;      /* image को crop करके full cover */
  display: block;
}
.swiper-slide {
  margin: 0;
  padding: 0;
}
.grey_spadce {
    text-align: center;
}


.icon_box {
  width: 90px;
  height: 90px;
  margin: 0 auto;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  animation: float 3s ease-in-out infinite;
}
.icon_box img {
  max-width: 50%;
  max-height: 50%;
}
.icon_box:hover {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

header .navbar {
    padding: 10px 0;
}


@media (max-width: 991.98px) {
    .spacer_header_top {
        height: 60px !important;
    }
    header .navbar {
    padding: 10px 0 !important;
}
.left_iconz.mb-20 h6 {
    margin-top: 13px !important;
}
    .section_title {
        font-size: 18px !important;
        margin-top: -11px !important;
    }
}






.feautures.has_style3 .swiper-slide-active .box p{
  color: #fff !important;
}



.about-hero {
    position: relative;
    height: 320px; /* Desktop height */
    background-size: cover;
    background-position: center;
    overflow: hidden;
    color: #fff;
}

/* Dark overlay */
.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

/* Hero content */
.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero-subtitle {
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #f4a100;
}

.about-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
    .about-hero {
        height: 400px;
    }
    .about-hero-title {
        font-size: 36px;
    }
}

@media (max-width: 575.98px) {
    .about-hero {
        height: 300px;
    }
    .about-hero-title {
        font-size: 28px;
    }
}
