
    body {
      font-family: 'Raleway', sans-serif;
      background: linear-gradient(to bottom, #0c122c, #1c1f4a);
      color: white;
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 2rem;
    }

    .container {
      background-color: #1e2a47;
      border-radius: 10px;
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      padding: 2rem;
      max-width: 800px;
      width: 100%;
    }

    .left-box {
      background-color: #202a59;
      border-radius: 10px 80px 10px 10px;
      padding: 2rem;
      flex: 1 1 200px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.5rem;
      margin-bottom: 2rem;
    }

    .logo img {
      width: 30px;
    }

    .icons {
      display: flex;
      gap: 1rem;
    }

    .icons img {
      background-color: #0c122c;
      padding: 0.5rem;
      border-radius: 10px;
      width: 40px;
    }

    .right-box {
      background-color: #202a59;
      border-radius: 10px;
      padding: 2rem;
      position: relative;
      flex: 2 1 300px;
    }

    .right-box p {
      margin-bottom: 1rem;
      font-size: 0.95rem;
    }

    .progress-bar-container {
      background-color: #0c122c;
      border-radius: 10px;
      height: 20px;
      position: relative;
    }

    .progress-bar {
      background: linear-gradient(to right, #ff4c91, #ff8a56);
      height: 100%;
      border-radius: 10px;
      width: 0%;
      transition: width 0.5s ease-in-out;
      position: relative;
    }

    /* .circle {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 0;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background-color: white;
    } */

    .range-labels {
      display: flex;
      justify-content: space-between;
      font-size: 0.8rem;
      margin-top: 0.5rem;
    }

    .remaining-box {
      position: absolute;
      top: -40px;
      right: 20px;
      background-color: white;
      color: #0c122c;
      padding: 0.5rem 1rem;
      border-radius: 10px 10px 0 10px;
      font-weight: bold;
      font-size: 1.2rem;
    }

    .remaining-box small {
      font-size: 0.7rem;
      color: gray;
      font-weight: normal;
      margin-left: 5px;
    }

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
        padding: 1.5rem;
       
      }
       #count{
          width: 400px;
        }

      .remaining-box {
        top: auto;
        bottom: -40px;
        right: 50%;
        transform: translateX(50%);
        border-radius: 10px;
      }
    }
      @media(min-width:768px)and (max-width: 899px) {
      .container {
        flex-direction: column;
        padding: 1.5rem;
      
      }
        #count{
          width: 500px;
        }
    }