    .dashboard {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 20px;
    }

    .card {
      flex: 1 1 200px;
      background-color: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      text-align: center;
    }

    .card h2 {
      margin: 10px 0;
      font-size: 2em;
      color: #007BFF;
    }

    .label {
      font-size: 1.1em;
      color: #555;
    }
       .hero-slider img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Marquee Container */
        .small-banner {
            background-color: #222222;
            padding: 10px 0;
        }

        .small-banner h5 {
            color: white;
            font-size: 16px;
            margin: 0;
            text-align: center;
            white-space: nowrap;
        }

        /* Optional: Adjust font size for very small screens */
        @media (max-width: 576px) {
            .small-banner h5 {
                font-size: 14px;
            }
        }