@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap");

* {
  font-family: "Poppins", sans-serif;
}

/* خلفية الناف بار */
#navbar {
  background-color: black!important; /* أسود */
}
#navbar .nav-link {
  color: #f58a07 !important; /* ذهبي */
  font-weight: 500; /* سمك الخط */
}

#navbar .nav-link:hover {
  color: #ffffff !important; /* أبيض عند الـ hover */
}
.navbar-toggler-icon{
     border-radius: 50%;     /* يخلي الزرار كله دايرة */
  padding: 10px;          /* يخلي الدايرة واسعة شوية */
  border: 2px solid gold; /* إطار ذهبي (اختياري) */
  background-color: #dceaf5;
}

/* Brand Logo  */
.brand-logo {
  max-width: 140px;
}
.team-post {
  cursor: pointer;
}
.team-post:hover .team-detail {
  transform: translateY(0%);
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
}
.team-detail {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  min-height: 70%;
  background: #161616da;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transition: transform ease-in-out 500ms;
  -webkit-transition: transform ease-in-out 500ms;
  -moz-transition: transform ease-in-out 500ms;
  -ms-transition: transform ease-in-out 500ms;
  -o-transition: transform ease-in-out 500;
}
  
/* background  */
.dark-bg,
.dark-bg a {
  color: white;
}
.light-bg h1,
.light-bg h2,
.light-bg h3

 {

 font-family: 'Poppins', 'Segoe UI', Tahoma, sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 6vw, 45px); /* متجاوب */
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #111; /* لون افتراضي للنص */
  background: linear-gradient(90deg, #111 0%, #111 40%, #FFD700 100%); /* لمسة ذهبية */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 2px 0 rgba(0,0,0,0.05),
    0 10px 30px rgba(0,0,0,0.12); /* ظل ناعم */
  margin: 0.2em 0 0.6em;}

.light-bg h4{
  font-family: 'Poppins', 'Segoe UI', Tahoma, sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 6vw, 30px); /* متجاوب */
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #111; /* لون افتراضي للنص */
  background: linear-gradient(90deg, #111 0%, #111 40%, #FFD700 100%); /* لمسة ذهبية */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 2px 0 rgba(0,0,0,0.05),
    0 10px 30px rgba(0,0,0,0.12); /* ظل ناعم */
  margin: 0.2em 0 0.6em;}






/* تحكم في الكونتينر (الغلاف) */
.header-img-wrapper {
  position: relative;
  overflow: hidden; /* يخفي أي زوائد من الصورة */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%; /* يمكنك تعديلها مثلا 500px */
}

/* تحكم في الصورة نفسها */
.header-img-wrapper img {
  width: 100%; /* تجعل الصورة تمتد بعرض الكونتينر */
  height: auto; /* تحافظ على التناسب */
  object-fit: cover; /* تغطي الكونتينر بدون تشويه */
  border-radius: 20px; /* حواف ناعمة */
  transition: transform 0.6s ease, filter 0.4s ease; /* مؤثرات انتقال */
}

/* تأثير عند مرور الماوس */
.header-img-wrapper img:hover {
  transform: scale(1.05); /* تكبير بسيط */
  filter: brightness(1.1) contrast(1.1); /* توهج خفيف */
}


#cookie-banner {
  transition: opacity 0.4s ease, bottom 0.4s ease;
}
#cookie-banner.fade-out {
  opacity: 0;
  bottom: -100px;
}

  /* Fade-up animations */
  .animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
  }
  .animate-fade-up.delay-1 {
    animation-delay: 0.3s;
  }
  .animate-fade-up.delay-2 {
    animation-delay: 0.6s;
  }
  .animate-fade-up.delay-3 {
    animation-delay: 0.9s;
  }

  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Floating button hover */
  .hover-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }

  /* 3D-like Floating Shapes */
  .floating-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite alternate;
  }

  .shape-1 {
    background: var(--bs-warning);
    width: 100px;
    height: 100px;
    top: -40px;
    right: 50px;
  }

  .shape-2 {
    background: var(--bs-primary);
    width: 70px;
    height: 70px;
    bottom: -20px;
    left: 40px;
    animation-delay: 1s;
  }

  @keyframes float {
    0% {
      transform: translateY(0px);
    }
    100% {
      transform: translateY(-25px);
    }
  }

  /* Floating effect for main image */
  .animate-float img {
    animation: smoothFloat 5s ease-in-out infinite;
  }

  @keyframes smoothFloat {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15px);
    }
    100% {
      transform: translateY(0);
    }
  }






.light-bg p,
.light-bg li {
  color: #5b5b5b;
}
.light-bg span {
  color: rgba(57, 65, 73, 0.5);
}
.light-bg {
  color: #394149;
}
.light-bg a {
  color: #f58a07;
}
/* background Colors */
.bg-brand-primay {
  background: #f58a07 !important;
  color: white !important;
}
.bg-brand-primayfaint {
  color: #f58a07 !important;
  background: rgba(245, 138, 7, 0.1) !important;
}
.bg-bluefaint {
  background-color: white !important;
}
.bg-blue-200 {
  background: rgba(210, 218, 237, 0.17) !important;
}
.bg-bluelight {
  background-color: #dbe6f2;
}
.bg-blueDark {
  background: #063255;
}
/* btn, a */
a.bg-brand-primayfaint:hover {
  color: black!important;
  background-color: #f58a07 !important;
}
button.bg-brand-primay:hover,
a.bg-brand-primay:hover {
  background: #f89d2d !important;
}
a.cl-blue-900:hover {
  color: red !important;
  
}
/* font weight  */
.fw-smbold {
  font-weight: 600 !important;
}

/* border */
.b-6 {
  border-radius: 16px !important;
  -webkit-border-radius: 16px !important;
  -moz-border-radius: 16px !important;
  -ms-border-radius: 16px !important;
  -o-border-radius: 16px !important;
}
/* color  */
.cl-white {
  color: white !important;
}
.cl-blue-900 {
  color: #1d3444 !important;
}
.cl-primary {
  color: #f58a07 !important;
}
.cl-blue-700 {
  color: #063255;
}
.icon {
  color: #f58a07;
  font-size: 2rem;
}
.img-bar {
  position: absolute;
  left: 2;
  top: 0;
  bottom: 0;
  background: #f58a07;
  mix-blend-mode: multiply;
  width: 20%;
  z-index: 2;
  border-radius: 16px 0px 0px 16px;
  -webkit-border-radius: 16px 0px 0px 16px;
  -moz-border-radius: 16px 0px 0px 16px;
  -ms-border-radius: 16px 0px 0px 16px;
  -o-border-radius: 16px 0px 0px 16px;
}



#footer {
  background-color: #0b132b; /* أزرق غامق جميل */
  color: #fff;
}

#footer a:hover,
#footer i:hover {
  color: #ffb347 !important; /* برتقالي فاتح */
  transition: color 0.3s ease;
}

#footer input {
  background-color: #ffffff;
  color: #000;
  font-size: 0.9rem;
}

#footer button {
  background-color: #ffb347;
  border: none;
  color: #000;
}

#footer button:hover {
  background-color: #ffa31a;
}




/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  background-color: #20c05c;
}




/* ضبط حجم الزر ووضعه بشكل أفضل */
.elfsight-app-d34337a7-ca81-4b20-8bf3-fc5fcb758add {
  width: 120px;      /* عرض الزر */
  height: 35px;      /* ارتفاع الزر */
  border-radius: 20px; /* حواف مستديرة */
 
  margin-top: 5px;
  /* منع أي تجاوز */
}

/* مسافة بين الزر وباقي عناصر Navbar */
.navbar .ms-3 {
  margin-left: 15px !important;
  display: flex;
  align-items: center;
}

/* إذا تحب تصغير خط اللغة داخل الزر */
.elfsight-app-d34337a7-ca81-4b20-8bf3-fc5fcb758add select {
  font-size: 0.7rem;
  height: 100%;
}



/* شاشة التحميل كاملة */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff; /* لون الخلفية */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* سبينر التحميل */
.spinner {
  border: 8px solid #f3f3f3; /* لون الخلفية للسبينر */
  border-top: 8px solid #ffcc00; /* لون الجزء المتحرك */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

/* حركة الدوران */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}




.img-fit-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* max-height: 560px; */
}

.p-tr {
  right: -3.6%;
  top: -5.6%;
}
.p-ru {
  right: -3.6%;
  top: 10%;
}
.p-rc {
  right: -6.5%;
  top: 50%;
}
.p-br {
  right: -0.8%;
  bottom: -4.6%;
}
.p-lu {
  left: -6.5%;
  top: 10%;
}
.p-lc {
  left: -6.5%;
  top: 50%;
}
.p-ld {
  left: -6.5%;
  bottom: 10%;
}
.overlay-img--circle {
  width: 5rem;
}
.overlay-img--ribbon {
  right: -1.6%;
  top: -2.6%;
}
.overlay-img--cubeLg {
  width: 23%;
  height: 23%;
  background: #f58a07;
  mix-blend-mode: multiply;
  right: -0.1%;
  bottom: -0.6%;
}
.overlay-img--cubeSm {
  width: 15%;
  height: 15%;
  background: #f58a07;
  mix-blend-mode: multiply;
}
.fs-7 {
  font-size: 14px !important;
}
@media screen and (max-width: 768px) {
  .overlay-img {
    width: 16vw;
    right: -1%;
    top: -0.9%;
  }
  .overlay-img--circle {
    width: 16vw;
  }
  .overlay-img--ribbon {
    width: 16vw;
    right: -2%;
    top: -1.2%;
  }
  .p-br,
  .p-tr {
    right: -2.6%;
  }
  .tab {
    font-size: 12px !important;
  }
}
@media screen and (max-width: 620px) {
  .p-br,
  .p-tr {
    right: -0.6%;
  }
}
button.bg-white {
  background-color: white;
  color: #f58a07;
}
.person-info span {
  font-size: 14px;
}

a {
  text-decoration: none !important;
}
form label {
  color: #9c9c9c;
}
  


/* =============== */
/* Responsive Fix - Keep Layout Stable on All Screens */
/* =============== */

/* تأكد أن الصفحة دايمًا بتملأ الشاشة بالكامل */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* خلي الكونتينر والمحتوى متجاوبين بدون كسر */
.container,
.container-fluid {
  width: 100%;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

/* الصور تفضل مظبوطة ومتناسبة */
img {
  max-width: 90%;
  height: auto;
  display: block;
}

/* ضبط النصوص في الشاشات المختلفة */
@media (max-width: 1024px) {
  h1, h2, h3, h4 {
    font-size: calc(1rem + 1vw);
    text-align: center;
  }
  p {
    font-size: calc(0.6rem + 0.3vw);
    text-align: center;
  }
}

/* للشاشات الصغيرة جدًا */
@media (max-width: 600px) {
  .row, .col, section, div {
    flex-wrap: wrap !important;
  }

  .navbar, #footer {
    text-align: center !important;
  }

  .team-post img {
    height: auto;
    width: 100%;
    border-radius: 16px;
  }
}
