#banner {
  position: relative;
  margin-top: 15vh;
  height: 90vh;
  background: url('../images/photoshoot/photoshoot-banar-01.jpg') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 80px;
  color: white;
  overflow: hidden;
}

/* Heading */
#bannerHeading {
  font-size: 7.5rem;
  margin-top: 30vh;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 1s ease;
  color: #e5e5e5;
  text-transform: uppercase;

  line-height: 0.7;
  letter-spacing: -2px;

  /*  BLACK SHADOW EFFECT */
  text-shadow: 
    0 2px 5px rgba(0, 0, 0, 0.6),
    0 8px 20px rgba(0, 0, 0, 0.5),
    0 15px 40px rgba(0, 0, 0, 0.4);
}      
 
#scrollArrow {
  margin-top: 10vh;
  align-self: center; 
  cursor: pointer;
  font-size: 1.4rem;
  color: white;
  border: 2px solid white;
  border-radius: 50%;
  width: 55px;   
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
}

#scrollArrow:hover {
  background-color: rgba(255,255,255,0.2);
}

/* Bounce */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

@media (max-width: 992px) {
  #banner {
    height: 90vh;
    padding-left: 50px;
    padding-right: 20px;
  }

  #bannerHeading {
    font-size: 4.5rem;
    margin-top: 18vh;
  }
}


@media (max-width: 768px) {
  #banner {
    height: 80vh;
    padding-left: 25px;
    padding-right: 25px;
    align-items: flex-start;
  }

  #bannerHeading {
    font-size: 3rem;
    margin-top: 15vh;
    line-height: 1;
    letter-spacing: -1px;
  }

  #scrollArrow {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  #banner {
    margin-top: 12vh;
    height: 50vh;
    padding-left: 20px;
    padding-right: 20px;
  }

  #bannerHeading {
    font-size: 2.2rem;
    margin-top: 12vh;
    line-height: 1.2;
    letter-spacing: -1px;
  }

  #scrollArrow {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
}













/* intro section start */

#nextSection {
  min-height: 40vh;
  background: linear-gradient(to right, #ffffff, #f8f9fa);
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

/* content wrapper */
#nextSection .content {
  max-width: 1000px;
  width: 100%;
  text-align: left;   
}

/* heading */
#nextSection .section-heading {
  font-size: 52px;
  font-weight: 500;
  color: #0099ff;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-transform: none;
}

/* paragraph */
#nextSection p {
  font-size: 19px;
  color: #444;
  line-height: 1.8;
  letter-spacing: 0.3px;
}


@media (max-width: 768px) {
  #nextSection {
    padding: 60px 15px;
  }

  #nextSection .section-heading {
    font-size: 28px;
  }

  #nextSection p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  #nextSection .section-heading {
    font-size: 22px;
  }

  #nextSection p {
    font-size: 0.95rem;
  }
}


/* intro secrtion End*/







/* photoshoot section start */

.photosection {
  padding: 50px 20px;
  background: #f5f5f5;
}

/* GRID: 4 per row */

.grid-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* BOX */

.img-box {
  position: relative;
  overflow: hidden;
  transform: translateY(50px);
  opacity: 0;
  transition: 0.6s ease;
}

/* Scroll animation */

.img-box.show {
  transform: translateY(0);
  opacity: 1;
}

.img-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* DOOR OVERLAY (Left + Right panels) */
   
.img-box::before,
.img-box::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2;
  transition: transform 0.5s ease;
}

/* Left door */
.img-box::before {
  left: 0;
  transform: translateX(-100%);
}

/* Right door */
.img-box::after {
  right: 0;
  transform: translateX(100%);
}

/* Hover → doors close */
.img-box:hover::before {
  transform: translateX(0);
}

.img-box:hover::after {
  transform: translateX(0);
}

/* OPTIONAL: hover zoom effect */
.img-box:hover img {
  transform: scale(1.1);
  transition: 0.5s;
}


.overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 5;   
  opacity: 0;
  transition: 0.4s ease;
  pointer-events: none;
}

.overlay-content h3 {
  font-size: 25px;
  margin-bottom: 5px;
  white-space: nowrap;
  max-width: 90%;
  letter-spacing: 1px;
  
}

.overlay-content p {
  font-size: 18px;
  
}


/* jab hover ho tab text show ho */
.img-box:hover .overlay-content {
  opacity: 1;
}


.bullet-text::before {
  content: "•";
  color: #00eeff;
  font-size: 38px;
  margin-right: 5px;
  position: relative;
  top: 7px;  
}



@media (max-width: 992px) {
  .grid-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}


@media (max-width: 768px) {
  .grid-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .img-box img {
    height: 200px;
  }
}


@media (max-width: 480px) {
  .grid-gallery {
    grid-template-columns: 1fr;
  }

  .img-box img {
    height: 320px;
  }
}


@media screen and (min-width: 1500px) and (max-width: 2000px) {
  .photosection {
    padding: 80px 40px;
  }

  .grid-gallery {
    max-width: 1800px;
    margin: 0 auto;
    gap: 30px;
  }

  .img-box img {
    height: 350px;
  }

  .overlay-content h3 {
    font-size: 30px;
  }

  .overlay-content p {
    font-size: 20px;
  }

  .bullet-text::before {
    font-size: 44px;
    top: 8px;
  }
}






