






/* video gallery page=-------------- */



.portfolio-section_3 {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.video-box {
  flex: 1 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  box-sizing: border-box;
}

.video-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  /* border-radius: 10px; */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* border-radius: 10px; */
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .video-box {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .video-box {
    flex: 1 1 100%;
    max-width: 100%;
  }
}



.video-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.video-boxs {
  width: 100%;
  max-width: 300px;
  flex: 1 1 300px;
}

.video-wrappers {
  position: relative;
  width: 100%;
  padding-top: 177.78%; /* For 9:16 aspect ratio */
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.video-wrappers video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}





/* --------------------------------------------------------------------------------------------- */
   /* product_page-css */
   .header-honey-page {
    display: flex;
    justify-content: center;
    align-items: center;
    /* min-height: 100vh;  */
    padding: 20px;
    background-color: #f5f5f5;
    text-align: center;
  }

  .honeycomb-header {
    max-width: 1200px;
    padding: 20px;
    /* background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
  }

  .honeycomb-header h3 {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 15px;
  }

  .honeycomb-header p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .honeycomb-header h3 {
      font-size: 1.5rem;
    }

    .honeycomb-header p {
      font-size: 0.95rem;
    }
  }

  @media (max-width: 480px) {
    .honeycomb-header h3 {
      font-size: 1.2rem;
    }

    .honeycomb-header p {
      font-size: 0.9rem;
    }
  }
/* first-1-start */
.gallery-container {
  text-align: center;
  margin-top: 20px;
  padding: 0 15px;
}

.main-image {
  width: 100%;
  max-width: 690px;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border: 2px solid #000;
  margin-bottom: 20px;
}

.thumbnails {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.thumbnails img {
  width: 80px;
  height: 70px;
  cursor: pointer;
  object-fit: cover;
  border: 2px solid #ccc;
  transition: 0.3s;
}

.thumbnails img:hover {
  border: 2px solid #4a887b;
}

/* Tablet */
@media (max-width: 768px) {
  .main-image {
    max-width: 100%;
    height: auto;
  }

  .thumbnails img {
    width: 70px;
    height: 60px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .thumbnails img {
    width: 60px;
    height: 50px;
  }

  .thumbnails {
    gap: 10px;
  }
}


/* first-1-end */

/* second-2-start */
#mainImage1 {
  width: 100%;
  max-width: 700px;
  height: auto;
  max-height: 500px;
  padding: 20px;
}

.image-gallery {
  text-align: center;
  max-width: 800px;
  margin: auto;
  padding: 0 15px;
}

.main-img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.thumbnail-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.thumb-img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 6px;
  transition: 0.3s;
}

.thumb-img:hover {
  border-color: #4a887b;
}

/* Tablet View */
@media (max-width: 768px) {
  .main-img,
  #mainImage1 {
    max-width: 100%;
    max-height: 400px;
  }

  .thumb-img {
    width: 100px;
    height: 70px;
  }
}

/* Mobile View */
@media (max-width: 480px) {
  .thumb-img {
    width: 80px;
    height: 60px;
  }

  .thumbnail-container {
    gap: 10px;
  }
}

/* second-2-end */

/* third-3-start */
/* ===== TDBU DOUBLE FABRIC GALLERY ===== */

#mainImage2 {
  width: 100%;       
  max-width: 700px;   
  height: auto;       
  max-height: 500px;
  padding: 20px;
}

.tdbu-gallery {
  text-align: center;
  margin: 40px auto;
  padding: 0 15px;   
}

.tdbu-gallery .main-img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  margin-bottom: 20px;
}

.tdbu-gallery .thumbnail-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.tdbu-gallery .thumb-img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 6px;
  transition: 0.3s;
}

.tdbu-gallery .thumb-img:hover {
  border-color: #4a887b;
}

/* ===== TABLET ===== */
@media (max-width: 768px) {
  .tdbu-gallery .main-img,
  #mainImage2 {
    max-height: 400px;
  }

  .tdbu-gallery .thumb-img {
    width: 100px;
    height: 70px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 480px) {
  .tdbu-gallery .thumb-img {
    width: 80px;
    height: 60px;
  }

  .tdbu-gallery .thumbnail-container {
    gap: 10px;
  }
}

/* third-3-end */

/* fourth-4-start */  
/* ===== DAY & NIGHT SINGLE FABRIC GALLERY ===== */

#mainImage3 {
  width: 100%;        /* screen ke hisaab se stretch */
  max-width: 700px;   /* desktop cap */
  height: auto;
  max-height: 500px;
  padding: 20px;
}

.dn-gallery {
  text-align: center;
  margin: 40px auto;
  padding: 0 15px;    /* thoda side padding mobile ke liye */
}

.dn-gallery .main-img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  margin-bottom: 20px;
}

.dn-gallery .thumbnail-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.dn-gallery .thumb-img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 6px;
  transition: 0.3s;
}

.dn-gallery .thumb-img:hover {
  border-color: #4a887b;
}

/* ===== TABLET ===== */
@media (max-width: 768px) {
  #mainImage3,
  .dn-gallery .main-img {
    max-height: 400px;
  }

  .dn-gallery .thumb-img {
    width: 100px;
    height: 70px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 480px) {
  .dn-gallery .thumb-img {
    width: 80px;
    height: 60px;
  }

  .dn-gallery .thumbnail-container {
    gap: 10px;
  }
}

/* fourth-4-end */  

/* fifth-5-start */
/* ===== DAY & NIGHT DOUBLE FABRIC GALLERY ===== */

#mainImage4 {
  width: 100%;
  max-width: 700px;    /* desktop cap */
  height: auto;
  max-height: 500px;
  padding: 20px;
}

.ddn-gallery {
  text-align: center;
  margin: 40px auto;
  padding: 0 15px;     /* side padding for mobile */
}

.ddn-gallery .main-img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  margin-bottom: 20px;
}

.ddn-gallery .thumbnail-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.ddn-gallery .thumb-img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 6px;
  transition: 0.3s;
}

.ddn-gallery .thumb-img:hover {
  border-color: #4a887b;
}

/* ===== TABLET ===== */
@media (max-width: 768px) {
  #mainImage4,
  .ddn-gallery .main-img {
    max-height: 400px;
  }

  .ddn-gallery .thumb-img {
    width: 100px;
    height: 70px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 480px) {
  .ddn-gallery .thumb-img {
    width: 80px;
    height: 60px;
  }

  .ddn-gallery .thumbnail-container {
    gap: 10px;
  }
}

/* fifth-5-end */

/* sixth-6-start */
/* ===== HONEYCOMB SKYLIGHTS GALLERY ===== */

#mainImage5 {
  width: 100%;
  max-width: 700px;
  height: auto;
  max-height: 500px;
  padding: 20px;
}

.sky-gallery {
  text-align: center;
  margin: 40px auto;
  padding: 0 15px;
}

.sky-gallery .main-img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  margin-bottom: 20px;
}

.sky-gallery .thumbnail-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.sky-gallery .thumb-img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 6px;
  transition: 0.3s;
}

.sky-gallery .thumb-img:hover {
  border-color: #4a887b;
}

/* ===== TABLET ===== */
@media (max-width: 768px) {
  #mainImage5,
  .sky-gallery .main-img {
    max-height: 400px;
  }

  .sky-gallery .thumb-img {
    width: 100px;
    height: 70px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 480px) {
  .sky-gallery .thumb-img {
    width: 80px;
    height: 60px;
  }

  .sky-gallery .thumbnail-container {
    gap: 10px;
  }
}

/* sixth-6-end */
   




















/* vertiduo ------------------------------------------------------------------------*/
#mainImage11 {
  width: 100%;
  max-width: 700px;
  height: auto;
  max-height: 500px;
  padding: 12px;
}

.curtain-gallery {
  text-align: center;
  max-width: 800px;
  margin: auto;
  padding: 0 15px;
}

.main-img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.thumbnail-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.thumb-img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 6px;
  transition: 0.3s;
}

.thumb-img:hover {
  border-color: #4a887b;
}

.pdf-image {
  background-color: #4a887b;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}

.pdf-image a {
  color: #fff;
  text-decoration: none;
}

.pdf-image:hover {
  background-color: #3c6e61;
}

/* Tablet */
@media (max-width: 768px) {
  #mainImage11,
  .main-img {
    max-width: 100%;
    max-height: 400px;
  }

  .thumb-img {
    width: 100px;
    height: 70px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .thumb-img {
    width: 80px;
    height: 60px;
  }

  .thumbnail-container {
    gap: 10px;
  }

  .pdf-image {
    width: 100%;
    display: block;
    margin-top: 20px;
  }
}
/* torq---------------------------------------------------------------------- */
/* product-css-end */



/* ============================== */
/*  site photos (Crafted Elegance, Installed Perfectly) */

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px 10px;
  /* Optional: max-width and center */
  max-width: 1200px;
  margin: 0 auto;
}

.image-box {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: #fff; /* Uncomment if you want a white background */
  transition: box-shadow 0.3s ease;
}

.image-box:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.image-wrapper {
  width: 100%;
  height: auto;
  text-align: center;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block; /* Fixes inline img whitespace issues */
}

.image-wrapper img:hover {
  transform: scale(1.05);
}

/* Optional heading styling */
.exh-image h2 {
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 600;
}

/* Media query for smaller devices */
@media (max-width: 400px) {
  .image-grid {
    grid-template-columns: 1fr;
    padding: 10px 5px;
  }
  
  .exh-image h2 {
    font-size: 1.8rem;
  }
}




/* ============================== */

/* Modal css */
  
 .image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px 10px;
}


  .modal-content-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .modal-image {
    max-width: 80vw;
    max-height: 70vh;
    border-radius: 8px;
  }

  .modal-icon {
    position: absolute;
    color: #d2c2c2;
    font-size: 30px;
    font-weight: bold;
    z-index: 10;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: background 0.3s;
  }

  .modal-icon:hover {
    background: rgba(0, 0, 0, 0.8);
  }

  .modal-close {
    top: 10px;
    right: 10px;
  }

  .modal-prev {
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

  .modal-next {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

  .modal-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    overflow-x: auto;
    max-width: 90vw;
    padding-bottom: 5px;
  }

  .modal-thumbnails img {
    height: 80px;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
  }

  .modal-thumbnails img.active-thumb {
    border-color: white;
  }

  .thumb-img, .main-img {
    cursor: pointer;
  }
.modal-thumb-nav {
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    margin: 0 10px;
    user-select: none;
    align-self: center;
}
.modal-zoom-group {
  position: absolute;
  bottom: 45px;
  z-index: 10001;
  display: flex;
  flex-direction: column;  /* stack vertically */
  gap: 10px;               /* spacing between + and - */
}

.modal-icon.modal-zoom-in,
.modal-icon.modal-zoom-out {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  line-height: 1;
  z-index: 10051;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.modal-icon.modal-zoom-in:hover,
.modal-icon.modal-zoom-out:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}




/* ============================== */
/* instagram reel section -css */

.videos-carousel, .videos-container {
  position: relative;
  max-width: 100%;
  overflow-x: hidden; 
  overflow-y: hidden;  
  margin: 40px auto;
}

.videos-wrapper {
  display: flex;
  gap: 2px;
  transition: transform 0.5s ease-in-out;
  animation: scroll 40s linear infinite;
}

.videos-box {
  position: relative;
  max-width: 250px;
  flex-shrink: 0;
}

video {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
  background: #000;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 255, 200, 0.4); 
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.overlay i {
  font-size: 36px;
  color: #fff;
}

.videos-box:hover .overlay {
  opacity: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 16)); 
  }
}

/* ============================== */
