

.custom-navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);

  width: 90%;
  max-width: 1200px; /* optional: keeps it nice on big screens */

  padding: 16px 3px;

   background: rgba(27, 54, 5, 0.86);
  border-radius: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  z-index: 1000;
}

.custom-footer {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);

  width: 90%;
  max-width: 1200px;
  padding: 16px 3px;

    background: rgba(27, 54, 5, 0.86);
  border-radius: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  z-index: 1000;
}

.footer-social-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.2rem; /* ~20% bigger */
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.footer-social-link:hover {
  text-decoration: none;
  transform: scale(1.1);
  opacity: 0.9;
}

/* Brand colors for each social icon */
.footer-social-link .bi-instagram {
  color: #E4405F;
}

.footer-social-link .bi-facebook {
  color: #1877F2;
}

.footer-social-link .bi-tiktok {
  color: #69C9D0;
}

.footer-social-link .bi-snapchat {
  color: #FFFC00;
}

.footer-social-link .bi-telegram {
  color: #0088cc;
}

.footer-social-link .bi-youtube {
  color: #FF0000;
}


.custom-navbar .navbar-brand {
  font-weight: 500;
}

.lang-flag {
  width: 36px;
  height: auto;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lang-flag:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}


.hero-cover {
  position: absolute;
  width: 100%;
  min-height: 100vh;
    inset: 0;

  height: 100svh; /* Safari-safe viewport height */
  display: block;

  object-fit: cover;       /* crop if needed */
  object-position: center; /* centered crop */

  /* very light filter (slightly dim for readability) */
  filter: blur(3px) opacity(0.7);
    z-index: -1;
}



.fustat-body {
    font-family: "Fustat", sans-serif;
}

.noto-sans-body {
    font-family: "Noto Sans", sans-serif;
}

h1, h2, h3 {
  color: #000;
  text-shadow: 0 3px 14px rgba(22, 49, 1, 0.55);
}

h1 {
  font-size: clamp(1.6rem, 3.6vw, 3rem);
  font-weight: 900;
  line-height: 1.25;
}

h2 {
  font-size: clamp(1.4rem, 3.4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.25;
}


h3 {
 font-size: clamp(1.2rem, 2.8vw, 2.2rem);
  font-weight: 600;
  line-height: 1.05;
  font-family: "IBM Plex Sans Arabic", sans-serif;
}


h4 {
  font-size: clamp(1.2rem, 3.4vw, 2.2rem);
  color: #070600; /* yellowish */
  text-shadow: 0 0px 20px rgb(236, 212, 0);
  font-weight: 400;
  line-height: 1.25;
  font-family: "IBM Plex Sans Arabic", sans-serif;
}


.logo {
  width: 200px;
}

.home-showcase {
  margin-top: 110px;
  margin-bottom: 110px;
  color: #fff;
}

.home-showcase h1,
.home-showcase h2,
.home-showcase h3,
.home-showcase h4 {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.home-showcase-bg {
  position: relative;
  min-height: calc(100svh - 220px);
  border-radius: 18px;
  border: 2px solid rgba(0, 0, 0, 0.9);
  overflow: hidden;
  background: #000;
}

.home-background-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(1px) opacity(0.6);
   z-index: 0;
}

.home-showcase-bg > .row {
  position: relative;
  z-index: 1;

}

.home-content-stack {
  min-height: calc(100svh - 300px);
}

.home-contact-row {
  padding-top: 1rem;
}


.contact-outline-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 0.45rem 0.9rem;
  border: 2px solid #fff;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  line-height: 1.2;
}

.contact-outline-btn:hover,
.contact-outline-btn:focus {
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
}


html, body {
  scrollbar-width: none;
  -ms-overflow-style: none;
  background-color: #1a1a1a;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}