.HomeCountCards {}

.HomeCountCards .stats_container {
  padding: 24px 0px;
  background-color: #f4f7fb;
}

.HomeCountCards .stats_container .stat_card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  height: 100%;
}

.HomeCountCards .stats_container .stat_card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.HomeCountCards .stats_container .stat_card .stat_value {
  font-size: 26px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 12px;
}

.HomeCountCards .stats_container .stat_card .stat_label {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  line-height: 1.4;
}





.HomeCountCards .header_content {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 32px 40px;
  box-sizing: border-box;
  background-color: #eaf3ff;
  background-size: 40px 70px;
  background-position: 0 0, 0 0, 20px 35px, 20px 35px, 0 0, 20px 35px;
  border-radius: 8px;
  background-image: url("/assets/images/banner/bg2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 250px;
}

/* Avatar container with verified badge absolute positioning */
.HomeCountCards .header_content .avatar_wrapper {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.HomeCountCards .header_content .avatar_wrapper .avatar_image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background-color: #ffffff;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.HomeCountCards .header_content .avatar_wrapper .verified_badge {
  position: absolute;
  bottom: 0;
  right: -2px;
  width: 22px;
  height: 22px;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.HomeCountCards .header_content .avatar_wrapper .verified_badge svg {
  width: 14px;
  height: 14px;
  fill: #1967d3;
}

/* Typography styling */
.HomeCountCards .header_content .header_text {
  display: flex;
  flex-direction: column;
}

.HomeCountCards .header_content .header_text .welcome_text {
  font-size: 16px;
  font-weight: 500;
  color: #1e293b;
  margin-bottom: 2px;
}

.HomeCountCards .header_content .header_text .company_title {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.5px;
}


@media (min-width:0px) and (max-width:575px) {
  .HomeCountCards .header_content .header_text .company_title {
    font-size: 16px;
  }

  .HomeCountCards .header_content .header_text .welcome_text {
    font-size: 13px;
  }

  .HomeCountCards .stats_container .stat_card {
    padding: 10px;
  }

  .HomeCountCards .header_content {
    padding: 20px 10px;
    margin-top: 20px;
    height: 150px;
  }

  .HomeCountCards .stats_container .stat_card .stat_value {
    font-size: 20px;
  }
}

@media (min-width:576px) and (max-width:991px) {
  .HomeCountCards .header_content .header_text .company_title {
    font-size: 21px;
  }

  .HomeCountCards .header_content .header_text .welcome_text {
    font-size: 15px;
  }

  .HomeCountCards .stats_container .stat_card {
    padding: 10px;
  }

  .HomeCountCards .header_content {
    padding: 20px 10px;
    margin-top: 20px;
    height: 150px;
  }

  .HomeCountCards .stats_container .stat_card .stat_value {
    font-size: 20px;
  }
}

@media (min-width:992px) and (max-width:1199px) {
  .HomeCountCards .header_content .header_text .company_title {
    font-size: 21px;
  }

  .HomeCountCards .header_content .header_text .welcome_text {
    font-size: 15px;
  }
}

@media (min-width:1200px) and (max-width:1399px) {
  .HomeCountCards .header_content .header_text .company_title {
    font-size: 24px;
  }
}