/* code by krish  */
main{
  /* width: 90%; */
  margin: auto;
  background-color: #fff !important;
  
}
.hero{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: auto;
  margin-left: 15%;
  margin-bottom: -10%;
  z-index: 99;
  width: 80%;
  
}
.hero .chat{
  /* width: 60%; */
  text-align: center;
}
.hero .img{
  /* width: 30%; */
  margin: auto;
  margin-left: 17%;
}
.hero img{
  width: 70%;
}
.hero .chat h1{
  line-height: 0.9;
    font-weight: 900;
    letter-spacing: 5px;
    padding: 1px;
    font-size: 5.3rem;
    animation: stretchInOut 2s infinite alternate;
}

@keyframes stretchInOut {
  0% {
      transform: scale(0.8);
  }
  100% {
      transform: scale(1);
  }
}
.hero .chat h1:last-child{
  text-align: end;
}
.hero button{
  background: rgb(255,15,123);
  background: linear-gradient(90deg, rgba(255,15,123,1) 35%, rgba(248,155,41,1) 100%);
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 1.3rem;
  padding: 12px;
  color: #fff;
  box-shadow: 5px 8px 10px #0000008c;
  transition: all 0.5s;
}
.hero button:hover{
  box-shadow: none;
  font-size: 1.2rem;
}
.centered-content {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .stylish-text {
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
  }
  
  .contact-button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .contact-button:hover {
    background-color: #0056b3;
  }
    
  .main-section{
    display: flex;
    justify-content: space-around;
    /* background-color: #ffff; */
    width: 90%;
    margin: auto;
    margin-top: 10%;
    margin-bottom: 10%;
  }
  .section-1{
    width: 50%;
    text-align: justify ;
  }
  .section-1 h3{
    text-align: left;
    margin-left: 12px;
  }
  .section-1 p{
    font-size: large;
    margin-left: 1%;
    margin-top: 7%;
  }
  .section-1 button{
    margin-left: 1%;
    border: 1px solid orange;
    border-radius: 10px;
    padding: 7px;
    background-color: orangered;
    color: white;
    transition: all 0.4s;
  }
  .section-1 button:hover{
    border: 2px solid orange;
    opacity: 0.9;
    color: black;
  }
  .section-2{
    width: 50%;
  }
  .section-2 img{
    width: 100%;
    height: fit-content;
    object-fit: cover;
  }

.counting{
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  flex-direction: column;
  padding-top: 5%;
  padding-bottom: 5%;
  color: #000;
  background-color: #fff;
  
}

/* .counting .title{
  
} */
.counting .count{
  display: flex;
}
.counting .count li{
  display: inline;
  list-style: none;
  padding: 10px;
}
.counting .count li span{
  display: block;
  font-size: 2rem;
  text-align: center;
  padding: 12px;
}
  