@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
body, h1, h2, h3, h4, h5, h6,p{
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif !important;
}
body{
  background-color: #F7F8FD;
}
a{
    text-decoration: none;
}
li{
    list-style: none;
  }
.nav-link{
  color: #606060;
  font-size: 16px;
}
.bld-brand-btn{
  color: #606060;
  font-size: 13px;
  border: 1px solid #606060;
  border-radius: 25px;
}
.bld-brand-btn:hover{
  border: 1px solid #606060;
  color: #606060;
}
h1{
  font-size: 80px;
  color: #282828;
  font-weight: 700;
}
.gradient_text {
  background: linear-gradient(45deg,#FF4B88,#FF6F3B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero_txt{
  color: #696363;
  font-size: 20px;
}
.hero-bnr{
  top:0;
  right:0;
}
h2{
  color: #282828;
  font-size: 60px;
  font-weight: 800;
}
.brand-logo{
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;  
  border-image: linear-gradient(
        to right,
        #ffffff 0%,
        #d0d0d0 25%,
        #606060 50%,
        #d0d0d0 75%,
        #ffffff 100%
    );
  border-image-slice: 1;
}
.about-company p{
  font-size: 16px;
  font-weight: 400;
  color:#696363;
  line-height: 28px;
}
.counter-item{
  border-bottom: 1px solid #DADADA;
  color:#DADADA;
}
.counter-item h1{
  color:#676767;
  font-family: "Righteous", sans-serif !important;
  font-weight: 400 !important;
  font-size: 90px;
}
.counter-item p{
  color:#696363;
  font-size: 15px;
  font-weight: 400;
}
/* services */
.services{
  background-color: #1E1E1E;
  border-radius: 10px;
  border:2px solid #F7F8FD;
}
.services h3{
  font-size: 55px;
  font-weight: 600;
}
.services-list li{
  font-size: 30px;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
  line-height: 70px;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 0px; 
  transition:padding-left 0.5s ease;
}
.arrow-right{
  position: absolute;
  left: 0;
  opacity: 0;
  transform: translateX(-10px); 
  transition: 
      opacity 0.5s ease,
      transform 0.5s ease;
}
.services-list li:hover .arrow-right{
  opacity: 1;
  transform: translateX(0);
}
.services-list li:hover{
  padding-left: 50px; 
}

.site-caption{
  color:#1E1E1E;
  font-size: 100px;
  font-weight: 700;
}
.profile h3{
  font-size: 40px;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: 1px;
}
/* footer */
.footer{
  background: url(../image/footer-bg.png);
  padding: 150px 0 100px;
}
.footer-grdnt{
  color:#3d3d3d;
}
.footer-title{
  font-weight: 500;
  font-size: 110px;
  letter-spacing: 1px;
}
.footer-text{
  font-size: 20px;
}
.footer-btm{
  justify-content: space-between;
}
.hero {
  background-image: url('../image/img1.png');
  background-repeat: no-repeat;
  background-position: top right; /* Positions it in the top-right corner */
  background-size: auto; /* or 'contain' or specific size */
}
@media (max-width:992px){
  .hero{
    text-align: center;
  }
  .hero h1 {
    font-size: 50px;
  }
  .hero_txt {
    font-size: 18px;
  }
  h2 {
    font-size: 40px;
  }
  .counter-item h1{
    font-size: 60px;
  }
  .services h3 {
    font-size: 40px;
  }
  .services-list li {
    font-size: 20px;
    line-height: 50px;
    justify-content: center;
  }
  .arrow-right{
    display: none;
  }
  .profile, .services{
    text-align: center;
  }
  .profile h3 {
    font-size: 32px;
    line-height: 40px;
  }
  .site-caption {
    font-size: 50px;
  }
  .footer-title{
    font-size: 50px;
  }
  .footer-text {
    font-size: 15px;
  }
  .footer-btm{
    justify-content: center;
    flex-direction: column;
  }
}