.gallery-section {
  padding: 60px 0;
  background: #ffffff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;   /* image stretch nahi hot */
  display: block;
  background: #f2f2f2;
}

/* Tablet */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid img {
    height: 230px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: auto;   /* mobile la natural height */
  }
}







    /* ================= GALLERY ================= */
    .gallery-section {
      padding: 100px 0;
      background: #ffffff;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
    }

    .gallery-grid img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      cursor: pointer;
      background: #f2f2f2;
    }

    /* Tablet */
    @media (max-width: 992px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* Mobile */
    @media (max-width: 576px) {
      .gallery-grid {
        grid-template-columns: 1fr;
      }
      .gallery-grid img {
        height: auto;
      }
    }

    /* ================= LIGHTBOX ================= */
    .lightbox {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.9);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    .lightbox img {
      max-width: 90%;
      max-height: 90%;
      animation: zoom 0.4s ease;
    }

    @keyframes zoom {
      from { transform: scale(0.7); }
      to { transform: scale(1); }
    }

    .lightbox .close {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 36px;
      color: #fff;
      cursor: pointer;
    }
  


    .pause-btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: 1px solid #fff;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
}

.pause-btn:hover {
  background: #ffffff;
  color: #000;
}


/* ===== FULL WIDTH BANNER ===== */
.gallery-banner {
  width: 100%;
  /* min-height: 150px; */
      height: 91px;


  background-image: url(http://www.vcarepathlab.com/wp-content/uploads/2016/05/emotionheader-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  /* background-color: red; */
}

/* dark overlay full width */
.banner-overlay {
  width: 100%;
  min-height: 150px;
  /* background: rgba(0, 0, 0, 0.65); */
}

/* container content alignment */
.banner-content {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* title */
.banner-content h1 {
      padding-bottom: 50px;
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: #777777;
}

/* breadcrumb */
.breadcrumb {
      padding-bottom: 50px;

  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #777777;
}

.breadcrumb i {
  color: #777777;
}

.breadcrumb .slash {
  color: #777777;
}

.breadcrumb .active {
  color: #777777;
}

/* responsive */
@media (max-width: 768px) {
  .gallery-banner,
  .banner-overlay,
  .banner-content {
    min-height: 120px;
  }

  .banner-content h1 {
    font-size: 20px;
  }
}



