/*counter*/
#counter {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px;
    background-color: #2890f152;
  }
  .counter h1{
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 4.6rem; /* Adjusted to be responsive */
    text-align: center;
    flex-direction: column;
    margin: 0 0 0 0;
  
  }
  .counter-container {
    height: 300px;
    width: 800px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .circle {
    background-color: #096ff5;
    color: white;
    padding: 40px;
    border-radius: 50%;
    margin: 20px 20px 40px 90px;
  }
  
  .circle span {
    font-size: 2em;
    font-weight: 500;
  }
  
  .circle p {
    font-size: 18px;
  }
  
  /* Mobile responsive styles */
  @media (max-width: 768px) {
    .counter-container {
      flex-direction: column;
      height: auto;
      width: 100%;
      align-items: center;
    }
  
    .circle {
      padding: 40px;
      margin: 20px 0;
    }
  
    .circle span {
      font-size: 2em;
    }
  
    .circle p {
      font-size: 16px;
    }
  }
  
  @media (max-width: 480px) {
    .circle {
      padding: 30px;
    }
  
    .circle span {
      font-size: 1.5em;
    }
  
    .circle p {
      font-size: 14px;
    }
  }