  .floating-hex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 60px 20px;
    width: 100%;
    background-color: #000; /* black background */
  }

  .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 {
  opacity: 0;
  transition: opacity .4s ease;
}
