/* Container for Fluid Text */
    .fluid-container {
      text-align: center;
      padding: 1rem;
      width: 100%;
      box-sizing: border-box;
    }

    /* Heading */
    h1 {
      font-size: 4rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #ffffff;
      margin: 0;
      padding-bottom: 1rem;
    }

    /* Responsive Fluid Text */
    .fluid-text {
      position: relative;
      display: inline-block;
      font-size: calc(4rem + 2vw); /* Dynamic font size based on viewport width */
      font-weight: bold;
      color: transparent;
      text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }

    /* Fluid Animation */
    .fluid-text::before {
      content: 'Fluid';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('img/2.jpg') repeat; /* Seamless texture */
      background-size: 200%;
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: fluid-flow 9s infinite linear;
    }

    /* Keyframes for Smooth Infinite Animation */
    @keyframes fluid-flow {
      0% {
        background-position: 0% 0%;
      }
      100% {
        background-position: 100% 100%;
      }
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
      h1 {
        font-size: 3.5rem;
      }

      .fluid-text {
        font-size: calc(4rem + 1vw);
      }
    }

    @media (max-width: 480px) {
      h1 {
        font-size: 2.9rem;
      }

      .fluid-text {
        font-size: calc(2.9rem + 1vw);
      }
    }