
.count-section {
  font-family: solaimanlipi, sans-serif;
  margin-left: 165px;
  margin-right: 165px;
  margin-top: 100px;
  margin-bottom: 100px;
}

  .left {
    flex: 1;
    position: relative;
  }


  .left img {
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2); 
    width: 500px;
    height: 350px;
  }


  .right {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    position: relative;
  }

  .count-card {
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 4px;
    padding-left: 20px;
    padding-right: 0px;
    padding-top: 5px;
    padding-bottom: 5px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  }

  .count-card

  .count-card :hover {
    background-color: lightgrey;
    border-color: #8B0000;
    transform: scale(1.1);
    transition: all 0.3s ease;
  }

  .count-title {
    color: red;
    font-weight: bolder;
    font-size: 30px;
  }

  .count-desc {
    color: #666;
    font-size: 18px;
  }

    /* .bottom-of-left {
    text-align: left;
    color: red;
    font-weight: bold;
  } */

  

