@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
.vertical-strips-overlay {
  position: fixed;
  inset: 0;
  background: #11111100;
  z-index: 9999;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo-wrapper {
  position: relative;
  z-index: 10;
}
.intro-logo {
  width: 150px;
}
.strips {
  position: absolute;
  inset: 0;
  display: flex;
}
.strip {
  flex: 1; /* كل شريط يملأ جزء من العرض */
  background: #e37945; /* لون الشريط */
  transform: translateY(0); /* البداية على الشاشة */
  height: 100%;
}
@media (max-width: 768px) {
  .intro-logo {
    width: 100px;
  }
}
/*  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
html,
body {
  overflow-x: hidden;
}
body {
  font-family: "Bebas Neue", sans-serif;
  background: #000000;
}
/* ----------------------------------------------------------------------- */
.preloader {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.preloader-bg {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(15px);
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.logo {
  width: 215px;
  z-index: 2;
}
@media (max-width: 768px) {
  .logo {
    width: 45%;
  }
}
/* ----------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.2);
  z-index: 1000;
  width: 65%;
  border-radius: 10px;
}
.logo {
  width: 15%;
  display: flex;
  align-items: center;
}
.logo img {
  width: 100%;
}
.nav {
  display: flex;
  align-items: center;
  gap: 15px;
}
.nav .menu {
  display: flex;
  align-items: center;
  gap: 25px;
}
.nav .menu li {
  list-style: none;
}
.nav .menu li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 20px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100vh;
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  backdrop-filter: blur(15px);
  background: rgba(0, 0, 0, 0.4);
}
.mobile-menu ul {
  list-style: none;
  text-align: center;
}
.mobile-menu ul li {
  margin: 20px 0;
}
.mobile-menu ul li a {
  text-decoration: none;
  font-size: 60px;
  color: #ffffff;
  font-weight: bold;
}
.flip-text {
  display: inline-block;
  perspective: 600px; /* لازم للflip */
  cursor: pointer;
}
.flip-text span {
  display: inline-block;
  transform-origin: center;
  backface-visibility: hidden;
}

.lang-dropdown {
  position: relative;
  display: inline-block;
}
.switchLang {
  font-family: "Bebas Neue", sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  border: 2px solid #f96d2a;
  background-color: #00a2ff00;
  color: rgb(255, 255, 255);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.25s ease-in-out;
  margin: auto;
}
.switchLang:hover {
  transform: translateY(-2px);
}

.switchLang img,
.lang-menu img {
  width: 20px;
}
.switchLang i {
  font-size: 12px;
}
/* القائمة */
.lang-menu {
  position: absolute;
  top: 110%;
  left: 0;
  background: #111;
  border: 1px solid #f96d2a;
  border-radius: 8px;
  list-style: none;
  padding: 5px 0;
  margin: 0;
  width: 100%;
  display: none;
  z-index: 999;
}

.lang-menu li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 12px;
  cursor: pointer;
  color: #fff;
  transition: background 0.2s;
}
.lang-menu li:hover {
  background: #f96d2a;
}

/* إظهار القائمة */
.lang-dropdown.open .lang-menu {
  display: block;
}
/* Responsive */
@media (max-width: 768px) {
  .nav .menu {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .header {
    top: 15px;
    width: 95%;
  }
  .logo {
    width: 20%;
  }
  .logo img {
    width: 100%;
  }
  .mobile-menu ul li {
    margin: 0 0 0 0;
  }
}
/* ----------------------------------------------------------------------- */
#scroll-video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}
#scroll-video-frame {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 1;
}
#scroll-video-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
#scroll-video-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-family: sans-serif;
  z-index: 3;
}
#scroll-texts {
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-family: sans-serif;
  text-align: center;
  z-index: 10;
}
.scroll-sentence {
  opacity: 0;
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  white-space: pre;
  text-align: center;
  font-size: 80px;
  font-weight: 900;
  font-family: "Bebas Neue", sans-serif;
}
.scroll-sentence span {
  display: inline-block;
  opacity: 0;
  color: orange;
  transition: color 0.3s, opacity 0.3s;
}
@media (max-width: 768px) {
  #scroll-video-frame {
    width: 300%; /* تمدد العرض ليتجاوز الشاشة قليلاً */
    left: -200%; /* تحريك الفيديو لليسار/اليمين إذا لازم */
    object-fit: cover;
  }
  .scroll-sentence {
    opacity: 0;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    white-space: pre;
    text-align: center;
    font-size: 20px;
    font-weight: 900;
  }
}
/* ----------------------------------------------------------------------- */
.about {
  padding: 80px 0;
  background: #000000;
  position: relative;
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  right: -200px;
  top: 40%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 115, 0, 0.144),
    rgba(0, 0, 0, 0)
  );
  filter: blur(40px);
}
.about::after {
  content: "";
  position: absolute;
  left: -200px;
  top: 80%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 115, 0, 0.144),
    rgba(0, 0, 0, 0)
  );
  filter: blur(40px);
}
.about .container {
  text-align: center;
}
.sec-subtitle {
  font-size: 30px;
  color: #ffffff;
  text-align: center;
}

.sec-line {
  width: 100px;
  height: 2px;
  background: #f86e2962;
  position: relative;
}
.left-line {
  margin-right: 5px;
  color: #f86e29;
}
.right-line {
  margin-left: 5px;
  color: #f86e29;
}
.moving-car {
  position: absolute;
  top: -7px;
  animation: carMove 2s linear infinite alternate;
}
.moving-car.reverse {
  animation-direction: alternate-reverse;
}
@keyframes carMove {
  0% {
    left: 0;
  }
  100% {
    left: 80px;
  }
}
.about-lines p {
  font-size: 88px;
  font-weight: 600;
  margin: 8px 0;
  color: white;
}
.line span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%) scale(0.8);
  clip-path: inset(0 0 0 0);
}
.about-lines span {
  color: #ff7a00;
}
.about-text {
  margin: 30px auto 50px;
  max-width: 850px;
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.712);
  opacity: 0;
  transform: scale(0.95);
}
.about-img {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
}
.about-img img {
  width: 80%;
  display: block;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .about {
    padding: 50px 20px;
  }

  .about-icon {
    width: 15px;
  }
  .about-lines p {
    font-size: 25px;
  }
  .about-text {
    margin: 10px 0 30px 0;
    font-size: 14px;
  }
  .about-img img {
    width: 100%;
    transform: translateX(-50%);
  }
  .about::before {
    right: -100px;
    width: 300px;
    height: 300px;
  }
  .about::after {
    width: 300px;
    height: 300px;
  }
  .sec-subtitle {
    font-size: 18px;
    width: 130px;
  }
  .moving-car {
    font-size: 14px;
    top: -6px;
  }
}
/* ----------------------------------------------------------------------- */
.text-image-lines {
  width: 100%;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 0px;
  background: #000000;
  position: relative;
  overflow: hidden;
}
.text-image-lines::before {
  content: "";
  position: absolute;
  left: -200px;
  top: -57%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 115, 0, 0.144),
    rgba(0, 0, 0, 0)
  );
  filter: blur(40px);
}
.text-image-lines p {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 100px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.text-image-lines img {
  width: 60px;
  object-fit: contain;
  transform: translateY(6px);
}
@media (max-width: 768px) {
  .text-image-lines {
    gap: 10px;
  }
  .text-image-lines::before {
    top: -50%;
    width: 300px;
    height: 300px;
  }
  .text-image-lines p {
    font-size: 25px;
  }
  .text-image-lines img {
    width: 20px;
  }
}
/* ----------------------------------------------------------------------- */
.sec-services {
  padding: 50px 80px 160px 80px;
  text-align: center;
  background: #000000;
  position: relative;
  overflow: hidden;
}
.sec-services::before {
  content: "";
  position: absolute;
  right: -200px;
  top: 80%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 115, 0, 0.144),
    rgba(0, 0, 0, 0)
  );
  filter: blur(40px);
}
.sec-services::after {
  content: "";
  position: absolute;
  left: -200px;
  top: 40%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 115, 0, 0.144),
    rgba(0, 0, 0, 0)
  );
  filter: blur(40px);
}
.sec-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.sec-title {
  font-size: 88px;
  font-weight: 600;
  color: white;
  text-align: center;
  margin-bottom: 20px;
}
.orange {
  color: #f86e29;
}
.section-description {
  margin: 0 auto 40px auto;
  max-width: 850px;
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.712);
  text-align: center;
}
.sec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.sec-box {
  background: #141414ad;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
  border-right: 1px solid;
  border-image: linear-gradient(180deg, #ff7b0000, #ff7a00, #4c00ff00) 1;
  z-index: 1;
  position: relative;
}

.sec-img {
  position: relative;
}
.sec-img img {
  width: 100%;
  height: 30vh;
  object-fit: cover;
  border-radius: 10px;
  /* clip-path لعمل الانحناء */
  clip-path: polygon(
    0% 0%,
    /* أعلى يسار */ 75% 0%,
    /* أعلى يمين منحني */ 100% 35%,
    /* منحنى الزاوية العليا اليمنى */ 100% 100%,
    /* أسفل يمين */ 25% 100%,
    /* منحنى الزاوية السفلى اليسرى */ 0% 70% /* أسفل يسار منحني */
  );
}
.sec-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  color: #ffffff21;
}
.sec-num {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff21;
}
.sec-box h3 {
  margin-top: 15px;
  font-size: 20px;
  color: white;
}
.sec-box p {
  margin: 10px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.712);
}

.sec-link {
  display: inline-flex;
  align-items: center;
  color: #f96d29;
  text-decoration: none;
  font-weight: bold;
}

.sec-link i {
  margin-left: 5px;
}
@media (max-width: 768px) {
  .sec-services {
    padding: 50px 20px 100px 20px;
  }
  .sec-title {
    font-size: 25px;
  }
  .section-description {
    max-width: 300px;
    font-size: 14px;
  }
}
/* ----------------------------------------------------------------------- */
.skills-section {
  padding: 0 0 0 80px;
  background: #0e0e0e;
  text-align: center;
}
.section-top {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.skills-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.asdasd {
  width: 50%;
  padding: 50px 0 0 0;
}
.skills-left {
  flex: 1;
  text-align: left;
}
.abilities-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.ability-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  text-align: start;
  color: white;
}
.ability-track {
  width: 100%;
  height: 6px;
  background: #2b2b2b;
  border-radius: 5px;
  position: relative;
  overflow: visible;
}
.ability-progress {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #02a3ff, #f96d29, #f96d29);
  border-radius: 5px;
  position: relative;
  transition: width 1.8s ease-out;
}
.ability-percent {
  position: absolute;
  top: -25px;
  right: 0;
  transform: translateX(50%);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.abilities-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: linear-gradient(90deg, #02a3ff, #f96d2b);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
  width: 20%;
  border: none;
}
.abilities-btn:hover {
  transform: translateY(-3px);
}
.skills-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}
.skills-right {
  width: 50%;
}
.skills-right img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  border-radius: 10px;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}
@media (max-width: 768px) {
  .skills-section {
    padding: 50px 20px;
  }
  .skills-content {
    flex-direction: column;
  }
  .asdasd {
    width: 100%;
    margin-bottom: 30px;
  }
  .abilities-btn {
    width: 35%;
  }
  .skills-right {
    width: 100%;
  }
  .skills-right img {
    border-radius: 15px;
    height: auto;
    clip-path: polygon(0% 0, 100% 0, 100% 100%, 0 100%);
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, #ff7b0000, #ff7a00, #4c00ff00) 1;
  }
}
/* ----------------------------------------------------------------------- */
.sec-skills {
  padding: 160px 80px 80px 80px;
  background-color: #000000;
  position: relative;
  overflow: hidden;
}
.sec-skills::before {
  content: "";
  position: absolute;
  right: -200px;
  top: 40%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 115, 0, 0.144),
    rgba(0, 0, 0, 0)
  );
  filter: blur(40px);
}
.sec-skills::after {
  content: "";
  position: absolute;
  left: -200px;
  top: 80%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 115, 0, 0.144),
    rgba(0, 0, 0, 0)
  );
  filter: blur(40px);
}
.skills-timeline {
  display: flex;
  justify-content: space-between;
  gap: 100px;
  margin-top: 45px;
  position: relative;
}
.skill-step {
  text-align: center;
  width: 100%;
  position: relative;
}
.skill-icon {
  width: 85px;
  height: 85px;
  margin: 0 auto 15px;
  background: #000000;
  border-radius: 50% 0% 50% 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  position: relative;
  border: 2px solid #f96d2b;
  z-index: 2;
  color: #f96d2b;
}
.step-num {
  position: absolute;
  top: -10px;
  right: -8px;
  background: #f96d2b;
  padding: 4px 8px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  color: black;
}
.skill-step::after {
  content: "";
  position: absolute;
  top: 42.5px;
  left: 60%;
  width: calc(100% + 35px);
  height: 1px;
  background: linear-gradient(90deg, #f96c2b00, #f96d2b);
  transform: translateX(0);
  z-index: 1;
}
.skill-step:last-child::after {
  display: none;
}
.skill-title {
  color: white;
  font-size: 20px;
  margin-bottom: 10px;
}
.skill-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.712);
}
/* موبايل */
@media (max-width: 768px) {
  .sec-skills {
    padding: 100px 20px 50px 20px;
  }
  .skills-timeline {
    flex-wrap: wrap;
    gap: 50px 20px;
  }
  .skill-step {
    text-align: center;
    width: 45%;
  }
  .skill-step:nth-child(2)::after {
    display: none;
  }
  .skill-step::after {
    left: 70%;
    width: calc(70% + 5px);
    height: 1px;
  }
}
/* ----------------------------------------------------------------------- */
.wipe-title-section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000000;
  color: white;
  font-size: 25px;
  overflow: hidden;
  position: relative;
}
.wipe-title-section::before {
  content: "";
  position: absolute;
  right: -200px;
  top: 60%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 115, 0, 0.144),
    rgba(0, 0, 0, 0)
  );
  filter: blur(40px);
}
.wipe-title-section::after {
  content: "";
  position: absolute;
  left: -200px;
  top: 20%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 115, 0, 0.144),
    rgba(0, 0, 0, 0)
  );
  filter: blur(40px);
}

@media (max-width: 768px) {
  .wipe-title-section {
    padding: 0 20px;
  }
  .wipe-title {
    font-size: 20px;
    text-align: center;
  }
  .wipe-title-section::after {
    top: 16%;
  }
}
/* ----------------------------------------------------------------------- */
:root {
  --accent: #ff6a00;
  --glass-bg: rgba(0, 0, 0, 0.15);
  --white-bg: #ffffff;
}
.info-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: end;
  align-items: end;
  padding: 80px 20px;
  box-sizing: border-box;
  overflow: visible;
  background: url("/img/bak2.jpg") center/cover no-repeat;
}
.info-boxx {
  position: absolute;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.247);
  backdrop-filter: blur(8px);
  padding: 22px 30px;
  width: 38%;
  max-width: 900px;
  border-radius: 12px;
  transition: 0.4s;
  opacity: 0;
  transform: translateY(50px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-right: 1px solid;
  border-image: linear-gradient(180deg, #ff7b0000, #ff7a00, #4c00ff00) 1;
}
.info-boxx .number {
  font-size: 50px;
  font-weight: 700;
  color: var(--accent);
  margin-right: 22px;
}
.info-boxx .text h3 {
  font-size: 22px;
  margin: 0 0 6px 0;
  color: #111;
}
.info-boxx .text p {
  margin: 0;
  font-size: 14px;
  color: #222;
  line-height: 1.6;
}
.box-1 {
  bottom: 70%;
  left: 20%;
}
.box-2 {
  bottom: 40%;
  left: 12%;
  width: 32%;
}
.box-3 {
  bottom: 10%;
  left: 5%;
  width: 30%;
}
.nodes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 60%;
  pointer-events: auto;
}
.small-box {
  width: 140px;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.2s;
  background: rgba(255, 255, 255, 0.247);
  backdrop-filter: blur(8px);
  border-right: 1px solid;
  border-image: linear-gradient(180deg, #ff7b0000, #ff7a00, #4c00ff00) 1;
}
.small-box h4 {
  margin: 0 0 6px 0;
  font-size: 14px;
  color: #ff6a00;
}
.small-box p {
  margin: 0;
  font-size: 12px;
  color: #333;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .info-section {
    padding: 50px 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 80%;
    flex-direction: column;
    gap: 0px;
  }
  .info-boxx {
    position: static;
    padding: 20px 25px;
    width: 100%;
  }
  .info-boxx .number {
    font-size: 30px;
  }
  .info-boxx .text h3 {
    font-size: 20px;
  }
  .box-1 {
    margin-bottom: 50px;
  }
  .box-2 {
    margin-bottom: 50px;
  }
  .nodes {
    gap: 10px;
    width: 100%;
    flex-wrap: wrap;
  }
  .small-box {
    width: 48%;
  }
}
/* ----------------------------------------------------------------------- */
.sec-counter {
  padding: 80px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.sec-counter::before {
  content: "";
  position: absolute;
  right: -200px;
  top: 40%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 115, 0, 0.144),
    rgba(0, 0, 0, 0)
  );
  filter: blur(40px);
}
.sec-counter::after {
  content: "";
  position: absolute;
  left: -200px;
  top: 80%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 115, 0, 0.144),
    rgba(0, 0, 0, 0)
  );
  filter: blur(40px);
}
.sec-subtitle2 {
  font-size: 30px;
  color: #000000;
  text-align: center;
}
.sec-title2 {
  font-size: 88px;
  font-weight: 600;
  color: rgb(0, 0, 0);
  text-align: center;
  margin-bottom: 20px;
}
.section-description2 {
  margin: 0 auto 40px auto;
  max-width: 850px;
  font-size: 20px;
  line-height: 1.8;
  color: rgba(20, 20, 20, 0.712);
  text-align: center;
}
.counters-section {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 10px;
}
.counter-box {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  width: 24%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  border-right: 1px solid;
  border-image: linear-gradient(180deg, #ff7b0000, #ff7a00, #4c00ff00) 1;
  z-index: 1;
}
.counter-box:hover {
  transform: translateY(-5px);
}
.counter {
  font-size: 40px;
  font-weight: 700;
}
.symbol {
  font-size: 28px;
  vertical-align: top;
  margin-left: 2px;
}
.counter-title {
  font-size: 18px;
  margin-top: 10px;
  font-weight: 600;
}
.counter-text {
  font-size: 14px;
  color: #777;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .sec-counter {
    padding: 50px 20px;
  }
  .counters-section {
    gap: 30px;
  }
  .counter-box {
    padding: 20px;
    width: 45%;
  }
  .sec-subtitle2 {
    font-size: 18px;
    width: 130px;
  }
  .sec-title2 {
    font-size: 25px;
  }
  .section-description2 {
    max-width: 300px;
    font-size: 14px;
    margin: 0 auto 0px auto;
  }
}
/* ----------------------------------------------------------------------- */
.faqs-section {
  background-color: white;
  padding: 80px;
  position: relative;
  overflow: hidden;
}
.faqs-section::before {
  content: "";
  position: absolute;
  right: -200px;
  top: 80%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 115, 0, 0.144),
    rgba(0, 0, 0, 0)
  );
  filter: blur(40px);
}
.faqs-section::after {
  content: "";
  position: absolute;
  left: -200px;
  top: 20%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 115, 0, 0.144),
    rgba(0, 0, 0, 0)
  );
  filter: blur(40px);
}
.container-faqs {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.faqs-left {
  width: 50%;
  text-align: center;
}
.faqs-right {
  width: 45%;
}
.faq-item {
  border-bottom: 1px solid;
  border-image: linear-gradient(90deg, #ff7b0000, #ff7a00, #4c00ff00) 1;
  padding: 15px 0;
  position: relative;
}
.faq-question {
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  position: relative;
  padding-right: 30px;
  transition: color 0.3s;
}
.faq-question:hover {
  color: #ff6600;
}
.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  font-weight: bold;
  transition: transform 0.3s;
}
.faq-question.active::after {
  content: "-";
}
.faq-answer {
  height: 0;
  overflow: hidden;
  padding: 0;
  font-size: 16px;
  color: #555;
  line-height: 40px;
  transition: none; /* مهم جداً علشان ما يتعارضش مع GSAP */
}
.faq-answer.open {
  padding: 10px 0;
  max-height: 500px;
}
.faq-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: linear-gradient(90deg, #02a3ff, #f96d2b);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
  width: 20%;
}
.faq-btn:hover {
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .faqs-section {
    padding: 50px 20px;
  }
  .container-faqs {
    flex-direction: column;
  }
  .faqs-left {
    width: 100%;
  }
  .faqs-right {
    width: 100%;
  }
  .faq-answer {
    line-height: 30px;
  }
}
/* ----------------------------------------------------------------------- */
.footer {
  background-color: #000000;
  padding: 50px 80px;
  color: #ffffff;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  margin: 0 auto;
}
.footer-box,
.footer-box2,
.footer-box3,
.footer-box4 {
  width: 24%;
  background: #141414ad;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-right: 1px solid;
  border-image: linear-gradient(180deg, #ff7b0000, #ff7a00, #4c00ff00) 1;
}
.footer-box img {
  width: 30%;
  margin-bottom: 10px;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.6;
}
.footer-title {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
}
.footer-menu,
.footer-social {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-menu li,
.footer-social li {
  margin-bottom: 10px;
}
.footer-menu a,
.footer-social a {
  text-decoration: none;
  color: #a8a8a8;
  transition: color 0.3s;
}

.footer-menu a:hover,
.footer-social a:hover {
  color: #ff6600;
}

.footer-social li {
  display: flex;
  align-items: center;
}

.social-icon {
  margin-right: 8px;
  font-size: 18px;
}

.footer-copy {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #afafaf;
  background: #141414ad;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-right: 1px solid;
  border-image: linear-gradient(180deg, #ff7b0000, #ff7a00, #4c00ff00) 1;
}
@media (max-width: 768px) {
  .footer {
    padding: 50px 20px;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    margin: 0 auto;
  }
  .footer-box,
  .footer-box4 {
    width: 100%;
  }
  .footer-box2,
  .footer-box3 {
    width: 48%;
  }
}
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
.donate-button {
  display: inline-block;
  padding: 5px;
  background-color: #f86e29;
  color: #000000;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
  font-weight: 600;
  font-size: 16px;
}
.donate-button:hover {
  background-color: #b4511f;
}
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
.track-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background-color: #f86e29;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
  display: none;
}
.track-button:hover {
  background-color: #b4511f;
  transform: scale(1.05);
}
.track-button i {
  font-size: 18px;
}
.track-button2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background-color: #f86e29;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
}
.track-button2:hover {
  background-color: #b4511f;
  transform: scale(1.05);
}
.track-button2 i {
  font-size: 18px;
}
@media (max-width: 768px) {
  .track-button {
    display: block;
  }
  .track-button {
    padding: 5px 8px;
    letter-spacing: 2px;
    font-size: 14px;
  }
  .track-button i {
    font-size: 12px;
  }
  .track-button2 {
    display: none;
  }
}
