.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  overflow: hidden; 
}

.floating-buttons button {
  float: left;             
  width: 44px;
  height: 44px;
  background: #f2f2f2;
  border: 1px solid #ddd;
  cursor: pointer;
  font-size: 18px;
  color: #000;
  margin-left: 6px;
  transition: 0.5s ease-in-out;
}

.floating-buttons button:hover {
  background: #000;
  color: #fff;
}

#backToTop {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10000000;
}

/* Prevent overlap with chat widget on small screens */
@media only screen and (max-width: 767px) {
  #backToTop {
    bottom: 90px; /* increase if chat widget is taller */
  }
}

.plr-none-mobile {
  padding: 0;
}
.mrl-none-mobile {
  margin: 0;
}
@media only screen and (min-width: 992px) {
  .plr-none-mobile {
    padding-left: 0;
    padding-right: 15px;
  }
  .mrl-none-mobile {
    margin-left: 0;
    margin-right: 0;
  }
}



/* SUB PAGES */

 /* Sub-page 5 items override - full width stretch */
    .sub-page-5-items .blh-target-audience-text-content > .container {
        max-width: 100%;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .sub-page-5-items .blh-target-audience-content {
        padding: 0;
    }

    /* Fix anchor wrapper */
    .sub-page-5-items .blh-target-audience-img-col > a {
        display: block;
        position: relative;
        width: 100%;
        height: 100%;
        color: inherit;
        text-decoration: none;
    }

    .sub-page-5-items .blh-target-audience-img-col > a img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    @media (min-width: 768px) {
        .sub-page-5-items .blh-target-audience-img-cols .blh-target-audience-img-col {
            flex: 1;
        }

        .sub-page-5-items .blh-target-audience-img-cols .blh-target-audience-img-col:hover,
        .sub-page-5-items .blh-target-audience-img-cols .blh-target-audience-img-col.blh-target-audience-active {
            flex: 1.5;
        }
    }

    /* Gradient overlay on images in 5 item section */
    .sub-page-5-items .blh-target-audience-img-col::after {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(to bottom,
            transparent 0%,
            transparent 30%,
            rgba(0, 0, 0, 0.85) 100%);
        pointer-events: none;
    }

    .sub-page-5-items .blh-target-audience-img-col .content-area,
    .sub-page-5-items .blh-target-audience-img-col .content-area1 {
        z-index: 2;
    }

    .sub-page-5-items .blh-target-audience-img-col .content-area1 {
        padding-top: 10px;
    }

/* Sub-page 4 items override - full width stretch */
    .sub-page-4-items .blh-target-audience-text-content > .container {
        max-width: 100%;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .sub-page-4-items .blh-target-audience-content {
        padding: 0;
    }

    /* Fix anchor wrapper */
    .sub-page-4-items .blh-target-audience-img-col > a {
        display: block;
        position: relative;
        width: 100%;
        height: 100%;
        color: inherit;
        text-decoration: none;
    }

    .sub-page-4-items .blh-target-audience-img-col > a img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    @media (min-width: 768px) {
        .sub-page-4-items .blh-target-audience-img-cols .blh-target-audience-img-col {
            flex: 1;
        }

        .sub-page-4-items .blh-target-audience-img-cols .blh-target-audience-img-col:hover,
        .sub-page-4-items .blh-target-audience-img-cols .blh-target-audience-img-col.blh-target-audience-active {
            flex: 1.75;
        }
    }

    /* Gradient overlay on images in 4 item section */
    .sub-page-4-items .blh-target-audience-img-col::after {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(to bottom,
            transparent 0%,
            transparent 30%,
            rgba(0, 0, 0, 0.85) 100%);
        pointer-events: none;
    }

    .sub-page-4-items .blh-target-audience-img-col .content-area,
    .sub-page-4-items .blh-target-audience-img-col .content-area1 {
        z-index: 2;
    }

    .sub-page-4-items .blh-target-audience-img-col .content-area1 {
        padding-top: 10px;
    }

    .octogon-bg {
        position: relative;
    }

    .octogon-bg::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 0;
        background-image: url("/images/bg-octagon.png");
        background-repeat: repeat;
        opacity: 0.1;
        pointer-events: none;

        -webkit-mask-image: linear-gradient(to bottom,
                black 0%,
                black 32%,
                rgba(0, 0, 0, 0.5) 42%,
                transparent 52%);

        mask-image: linear-gradient(to bottom,
                black 0%,
                black 32%,
                rgba(0, 0, 0, 0.5) 42%,
                transparent 52%);
    }

    .octogon-bg > * {
        position: relative;
        z-index: 1;
    }

    /* Responsive Video Styles */
    .responsive-video-wrapper {
        position: relative;
        width: 100%;
        max-width: 100%;
        margin: 0 auto 30px;
        border-radius: 8px;
        overflow: hidden;
        background: #000;
    }

    .responsive-video {
        display: block;
        width: 100%;
        height: auto;
        max-width: 100%;
    }

    @media (max-width: 767px) {
        .responsive-video-wrapper {
            border-radius: 4px;
            margin-bottom: 20px;
        }
    }

    .specs-section {
      background: #f5f5f5;
      position: relative;
      overflow: hidden;
    }
    .specs-card {
      background: #fff;
      border: 1px solid #ddd;
      border-left: 4px solid #222;
      padding: 40px;
      position: relative;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }
    .specs-card::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 100px;
      height: 100px;
      background: linear-gradient(135deg, transparent 50%, rgba(0,0,0,0.02) 50%);
    }
    .specs-card h2 {
      color: #000;
      font-size: 14px;
      letter-spacing: 4px;
      text-transform: uppercase;
      margin-bottom: 30px;
      font-weight: 400;
      position: relative;
      padding-bottom: 15px;
    }
    .specs-card h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 2px;
      background: #222;
    }
    .specs-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .specs-list li {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      border-bottom: 1px solid rgba(0,0,0,0.08);
      color: #000;
    }
    .specs-list li:last-child {
      border-bottom: none;
    }
    .specs-label {
      color: #666;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
    }
    .specs-value {
      color: #222;
      font-weight: 600;
      font-size: 15px;
      text-align: right;
    }
    .specs-image-container {
      position: relative;
    }
    .specs-image-container img {
      filter: grayscale(20%) contrast(1.1);
    }
    /* PDF Downloads Bar */
    .pdf-bar-wrapper {
      position: relative;
      z-index: 10;
      margin-top: -40px;
      margin-bottom: -40px;
    }
    .pdf-bar {
      background: #000;
      padding: 25px 30px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    }
    @media (min-width: 992px) {
      .pdf-bar {
        flex-wrap: nowrap;
        justify-content: space-between;
      }
    }
    .pdf-bar a {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      text-decoration: none;
      font-size: 15px;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 12px 18px;
      border: 1px solid #444;
      transition: all 0.2s ease;
    }
    .pdf-bar a:hover {
      background: #000;
      border-color: #fff;
    }
    .pdf-bar a i {
      font-size: 14px;
      color: #888;
      transition: color 0.2s ease;
    }
    .pdf-bar a:hover i {
      color: #fff;
    }



/* PHOTO gallery  */

/* ===== GRID ITEMS (6 across ≥ 992 px) ===== */
.flex-gallery-image{
    width:calc((100% - 5*5px)/6);    /* 6 cards, 5 gaps */
    border-right:5px solid #fff;     /* make the “gap” */
    border-bottom:5px solid #fff;    /* vertical gap */
    box-sizing:border-box;
    overflow:hidden;
    transition:opacity .3s ease;
}

/* remove the extra right border at end of each row */
.flex-gallery-image:nth-child(6n){border-right:none;}

/* ===== 4 across (≤ 991 px) ===== */
@media(max-width:991px){
    .flex-gallery-image{
        width:calc((100% - 3*5px)/4);  /* 4 cards, 3 gaps */
        border-right:5px solid #fff;   /* keep gap */
    }
    .flex-gallery-image:nth-child(6n){border-right:5px solid #fff;} /* reset */
    .flex-gallery-image:nth-child(4n){border-right:none;}
}

/* ===== 2 across (≤ 767 px) ===== */
@media(max-width:767px){
    .flex-gallery-image{
        width:calc((100% - 1*5px)/2);  /* 2 cards, 1 gap */
        border-right:5px solid #fff;
    }
    .flex-gallery-image:nth-child(4n){border-right:5px solid #fff;} /* reset */
    .flex-gallery-image:nth-child(2n){border-right:none;}
}

/* ===== 1 across (≤ 479 px) ===== */
@media(max-width:479px){
    .flex-gallery-image{
        width:100%;
        border-right:none;            /* single column, no right gap */
    }
}

/* ===== HOVER ZOOM (unchanged) ===== */
.flex-gallery-image img{
    width:100%;
    transition:transform 2s ease;
}
.flex-gallery-image:hover img{
    transform:scale(1.15);
}


/* filter buttons */
.gallery-btn-list{
    list-style:none;
    padding:0;
    margin:0;
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}
.gallery-btn{
    display:inline-block;
    padding:8px 18px;
    background:#3C3C3C;
    border:1px solid #3C3C3C;
    color:#fff;
    text-transform:uppercase;
    font-weight:600;
    line-height:1.2;
    transition:background .3s ease,color .3s ease,border-color .3s ease;
    cursor: pointer;
}
.gallery-btn:hover,
.gallery-btn.active{
    background:#909090;
    border-color:#222;
    color:#fff;
    text-decoration:none;
}
/* .gallery-btn.active{
    border-radius: 15px 15px 0px 0px;
} */

/* PHOTO gallery  END*/    