@import url("https://fonts.googleapis.com/css2?family=Mozilla+Headline:wght@200..700&display=swap");
:root {
  /* Light theme */
  --primary-100: #e3ecff;
  --primary-200: #005ae2bc;
  --primary-300: #1f3a5f;

  --accent-100: #cee8ff;
  --accent-200: #3d5a80;

  --text-100: #0f1c2e;
  --text-200: #374357;

  --bg-100: #ffffff;
  --bg-200: #f5f5f5;
  --bg-300: #e0e0e0;

  /* --primary-100:#00A8E8;
    --primary-200:#0076A2;
    --primary-300:#BAECFF;
    --accent-100:#FFB400;
    --accent-200:#B37E00;
    --text-100:#FFFFFF;
    --text-200:#cbcbcb;
    --bg-100:#007BA7;
    --bg-200:#00759F;
    --bg-300:#00A0D9; */

  [data-theme="dark"] {
    /* --primary-100: #1f3a5f;
    --primary-200: #4d648d;
    --primary-300: #acc2ef;
    --accent-100: #3d5a80;
    --accent-200: #cee8ff;
    --text-100: #ffffff;
    --text-200: #e0e0e0;
    --bg-100: #0f1c2e;
    --bg-200: #1f2b3e;
    --bg-300: #374357; */

    --primary-100: #1f3a5f; /* أزرق غامق – للخلفيات */
    --primary-200: #3183ff;
    /* --primary-200: #005ae2bc;   */
    --primary-300: #e3ecff; /* أزرق فاتح جدًا – للهوفر أو البوردرات */

    --accent-100: #3d5a80; /* لون مساعد – أزرق رمادي */
    --accent-200: #acc2ef; /* لون فاتح مساعد – ممكن للـ hover أو borders */

    --text-100: #ffffff; /* نص أساسي – أبيض */
    --text-200: #cdd6e0; /* نص ثانوي – رمادي فاتح */

    --bg-100: #0f1c2e; /* خلفية أساسية – داكن جدًا */
    --bg-200: #1a2639; /* خلفية ثانوية – أفتح شوية */
    --bg-300: #2a3b55; /* خلفية لعناصر مثل الكروت أو الأزرار */
  } /* لون أفتح قليلًا لأجزاء فرعية */
}

body{
  font-family: "Mozilla Headline", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary-300);
}
h1 {
  color: #cee8ff;
  font-size: 3.5em;
}
p {
  color: var(--text-100) !important;
}
li {
  color: var(--text-100) !important;
}

/* Start Header */
.main-header {
  background-image: url("../Images/header3.jpg");
  /* background-color: var(--bg-100); */
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.main-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.585);
  z-index: -1;
}
.linksHeader {
  background: rgba(255, 255, 255, 0.119);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(15, 163, 209, 0.1);
  background-color: var(--primary-200);
}
/* logo */
.logo img {
  height: 60px;
  width: auto;
}

/* nav links - large screens only */
.nav-list li a {
  color: var(--primary-100);
  font-weight: 500;
  font-style: italic;
  position: relative;
  transition: 0.3s ease;
}

.nav-list li a:hover {
  color: var(--text-100);
}

.nav-list li a:hover::after {
  transform: scaleX(1);
}

/* menu icon - visible only < lg */
.menu-toggle {
  font-size: 28px;
  cursor: pointer;
  color: var(--primary-100);
  display: none;
}

@media (max-width: 991px) {
  .menu-toggle {
    display: block;
  }
}

/* mobile nav - hidden by default */
.logo img {
  height: 60px;
  width: auto;
}

.nav-list ul {
  margin: 0;
  padding: 0;
}

.nav-list li a {
  color: var(--primary-100);
  font-weight: 500;
  font-style: italic;
  transition: 0.5s ease-in-out;
  position: relative;
}

.nav-list li a::after {
  content: "";
  position: absolute;
  width: 100%;
  background-color: var(--primary-300);
  height: 2px;
  top: 40px;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
  transform-origin: left;
}

.nav-list li a:hover {
  color: var(--text-100);
}

.nav-list li a:hover::after {
  transform: scaleX(1);
}

/* Burger menu (hidden on large screens) */
.menu-toggle {
  font-size: 28px;
  cursor: pointer;
  color: var(--primary-100);
  display: none;
}

/* Responsive - for screens smaller than 768px */
@media (max-width: 991px) {
  .nav-list {
    display: none;
    position: absolute;
    top: 13%;
    left: 10px;
    background-color: var(--bg-100);
    width: 83%;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding-bottom: 0;
  }

  .nav-list li a {
    color: var(--text-100);
  }

  .nav-list.active {
    display: block;
  }

  .nav-list ul {
    flex-direction: column !important;
    gap: 1rem;
  }
  .nav-list ul li {
    padding-bottom: 19px;
    border-bottom: 1px solid var(--bg-300);
    width: 100%;
  }

  .menu-toggle {
    display: block;
  }
}

.mobile-nav ul li a:hover {
  color: var(--primary-300);
}

/* slide down animation */
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-20%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .headerP {
    width: 100% !important;
    text-align: center !important;
  }
  h1 {
    text-align: center !important;
  }
}
@media (min-width: 769px) and (max-width: 915px) {
  /* .main-header {
    height: 46vh !important;
  } */
}
@media (min-width: 915px) and (max-width: 991px) {
  /* .main-header {
    height: 90vh !important;
  } */
}

@media (min-width: 769px) and (max-width: 991px) {
  .aboutImg {
    height: 60% !important;
    margin-top: 50px;
  }
  .twoTitleH2 {
    font-size: 147px !important;
  }
}

@media (max-width: 768px) {
  .titleH2,
  .twoTitleH2 {
    font-size: 80px !important;
  }
  .titleSection p {
    font-size: 12px !important;
    width: 100% !important;
  }
  /* .main-header {
    height: 80vh !important;
  } */
  .titleHeader {
    margin-top: 30px !important;
  }
}

/* End Header */

.oneSection {
  background-color: var(--bg-200);
}
.twoSection {
  background-color: var(--bg-300);
}

/* Start Section */
.titleSection {
  position: relative;
  p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-200) !important;
  }
}
.titleH2,
.twoTitleH2,
.twoTitleH3 {
  color: var(--bg-300);
  font-size: 150px;
  text-align: center;
  font-weight: 800;
  letter-spacing: -3px;
  margin: 0;
}
.twoTitleH2,
.twoTitleH3 {
  color: var(--bg-200);
}
@media (max-width: 769px) {
  .twoTitleH3 {
    font-size: 65px;
  }
}
@media (min-width: 769px) and (max-width: 991px) {
  .twoTitleH3 {
    font-size: 118px;
  }
}
.visionSection {
  background-color: var(--bg-200);
  border-radius: 10px;
}
blockquote {
  color: var(--text-200);
}

@media (min-width: 1400px) {
  .branchFinance {
    display: block !important;
  }
  .Finance-box,
  .basicFinance {
    margin-left: 0 !important;
  }
  .FinanceIcon {
    text-align: start !important;
  }
}
@media (min-width: 769px) {
  .fa-circle-downDiv,
  .fa-circle-downDiv {
    display: none;
  }
}

.fa-arrow-down-long,
.fa-square-caret-down,
.fa-circle-down {
  color: var(--text-200);
}
#tree,
#treeTwo {
  width: 100%;
  background-color: transparent;
}
/* Start Section */

/* Start Services */

.service-intro {
  line-height: 1.7;
  color: var(--primary-200);
}

.service-list li,
.service-values li {
  margin-bottom: 0.5rem;
  color: var(--primary-100);
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  background-color: var(--bg-100);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  height: auto; /* خلي السلايد يعتمد على محتواه */
}

.swiper-slide img {
  max-width: 100%;
  max-height: 400px; /* عدّل الرقم حسب الارتفاع اللي تحبه */
  object-fit: contain;
}
.logoProduct img {
  height: 40px;
  width: auto;
}

/* End Services */

footer {
  background-color: #3d5a80;
}

footer a i {
  color: #acc2ef;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  padding: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* WhatsApp */
footer a .fa-whatsapp:hover {
  background-color: #25d366;
  color: #ffffff;
  transform: scale(1.1);
}

/* LinkedIn */
footer a .fa-linkedin-in:hover {
  background-color: #0a66c2;
  color: #ffffff;
  transform: scale(1.1);
}

/* Facebook */
footer a .fa-facebook-f:hover {
  background-color: #0866ff;
  color: #ffffff;
  transform: scale(1.1);
}

/* Email */
footer a .fa-envelope:hover {
  background-color: #ea4335;
  color: #ffffff;
  transform: scale(1.1);
}

.endP {
  color: #acc2ef !important;
}

.logoFooter img {
  height: 10px !important;
  width: auto;
}
