.statistics-section {
  position: relative;
  height: 192px;
  margin-right: -48px;
  margin-left: -48px;
}
@media (max-width: 991px) {
  .statistics-section {
    height: auto;
  }
}
.statistics-section__mask {
  position: absolute;
  inset: 16px 16px -16px -16px;
  border-radius: 48px;
  border: 1px solid var(--gray-300);
  z-index: 1;
}
.statistics-section__contents {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 60px 48px;
  border-radius: 32px;
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .statistics-section .statistic-col:nth-child(n+3) {
    margin-top: 24px;
  }
}
.statistics-section__counter-value {
  transition: all 0.3s ease;
}
.statistics-section__icon-1 {
  background-color: var(--primary);
  color: var(--white);
}
.statistics-section__icon-2 {
  background-color: var(--success);
  color: var(--white);
}
.statistics-section__icon-3 {
  background-color: #EE5A59;
  color: var(--white);
}
.statistics-section__icon-4 {
  background-color: #FFA200;
  color: var(--white);
}



/* my css start*/
 .statistics-section {

      background: linear-gradient(to bottom right, #f9f9fc, #f3f3f9);
    }

    .stats-section {
      text-align: center;
      padding: 60px 20px;
    }

    .stats-section h2 {
      font-size: 28px;
      margin-bottom: 10px;
    }

    .stats-section h2 span {
      color: #f5b800; /* Yellow highlight */
    }

    .stats-section p {
      color: #666;
      margin-bottom: 50px;
    }

    .stats-cards {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
    }

    .card {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      padding: 30px 20px;
      width: 30%;
      text-align: center;
      transition: transform 0.2s ease-in-out;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .icon {
      background-image: linear-gradient(135deg, rgb(22, 0, 61) 0%, rgb(49, 2, 90) 25%, rgb(96, 11, 132) 60%, rgb(87, 14, 98) 100%);
      color: #fff;
      font-size: 28px;
      width: 50px;
      height: 50px;
      margin: 0 auto 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
    }

    .card h3 {
      font-size: 28px;
      margin: 10px 0;
    }

    .card strong {
      display: block;
      margin-top: 5px;
      font-size: 16px;
    }

    .card p {
      font-size: 14px;
      color: #666;
      margin: 5px 0 0;
    }
/* my css end */

@media (max-width: 991px) {
.card {
    width: 80%;
}
}
