/* banner start */
.tj-breadcrumb-area {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 230px 0 120px;
    overflow: hidden;
    position: relative;
    z-index: 1
}

.tj-breadcrumb-area::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(7 124 234 / .5);
    z-index: -2
}

.tj-breadcrumb-area::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(1 15 52 / .3);
    z-index: -1
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .tj-breadcrumb-area {
        padding: 200px 0 100px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .tj-breadcrumb-area {
        padding: 180px 0 80px
    }
}

@media (max-width:575px) {
    .tj-breadcrumb-area {
        padding: 180px 0 80px
    }
}

.tj-breadcrumb-bg-shape {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(4%, -30%);
    -ms-transform: translate(4%, -30%);
    transform: translate(4%, -30%);
    z-index: -1
}

.tj-breadcrumb-title {
    color: var(--tj-color-common-white);
    font-weight: var(--tj-fw-bold);
    margin-bottom: 12px;
    font-size: var(--tj-fs-h2);
}

.tj-breadcrumb-body {
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-medium);
    font-size: 18px;
    color: var(--tj-color-common-white);
    margin-bottom: 0
}

.tj-breadcrumb-body .spacing {
    margin: 0 10px 0
}
/* banner  closed */


/* Gallery */
.overall-gallery {
  padding: 10px 0;
}

.gallery-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: 800;
}

.gallery-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.gallery-images img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  cursor: zoom-in;
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
}

.gallery-images img:hover {
  transform: scale(1.05);
}

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  animation: zoomIn 0.4s ease;
}

#lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* Zoom animation */
@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .gallery-title {
    font-size: 26px;
  }

  .gallery-images img {
    height: 100%;
  }
}


.gallery-showcase {
  margin-bottom: 80px;
  padding: 10px 10px;
  background: radial-gradient(circle at top left, #f6ffea, #ffffff 60%);
}

/* Header */
.showcase-header {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.showcase-badge {
  display: inline-block;
  padding: 8px 18px;
  background: #85c815;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.showcase-header h1 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  margin-bottom: 20px;
}

.showcase-header p {
  font-size: clamp(16px, 2.3vw, 18px);
  line-height: 1.9;
  margin: 0 auto;
  color: #444;
}

/* Grid */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 34px;
  max-width: 1200px;
  margin: auto;
}

/* Glass Cards */
.showcase-glass {
      border: 2px solid #85c815;

  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 28px;
  padding: 36px 34px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.showcase-glass:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.18);
}

.showcase-glass h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 14px;
}
.showcase-glass h4 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 14px;
}.showcase-glass h5 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 14px;
}
.showcase-glass p,
.showcase-glass li {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  text-align: justify;
}

/* List */
.showcase-glass ul {
  padding-left: 20px;
}

.showcase-glass ul li {
  margin-bottom: 10px;
}

/* Accent */
.showcase-glass.accent {
  border: 2px solid #85c815;
  background: linear-gradient(145deg, #f9ffef, #ffffff);
}

/* Mobile */
@media (max-width: 576px) {
  .gallery-showcase {
    padding: 50px 15px;
  }

  .showcase-glass {
    padding: 28px 24px;
  }
}

.gallery-design-section {
  padding: 70px 0;
  background: #f9fafb;
}

.gallery-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.gallery-badge {
  display: inline-block;
  background: #0d6efd;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 10px;
}

.gallery-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}

.gallery-header p {
  font-size: 17px;
  color: #4b5563;
    text-align: justify;

  line-height: 1.7;
}

/* Grid layout */
.gallery-design-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Cards */
.gallery-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
}

.gallery-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #111827;
}

.gallery-card p {
  font-size: 15px;
  color: #4b5563;
}

.gallery-card ul {
  margin-top: 12px;
  padding-left: 18px;
}

.gallery-card ul li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #374151;
}

/* Highlight card */
.gallery-card.highlight {
  background: linear-gradient(135deg, #0d6efd, #0b5ed7);
  color: #ffffff;
}

.gallery-card.highlight h3,
.gallery-card.highlight p {
  color: #ffffff;
      text-align: justify;

}

/* CTA */
.gallery-cta-box {
  margin-top: 60px;
  text-align: center;
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.gallery-cta-box h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.gallery-cta-box p {
  color: #555;
  margin-bottom: 20px;
      text-align: justify;

}

.gallery-cta-btn {
  display: inline-block;
  background: #0d6efd;
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
}

.gallery-cta-btn:hover {
  background: #0b5ed7;
  color: #ffffff;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
  .gallery-design-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-header h2 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .gallery-design-grid {
    grid-template-columns: 1fr;
  }

  .gallery-header h2 {
    font-size: 26px;
  }

  .gallery-cta-box {
    padding: 30px 20px;
  }
}

/* ========== NEW TABS & VIDEO POPUP STYLES (enhanced look, preserving core) ========== */
.gallery-tab-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0 30px;
  flex-wrap: wrap;
}
.gallery-tab-btn {
  background: transparent;
  border: solid 1px #0d6efd;
  padding: 12px 32px;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #4b5563;
  background: #f1f5f9;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.gallery-tab-btn.active {
  background: #0d6efd;
  color: white;
  box-shadow: 0 8px 20px rgba(13,110,253,0.25);
}
.gallery-tab-btn:hover:not(.active) {
  background: #e2e8f0;
  color: #0d6efd;
  transform: translateY(-2px);
}
.tab-pane {
  display: none;
  animation: fadeIn 0.35s ease;
}
.tab-pane.active-pane {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Video grid cards */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin: 30px 0 20px;
}
.video-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 35px -10px rgba(0,0,0,0.1);
  transition: all 0.3s;
  cursor: pointer;
}
.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 40px -12px rgba(0,0,0,0.2);
}
.video-thumb {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-icon-overlay {
  position: absolute;
  width: 70px;
  height: 70px;
  background: rgba(0,0,0,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: all 0.2s;
  color: white;
  font-size: 28px;
  font-weight: bold;
  border: 2px solid rgba(255,255,255,0.9);
}
.video-card:hover .play-icon-overlay {
  background: #0d6efd;
  transform: scale(1.05);
}
.video-info {
  padding: 18px 20px 22px;
}
.video-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1e293b;
}
.video-info p {
  color: #5b6e8c;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
}
/* Video Popup Lightbox (separate from image lightbox, preserves original image lightbox) */
.video-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.94);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.video-popup-content {
  position: relative;
  width: 90%;
  max-width: 1100px;
  background: #000;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 50px rgba(0,0,0,0.5);
}
.video-popup-inner {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.video-popup-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.close-video-popup {
  position: absolute;
  top: -45px;
  right: 0px;
  background: none;
  border: none;
  color: white;
  font-size: 40px;
  cursor: pointer;
  transition: 0.2s;
  font-weight: 300;
  z-index: 10;
}
.close-video-popup:hover {
  color: #0d6efd;
}
@media (max-width: 768px) {
  .close-video-popup {
    top: -40px;
    right: -5px;
    font-size: 36px;
  }
  .gallery-tab-btn {
    padding: 8px 24px;
    font-size: 16px;
  }
}
/* additional polish for existing image gallery */
.gallery-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.gallery-images img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}
.gallery-images img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 30px rgba(0,0,0,0.12);
}
.gallery-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin: 30px 0 15px;
  color: #1f2937;
}
.showcase-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin: 40px 0 30px;
  justify-content: center;
}
.showcase-glass {
  background: #fff;
  padding: 26px 22px;
  border-radius: 28px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.05);
  flex: 1 1 260px;
  transition: 0.2s;
}
.showcase-glass.accent {
  background: linear-gradient(145deg, #eef5ff, #ffffff);
  border-left: 5px solid #0d6efd;
}
.showcase-header {
  text-align: center;
  margin-bottom: 20px;
}
.showcase-badge {
  background: #0d6efd20;
  color: #0d6efd;
  padding: 6px 18px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 13px;
}
.overall-gallery {
  padding: 30px 0 60px;
}