*,
*::before,
*::after{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
p{
    padding: 0;
    margin: 0;
}
body{
    background-color: #1f1d2b;
}

.hero-info h2{
    color: #026a6f!important
}
body{
    font-family: 'Jost', sans-serif;
    list-style: 1rem;
}
.social-area a{
    color: #868686 !important;
}
.inner{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
ul li{
    display: inline-block;
}

a{
    text-decoration: none;
    transform: 0.5s all;
}
.logo-area img{
    filter: brightness(0.7) !important;
}

.center{
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-info h4, .hero-info h5{
    color: #808191;
}
.hero-info h5{
    font-size: 16px;
}
.hero-info p{
    color: #d9d9d9;
    padding: 15px 0;
}
.hero-info a, .btn-custom{
    background-color:#808191;
    color: #1f1d2b;
    padding: 7px 20px;
    margin-top: 20px;
}
.hero-img{
    flex-basis: 40%;
    display: flex;
    justify-content: center;
}
.hero-btn{
    display: flex;
    gap: 20px;
}
#hero-area{
    background-color: #4c4a55;
    padding: 80px 0;
}
.hero-img img{
    display: block;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
} 

/* skills  */
.skill-img{
    width: 40px;
    height: 40px;
    object-fit: cover;
}
.skill-img {
    animation-name: scale;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
  }
  
  @keyframes scale {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1);
    }
  }

  .skills-img {
    opacity: 0;
    animation-name: fade-in;
    animation-duration: 1s;
    animation-fill-mode: forwards;
  }
  
  @keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }


/* portfolio  */

.portfolio{
    padding: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 40px auto;
}
.portfolio ul{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.portfolio ul li{
    background-color: #808191;
    padding: 5px 20px;
    margin: 5px;
    cursor: pointer;
}
.portfolio ul li.active{
    display: block;
    background-color: #242730 !important;
    color: #808191;
}
.product{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.product .itemBox.hide{
    display: none;
}
.product .itemBox{
    width: 350px;
    height: 300px;
    display: block;
    margin: 15px;
    position: relative;
}
.product .itemBox img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.details {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0%;
    transform: translate(0%, 0px);
    opacity: 0;
    transition: 0.3s all ease-in-out;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    padding-top: 30%;
    align-items: center;
    cursor:default;
}
.details h6{
    font-size: 20px;
}
.itemBox::before{
    content: '';
    position: absolute;
    display: block;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 0%;
    transition: 0.4s all ease-in-out;
    background-color: #242730;

}

.product .itemBox:hover .details{
    opacity: 1;
    background-color: #1f1d2bc3;
    color: #d9d9d9;
}

.clinet ul.thumb {
    display: flex;
    justify-content: center;
    align-items: center;
}
.clinet ul li {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin: 10px;

}
.clinet ul li img{
    width: 25px;
    height: 25px;
    border-radius: 50%;
    object-fit: cover;
    filter: brightness(0.8);
}
.clinet {
    background: #4c4a55;
    padding: 80px 0;
    text-align: center;
}

.imgBox {
    display: block;
    justify-content: center;
    padding-bottom: 40px;
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.clinet h2 {
        text-align: left;
        padding-left: 13%;
        padding-bottom: 45px;
        color: #15141e;
}

footer{
    background-color: #15141e;
    padding: 20px 0;
    text-align: center;
    color: #808191;
}
footer h6{
    font-size: 16px;
}


.form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    transition: border-color 0.2s;
    outline: none;
    color: #808191;
  }

  .form-control::placeholder {
    
    color: #808191;
  }
  
  .form-control:focus {
    border-color: #007bff00;
    color: #808191;
    border-bottom: 1px solid #ccc;
    outline: none;
    background-color: transparent;
    box-shadow: 0 0 0 0.25rem rgba(13, 109, 253, 0) !important;
  }