  .floating-hex-container {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    z-index: 2;
  }

  .floating-hex-container .hex {
    flex: 0 0 auto;
  }

  .hex {
    position: relative;
    width: min(220px, 40vw);
    aspect-ratio: 1;
    background: #00f49c; /* teal fill */
    clip-path: polygon(
      50% 0%,
      93% 25%,
      93% 75%,
      50% 100%,
      7% 75%,
      7% 25%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.0rem;
    text-align: center; /* just in case */
    color: #000; /* black text */
    animation: float 4s ease-in-out infinite;
    z-index: 1;
    border: 3px solid #fff; /* solid white border */
    box-shadow: 0 0 15px #ffffff, 0 0 30px #ffffff; /* glowing border */
  }

  .hex-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
    font-size: 3.0rem; /* adjust as needed */
    font-weight: 700;  /* optional: makes it bolder */
  }
  
  .hex:nth-child(2) { animation-delay: 0.2s; }
  .hex:nth-child(3) { animation-delay: 0.4s; }
  .hex:nth-child(4) { animation-delay: 0.6s; }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-25px); }
  }

  body {
  overflow-x: hidden;
}
.white-text {
  color: white;
}

#homeSection {
  position: relative;
  overflow: hidden;
}

#homeSection .container {
  position: relative;
  height: 100%;
}

#slideText {
  position: relative;
  z-index: 2;
}

#bannerHexMount {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;

  display: flex;
  justify-content: center;
}

#bannerHexMount .floating-hex-container {
  display: none;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;

  width: fit-content;     
  margin: 0 auto;          /* 👈 centers the actual hex group */

  pointer-events: auto;
}

#slideText {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#slideTitle, 
#slideSubtitle {
  text-align: center;
  width: 100%;
}

#bannerHexMount {
  transform: translateX(-50.5%);
}

header,
.navbar {
  margin-bottom: 0 !important;
}

#homeSection {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

#homeSection .container {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

#bannerHexMount {
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}