
@import url("https://fonts.googleapis.com/css2?family=Clicker+Script&family=Poppins:wght@300;400;500;600;700&display=swap");


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html, body{
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;

}
.container11 {
  width: 100%;
  min-height: 30vh;

  background-color: #9F015E;
  justify-content: center;
  align-items: center;
  text-align: center;
  color:#ffffff;
 
 
}

.label1 {
  
  color: #000000;
  text-align: left;
  align-items: center;
 font-family: 'Times New Roman', Times, serif;
}

.container12 {
  width: 100%;
  min-height: 40vh;
  background: linear-gradient(#FFF4D5(255, 255, 255), #FFF4D5), url(assets/bg.jpg);
  background-size:cover;
  background-position: center;
  color: #dfbf69;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  
}

.container12 .header1 {
  padding: 0 0 60px 0;
}

.header1 .title {
  font-family: "Clicker Script", cursive;
  font-size: 42px;
  color: #ffffff;
  
}

.header1 .sub-title {
  font-family: 'Times New Roman', Times, serif;
  font-size: 48px;
  line-height: 1;
  color: #ffffff;
 
}

.container12 .counters {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.counters .counter {
  width: 240px;
  background-color: #fff;
  color: #000;
  padding: 30px 15px;
  margin: 10px;
  border-radius: 20px;
  cursor: pointer;
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: all 0.5s;
}

.counters .counter:hover {
  box-shadow: rgba(229, 126, 57, 0.8) 0px 2px 8px 0px;
  transform: translateY(-5px);
}

.counters .customer {
  background-image: url(assets/counter_icon01.png);
}

.counters .project {
  background-image: url(assets/counter_icon02.png);
}

.counters .employee {
  background-image: url(assets/counter_icon03.png);
}

.counters .award {
  background-image: url(assets/counter_icon04.png);
}

.counters .counter .number {
  font-size: 40px;
  font-weight: 700;
}

.counters .customer .number {
  color: #fd297b;
}

.counters .project .number {
  color: #2760dc;
}

.counters .employee .number {
  color: #58c0cf;
}

.counters .award .number {
  color: #a667f8;
}

.counters .counter .detail {
  font-size: 18px;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 620px) {
  .container {
    padding: 60px 6%;
  }

  .container12 .header1 {
    padding: 0 0 40px 0;
  }

  .counters .counter {
    width: 45%;
  }
}

@media (max-width: 540px) {
  .header1 .title {
    font-size: 32px;
  }

  .header1 .sub-title {
    font-size: 36px;
  }

  .counters .counter {
    width: 80%;
  }
}
