@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400..700&display=swap');

/* ============================================================
   ebftr4 — Footer Section
   Namespace  : ebftr4
============================================================ */


.ebftr4 {
  --ebftr4-helper: #091957;
  --ebftr4-primary: #ffffff;
  --ebftr4-secondary: #3cc36a;

  --ebftr4-accent: #56e28a;
  --ebftr4-border: rgba(255, 255, 255, 0.18);
  --ebftr4-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.35);
}

*,
.ebftr4 *,
.ebftr4 *::before,
.ebftr4 *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
 
}


.ebftr4 {
  width: 100%;
  background: var(--ebftr4-helper);
  color: var(--ebftr4-primary);
  direction: rtl;
  border-top: 0.5rem solid var(--ebftr4-secondary);
  border-bottom: 0.5rem solid var(--ebftr4-secondary);
   font-family: "El Messiri", sans-serif;
}

.ebftr4__container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.ebftr4__top {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 1rem;
}

.ebftr4__right {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.ebftr4__logoWrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.ebftr4__logoLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.ebftr4__logo {
  width: 50%;
  aspect-ratio: 2 / 1;
  object-fit: contain;
}

.ebftr4__nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.ebftr4__link {
  text-decoration: none;
  color: var(--ebftr4-primary);
  font-size: clamp(1rem, 4.2vw, 1.15rem);
  font-weight: 500;
  transition: color 0.25s ease, transform 0.25s ease;
}

.ebftr4__link:hover {
  color: var(--ebftr4-accent);
  transform: translateY(-0.12rem);
}

.ebftr4__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.ebftr4__socialLink {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 0.08rem solid var(--ebftr4-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ebftr4-secondary);
  text-decoration: none;
  font-size: 1.2rem;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.ebftr4__socialLink:hover {
  transform: translateY(-0.18rem);
  background: rgba(255, 255, 255, 0.12);
  color: var(--ebftr4-accent);
}

.ebftr4__bottom {
  width: 100%;
  border-top: 0.08rem solid var(--ebftr4-border);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ebftr4__copy {
  font-size: clamp(0.95rem, 3.8vw, 1.05rem);
  opacity: 0.92;
  text-align: center;
  line-height: 1.7;
}


@media (min-width: 481px) {
  .ebftr4__nav {
    gap: 1.4rem;
  }
}

@media (min-width: 601px) {
  .ebftr4__top {
    padding: 2rem 1.5rem;
  }

  .ebftr4__logo {
    width: 40%;
  }
}

@media (min-width: 769px) {
  .ebftr4__logo {
    width: 35%;
  }
}

@media (min-width: 1025px) {

  .ebftr4__top {
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 2.2rem 2rem;
  }




  .ebftr4__logoWrap {
    justify-content: center;
  }

  .ebftr4__logo {
    width: 100%;
    max-width: 18rem;
  }

  .ebftr4__social {
    justify-content: flex-start;
  }


  .ebftr4__nav {
    width: 70%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content:center ;
    align-items: center;
    gap: 1.2rem 2.5rem;
  }

 
  .ebftr4__bottom {
    padding: 1.2rem;
  }
}

@media (min-width: 1281px) {
  .ebftr4__top {
    padding: 2.5rem 2.5rem;
  }

  .ebftr4__logo {
    max-width: 20rem;
  }
}

@media (min-width: 1441px) {
  .ebftr4__top {
    padding: 3rem 3rem;
  }
}

@media (min-width: 1921px) {
}