/* Footer Enamad trust seal */
.footer-enamad{
  margin-top:14px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:8px;
}
.footer-enamad-title{
  color:#d6e5df;
  font-size:13px;
  font-weight:700;
}
.footer-enamad a{
  width:104px;
  min-height:112px;
  padding:7px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  border-radius:14px;
  box-shadow:0 10px 25px rgba(0,0,0,.14);
  transition:transform .2s ease,box-shadow .2s ease;
}
.footer-enamad a:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 30px rgba(0,0,0,.20);
}
.footer-enamad img{
  display:block;
  width:90px;
  height:auto;
  max-height:105px;
  object-fit:contain;
  cursor:pointer;
}
@media(max-width:640px){
  .footer-enamad{
    margin-top:10px;
  }
  .footer-enamad a{
    width:92px;
    min-height:100px;
  }
  .footer-enamad img{
    width:80px;
    max-height:94px;
  }
}

/* Footer developer credit */
.footer-bottom-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.footer-copyright{
  display:inline-flex;
  align-items:center;
}
.footer-developer{
  display:inline-flex;
  align-items:center;
  gap:5px;
  color:#17351d;
  font-size:14px;
  transition:opacity .2s ease,transform .2s ease;
}
.footer-developer strong{
  font-weight:800;
}
.footer-developer:hover{
  opacity:.78;
  transform:translateY(-1px);
}
@media(max-width:640px){
  .footer-bottom-inner{
    justify-content:center;
    text-align:center;
    gap:4px;
  }
  .footer-copyright,
  .footer-developer{
    width:100%;
    justify-content:center;
  }
  .footer-developer{
    font-size:13px;
  }
}
