@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #007bff #2c1234;
}
body {
  height: 100vh;
  background-color: #111022;
  margin: 0;
  font-family: "Outfit", sans-serif;
  overflow-x: hidden;
}
.container {
  width: 90%;
  height: 100vh;
  margin: auto;
}
.container2 {
  width: 90%;
  margin: auto;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #2c1234;
}
::-webkit-scrollbar-thumb {
  background-color: #007bff;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #0056b3;
}
/* .loader-center {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111022;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader-center.hidden {
  opacity: 0;
  visibility: hidden;
}
.spinner {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.08);
  border-top-color: #00d4ff;
  animation: spin 0.9s linear infinite;
  box-shadow: 0 0 18px #00d4ff33;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
} */
/* **************************************************************************************** */
/* ====== Header Base ====== */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.068);
  z-index: 1000;
  transition: all 0.6s ease;
}
header.sticky {
  position: fixed;
  top: 0;
  animation: slideDown 0.6s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.logo {
  width: 6%;
}
.logo a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.logo a img {
  width: 100%;
}
#navMenu li a.active {
  color: #127ace;
  font-weight: 600;
}
.menu {
  list-style: none;
  display: flex;
  gap: 30px;
}
.menu li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.3s;
  display: block;
}
.menu li a:hover {
  color: #127ace;
  transform: scale(1.1);
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* ====== Hamburger ====== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s ease;
}
/* ====== Responsive ====== */
@media (max-width: 768px) {
  .logo {
    width: 22%;
  }
  header {
    padding: 0 20px;
  }
  .menu {
    position: fixed;
    top: 0;
    left: -260px;
    height: 100vh;
    width: 220px;
    background: #1110227c;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-right: 1px solid rgba(255, 255, 255, 0.068);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px;
    gap: 20px;
    transition: left 0.4s ease;
    z-index: 9999;
  }
  .menu.show {
    left: 0; /* تظهر */
  }
  .menu-toggle {
    display: flex;
  }
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}
/* **************************************************************************************** */
canvas {
  display: block;
  vertical-align: bottom;
}
#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, #111022, transparent 60%),
    radial-gradient(circle at 80% 70%, #11102280, transparent 60%),
    radial-gradient(circle at 50% 90%, #0d00ff34, transparent 70%),
    linear-gradient(135deg, #111022, #b623232c, #c300ff34);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
#particles-js canvas {
  position: absolute;
  top: 0;
  left: 0;
  background: transparent !important;
}
.count-particles {
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #000000;
  font-size: 0.8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}
.js-count-particles {
  font-size: 1.1em;
}
#stats,
.count-particles {
  -webkit-user-select: none;
  margin-top: 5px;
  margin-left: 5px;
}
#stats {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}
.count-particles {
  border-radius: 0 0 3px 3px;
}
/* **************************************************************************************** */
.home {
  width: 100%;
  min-height: 100vh; /* بدل height: 100% */
  color: white;
  position: relative;
  overflow: hidden;
}
.content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 50px;
}
.glow-img {
  width: 6%;
  margin-bottom: 50px;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}
.typewriter {
  height: 80px;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 60px;
  border-right: 8px solid white;
  padding-right: 5px;
  white-space: nowrap;
  overflow: hidden;
  animation: blink 0.6s step-end infinite;
  margin-bottom: 20px;
}
@keyframes blink {
  50% {
    border-color: transparent;
  }
}
.gradient {
  background: linear-gradient(90deg, #0153be, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.p1 {
  background: linear-gradient(90deg, #0153be, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 25px;
  margin-bottom: 20px;
}
.p2 {
  font-size: 18px;
  color: #dbdbdb;
  margin-bottom: 40px;
}
.but {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 70px;
}
.btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}
.btn-outline {
  background: transparent;
  border: 2px solid #127ace;
  color: #127ace;
}
.btn-outline:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px #007bff50;
}
.btn-blue {
  background: #127ace;
  border: none;
  color: white;
  box-shadow: 0 0 10px #007bff80;
}
.btn-blue:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #007bff;
}
.counters {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 100px;
}
.counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.num-wrap {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.number {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(90deg, #0152bd, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  transition: transform 0.3s ease;
}
.suffix {
  font-size: 20px;
  font-weight: 900;
  color: #00d4ff;
}
.label {
  font-size: 14px;
  color: #dbdbdb;
  margin-top: 4px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .glow-img {
    width: 15%;
    margin-bottom: 50px;
  }
  .typewriter {
    font-size: 20px;
    height: 25px;
    border-right: 4px solid white;
    margin-bottom: 10px;
  }
  .p1 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .p2 {
    text-align: center;
    line-height: 22px;
    font-size: 14px;
    margin-bottom: 40px;
  }
  .but {
    gap: 10px;
  }
  .btn {
    font-size: 14px;
    padding: 10px;
  }
  .counters {
    gap: 20px;
  }
  .num-wrap {
    gap: 5px;
  }
  .number {
    font-size: 25px;
  }
  .suffix {
    font-size: 16px;
  }
  .label {
    font-size: 10px;
  }
}
/* **************************************************************************************** */
.About {
  width: 100%;
  padding: 80px 0;
  position: relative;
  z-index: 1;
  background: url("img/pngegg.png");
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: right;
  overflow: visible;
}
.About::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, #111022, transparent 60%),
    radial-gradient(circle at 80% 70%, #11102280, transparent 60%),
    radial-gradient(circle at 50% 90%, #0d00ff34, transparent 70%),
    linear-gradient(135deg, #111022, #b623232c, #c300ff34);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transform: scaleY(-1);
  z-index: -1;
}
.About::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(
    to left,
    transparent,
    #1110229f,
    #0056b3,
    #1110229f,
    transparent
  );
  pointer-events: none;
  z-index: 0;
}
.content-about {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.about-card {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-right: 1px solid #0152bd;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  width: 85%;
  padding: 50px 30px;
  position: relative;
  margin-bottom: 40px;
}
.about-header h1 {
  text-align: center;
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
}
.gradient-text {
  background: linear-gradient(90deg, #0152bd, #00f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.about-body .main-text {
  text-align: center;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 15px;
}
.about-body .sub-text {
  text-align: center;
  font-size: 1rem;
  color: #bbb;
  line-height: 1.6;
}
.ti {
  font-size: 25px;
  margin-bottom: 40px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.feature-card {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-right: 1px solid #0152bd;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card i {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto 15px auto;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: linear-gradient(90deg, #0152bd, #00f2fe);
  transform: rotate(-5deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
}
.feature-card p {
  font-size: 0.95rem;
  color: #ddd;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.feature-card:hover i {
  transform: rotate(0deg);
}
.about-card2 {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-right: 1px solid #0152bd;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  width: 55%;
  padding: 50px 30px;
}
.about-card2 h2 {
  text-align: center;
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 30px;
}
.about-card2 p {
  font-size: 16px;
  text-align: center;
  color: #bbb;
}
@media (max-width: 768px) {
  .About {
    padding: 50px 0;
    background-size: 100%;
    background-position: right 30%;
  }
  .about-card {
    width: 100%;
    padding: 30px 15px;
    margin-bottom: 30px;
  }
  .about-header h1 {
    font-size: 30px;
  }
  .about-body .main-text {
    font-size: 14px;
  }
  .about-body .sub-text {
    font-size: 12px;
  }
  .ti {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 30px;
  }
  .feature-card {
    padding: 15px 10px;
  }
  .feature-card i {
    font-size: 16px;
    margin: 0px auto 10px auto;
    width: 40px;
    height: 40px;
  }
  .feature-card h3 {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .feature-card p {
    font-size: 12px;
  }
  .about-card2 {
    width: 100%;
    padding: 30px 15px;
  }
  .about-card2 h2 {
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 20px;
  }
  .about-card2 p {
    font-size: 14px;
  }
}
/* **************************************************************************************** */
.services {
  width: 100%;
  padding: 80px 0;
  position: relative;
  z-index: 1;
  overflow: visible;
}
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, #111022, transparent 60%),
    radial-gradient(circle at 80% 70%, #11102280, transparent 60%),
    radial-gradient(circle at 50% 90%, #0d00ff34, transparent 70%),
    linear-gradient(135deg, #111022, #b623232c, #c300ff34);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.services::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(
    to left,
    transparent,
    #1110229f,
    #0056b3,
    #1110229f,
    transparent
  );
  pointer-events: none;
  z-index: 0;
}
.services-header {
  text-align: center;
  margin-bottom: 60px;
}
.services-header h2 {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
}
.services-header p {
  font-size: 1.1rem;
  color: #fff;
}
.services-slider-wrapper {
  overflow: hidden;
  padding: 20px 0;
  width: 100%;
  margin-bottom: 40px;
}
.services-slider {
  display: flex;
  gap: 20px;
  width: max-content;
}
.service-card {
  width: 500px;
  background-color: rgba(26, 26, 46, 0.36);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease-in-out, background-color 1.2s ease-in-out;
}
.service-card:hover {
  transform: translateY(-5px);
  background-color: rgba(0, 123, 255, 0.055); /* لون أزرق شفاف */
}
.icons {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.icons i {
  font-size: 35px;
  color: rgba(255, 255, 255, 0);
  transition: 0.4s;
}
.service-card:hover .icons i {
  opacity: 9;
  color: rgba(255, 255, 255, 0.24);
}
.service-card img {
  width: 13%;
  margin-bottom: 15px;
}
.service-card h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.95rem;
  color: #aaa;
  margin-bottom: 15px;
}
.discover-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #007bff;
  font-weight: 500;
  transition: transform 0.3s, color 0.3s;
}
.discover-btn:hover {
  transform: translateX(5px);
  color: #00d4ff;
}
.but-box {
  width: max-content;
  padding: 25px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  background-color: rgba(26, 26, 46, 0.36);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  color: white;
  font-size: 20px;
}
@media (max-width: 768px) {
  .services {
    padding: 50px 0;
  }
  .services-header {
    margin-bottom: 30px;
  }
  .services-header h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .services-header p {
    font-size: 14px;
  }
  .service-card {
    width: 300px;
    padding: 25px 20px;
  }
  .icons i {
    font-size: 25px;
  }
  .service-card img {
    width: 15%;
  }
  .service-card h3 {
    font-size: 16px;
  }
  .service-card p {
    font-size: 12px;
  }
  .discover-btn {
    font-size: 14px;
    font-weight: 600;
  }
  .but-box {
    width: 100%;
    padding: 15px;
    font-size: 14px;
  }
}
/* **************************************************************************************** */
.impact {
  width: 100%;
  padding: 80px 0;
  position: relative;
  z-index: 1;
  overflow: visible;
  background: url("img/pngegg2.png");
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: left;
}
.impact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, #111022, transparent 60%),
    radial-gradient(circle at 80% 70%, #11102280, transparent 60%),
    radial-gradient(circle at 50% 90%, #0d00ff34, transparent 70%),
    linear-gradient(135deg, #111022, #b623232c, #c300ff34);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  transform: scaleY(-1);
}
.impact::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(
    to left,
    transparent,
    #1110229f,
    #0056b3,
    #1110229f,
    transparent
  );
  pointer-events: none;
  z-index: 0;
}
.impact .section-title {
  color: #fff;
  font-size: 60px;
  text-align: center;
  margin-bottom: 10px;
}
.impact .section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 50px;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.impact-card {
  padding: 30px;
  text-align: left;
}
.impact-card-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #0152bd, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.impact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  margin-bottom: 15px;
  border-radius: 10px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  background-color: rgba(26, 26, 46, 0.36);
  transition: transform 0.4s ease-in-out, background-color 0.6s ease-in-out;
}
.impact-item:hover {
  transform: translateY(-5px);
  background-color: rgba(0, 123, 255, 0.055);
}
.impact-item i {
  font-size: 1.9rem;
  margin-right: 10px;
  background: linear-gradient(90deg, #0152bd, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.impact-text {
  color: white;
  flex: 1;
  margin-left: 10px;
  font-size: 1rem;
}
.impact-number {
  font-weight: bold;
  font-size: 20px;
  background: linear-gradient(90deg, #0152bd, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* الكارد الأساسي */
.slider-card {
  border-radius: 15px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
/* السلايدات */
.slider {
  position: relative;
  width: 100%;
}
.slide {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.7s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}
/* الايقونه والعنوان */
.feature {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1.2rem;
  margin-bottom: 35px;
}
.feature i {
  color: white;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 40px;
}
.la-industry {
  background: linear-gradient(90deg, #0152bd, #00d4ff);
}
.la-heartbeat {
  background: linear-gradient(90deg, #15a35b, #1eba5d);
}
.la-building {
  background: linear-gradient(90deg, #503cd0, #9e52f3);
}
.la-desktop {
  background: linear-gradient(90deg, #c3291b, #f16817);
}
.la-city {
  background: linear-gradient(90deg, #c51a4a, #e6418e);
}
.feature-text p {
  font-size: 16px;
  color: #9ca3af;
}
.feature-text h3 {
  font-size: 25px;
  letter-spacing: 1px;
  font-weight: 900;
  color: white;
}
.co-box {
  opacity: 0.9;
  color: #9ca3af;
  line-height: 30px;
  margin-bottom: 30px;
}
.color-co {
  color: #f26969;
}
.color-co2 {
  color: white;
}
.stats {
  display: flex;
  gap: 15px;
}
.stat-box {
  width: 33%;
  height: 110px;
  background: #111022;
  border-radius: 10px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.stat-box h3 {
  font-size: 1.4rem;
  color: white;
  margin-bottom: 5px;
}
.stat-box p {
  font-size: 16px;
  color: #9ca3af;
}
/* الكنترول */
.controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
}
.controls button {
  background: #111022;
  border: none;
  color: #fff;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}
.controls button:hover {
  background: #0152bd;
}
.dots {
  display: flex;
  gap: 8px;
}
.dots span {
  width: 8px;
  height: 8px;
  background: #9ca3af;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}
.dots span.active {
  background: linear-gradient(90deg, #0152bd, #00d4ff);
}
@media (max-width: 768px) {
  .impact {
    padding: 50px 0;
    background-size: 100%;
    background-position: left 60%;
  }
  .impact .section-title {
    font-size: 30px;
  }
  .impact .section-subtitle {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .impact-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .impact-card {
    padding: 0px;
  }
  .impact-card-title {
    font-size: 16px;
    text-align: center;
    margin-bottom: 30px;
  }
  .impact-item {
    padding: 20px;
  }
  .impact-item i {
    font-size: 20px;
    margin-right: 5px;
  }
  .impact-text {
    margin-left: 5px;
    font-size: 14px;
  }
  .impact-number {
    font-size: 12px;
  }
  .slider-card {
    padding: 20px;
  }
  .feature {
    margin-bottom: 15px;
  }
  .feature i {
    font-size: 30px;
  }
  .feature-text p {
    font-size: 14px;
  }
  .feature-text h3 {
    font-size: 18px;
  }
  .co-box {
    font-size: 12px;
    line-height: 20px;
  }
  .stat-box {
    height: 90px;
  }
  .stat-box h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .stat-box p {
    font-size: 10px;
  }
  .controls button {
    height: 40px;
    width: 40px;
    font-size: 12px;
  }
}
/* **************************************************************************************** */
.why-bti-section {
  width: 100%;
  padding: 80px 0px;
  position: relative;
  z-index: 1;
  overflow: visible;
}
.why-bti-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, #111022, transparent 60%),
    radial-gradient(circle at 80% 70%, #11102280, transparent 60%),
    radial-gradient(circle at 50% 90%, #0d00ff34, transparent 70%),
    linear-gradient(135deg, #111022, #b623232c, #c300ff34);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.why-bti-section::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(
    to left,
    transparent,
    #1110229f,
    #0056b3,
    #1110229f,
    transparent
  );
  pointer-events: none;
  z-index: 0;
}
.why-bti-title {
  margin-bottom: 10px;
  color: #fff;
  font-size: 60px;
  text-align: center;
}
.why-bti-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 50px;
}

.why-bti-features {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.why-bti-card {
  padding: 25px;
  border-radius: 12px;
  width: 30%;
  transition: 0.4s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  background-color: rgba(26, 26, 46, 0.36);
  border-right: 1px solid #0152bd;
}
.why-bti-card i {
  font-size: 2rem;
  color: white;
  border-radius: 10px;
  margin-bottom: 15px;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #0152bd, #00f2fe);
}
.why-bti-card:hover {
  transform: translateY(-8px);
}
.why-bti-card h3 {
  font-size: 18px;
  color: white;
  margin-bottom: 10px;
}
.why-bti-card p {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 10px;
}
.why-bti-counters-title {
  text-align: center;
  font-size: 25px;
  margin-bottom: 50px;
  color: white;
}
.why-bti-counters {
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.why-bti-counter-item {
  text-align: center;
  color: white;
}
.why-bti-counter-item i {
  font-size: 35px;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin: auto;
  background: linear-gradient(90deg, #0152bd, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  background-color: rgba(26, 26, 46, 0.36);
}
.why-bti-counter {
  font-size: 25px;
  font-weight: bold;
  background: linear-gradient(90deg, #0152bd, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.why-bti-counter-item p {
  font-size: 14px;
  color: #ddd;
}
.why-bti-cta {
  text-align: center;
  margin: auto;
  padding: 40px;
  max-width: 600px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(90deg, #0152bd, #00d4ff);
}
.why-bti-cta h3 {
  color: white;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 15px;
}
.why-bti-cta p {
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
}
.why-bti-btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  background: #ffffff;
  color: #0152bd;
  font-weight: bold;
  transition: 0.4s;
  text-decoration: none;
}
.why-bti-btn:hover {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .why-bti-section {
    padding: 50px 0px;
  }
  .why-bti-title {
    font-size: 20px;
    line-height: 32px;
  }
  .why-bti-subtitle {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .why-bti-features {
    margin-bottom: 50px;
  }
  .why-bti-card {
    width: 100%;
  }
  .why-bti-card i {
    font-size: 22px;
    height: 40px;
    width: 40px;
  }
  .why-bti-card h3 {
    font-size: 16px;
  }
  .why-bti-card p {
    font-size: 14px;
  }
  .why-bti-counters-title {
    font-size: 16px;
  }
  .why-bti-counters {
    gap: 10px;
    margin-bottom: 60px;
  }
  .why-bti-counter-item {
    width: 45%;
  }
  .why-bti-counter-item i {
    font-size: 22px;
    height: 40px;
    width: 40px;
  }
  .why-bti-counter {
    font-size: 16px;
  }
  .why-bti-counter-item p {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .why-bti-cta {
    padding: 30px;
    width: 100%;
  }
  .why-bti-cta h3 {
    font-size: 18px;
  }
  .why-bti-cta p {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .why-bti-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}
/* **************************************************************************************** */
.randomSection {
  width: 100%;
  padding: 80px 0px;
  position: relative;
  z-index: 1;
  overflow: visible;
}
.randomSection::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, #111022, transparent 60%),
    radial-gradient(circle at 80% 70%, #11102280, transparent 60%),
    radial-gradient(circle at 50% 90%, #0d00ff34, transparent 70%),
    linear-gradient(135deg, #111022, #b623232c, #c300ff34);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  transform: scaleY(-1);
}
.randomSection::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(
    to left,
    transparent,
    #1110229f,
    #0056b3,
    #1110229f,
    transparent
  );
  pointer-events: none;
  z-index: 0;
}
.randomSection {
  text-align: center;
}
.section-title-r {
  margin-bottom: 10px;
  color: #fff;
  font-size: 60px;
  text-align: center;
}
.section-text {
  text-align: center;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 80px;
}
/* ******************************** */
#futureContent {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: auto;
  margin-bottom: 80px;
}
.box {
  width: 150px;
  height: 100px;
  padding: 5px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  border-radius: 8px;
  z-index: 2; /* فوق الخط */
  transform: scale(0); /* يبدأ صغير */
}
.left-box {
  order: 1;
  background-color: #70161c91;
  border: 2px solid #70161c;
}
.right-box {
  order: 3;
  background: linear-gradient(90deg, #0152bd, #00d4ff);
}
.line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 70%;
  margin: auto;
  height: 12px;
  z-index: 1;
  transform: translateY(-50%);
}
.line-fill {
  border-radius: 50px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #127ace;
}
.line-label {
  position: absolute;
  top: -60px;
  left: 60%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #0152bd, #00d4ff);
  color: white;
  padding: 10px 15px;
  border-radius: 4px;
  font-size: 0.8rem;
  transform-origin: center;
  scale: 0; /* يبدأ صغير */
}
/* ****************************** */
.action-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #0152bd, #00d4ff);
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.4s ease, background 0.4s ease;
}
.action-button:hover {
  transform: scale(1.1);
}
.icon-left,
.icon-right {
  display: inline-block;
}
.button-text {
  margin-top: 15px;
  font-size: 1rem;
  color: #555;
}
@media (max-width: 768px) {
  .randomSection {
    padding: 50px 0px;
  }
  .section-title-r {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .section-text {
    font-size: 12px;
    margin-bottom: 50px;
  }
  #futureContent {
    margin-bottom: 50px;
  }
  .box {
    width: 80px;
    height: 60px;
    font-size: 12px;
  }
  .line {
    width: 35%;
    height: 11%;
  }
  .line-label {
    top: -40px;
    left: 30%;
    width: 60px;
    padding: 5px 5px;
    font-size: 10px;
  }
  .action-button {
    padding: 12px 20px;
    font-size: 14px;
  }
  .button-text {
    font-size: 12px;
  }
}
/* **************************************************************************************** */
.our-clients {
  width: 100%;
  padding: 80px 0;
  position: relative;
  z-index: 1;
  overflow: visible;
}
.our-clients::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, #111022, transparent 60%),
    radial-gradient(circle at 80% 70%, #11102280, transparent 60%),
    radial-gradient(circle at 50% 90%, #0d00ff34, transparent 70%),
    linear-gradient(135deg, #111022, #b623232c, #c300ff34);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.our-clients::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(
    to left,
    transparent,
    #1110229f,
    #0056b3,
    #1110229f,
    transparent
  );
  pointer-events: none;
  z-index: 0;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: center;
}
.logol {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 5px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}
.logol img {
  width: 100%;
  object-fit: contain;
}
.logol:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .our-clients {
    padding: 50px 0;
  }
  .clients-grid {
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  }
}
/* **************************************************************************************** */
.contact-section {
  width: 100%;
  padding: 80px 0;
  position: relative;
  z-index: 1;
  overflow: visible;
}
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, #111022, transparent 60%),
    radial-gradient(circle at 80% 70%, #11102280, transparent 60%),
    radial-gradient(circle at 50% 90%, #0d00ff34, transparent 70%),
    linear-gradient(135deg, #111022, #b623232c, #c300ff34);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  transform: scaleY(-1);
}
.contact-section::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(
    to left,
    transparent,
    #1110229f,
    #0056b3,
    #1110229f,
    transparent
  );
  pointer-events: none;
  z-index: 0;
}
.contact-title {
  margin-bottom: 10px;
  color: #fff;
  font-size: 60px;
  text-align: center;
}
.contact-description {
  text-align: center;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 80px;
}
.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
}
/* القسم الأيمن */
.contact-info {
  flex: 1 1 45%;
}
.contact-info h3 {
  font-size: 25px;
  margin-bottom: 10px;
  color: white;
}
.contact-info p {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 30px;
}
.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
.info-item i {
  font-size: 1.8rem;
  margin-right: 25px;
  color: white;
}
.info-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: white;
}
.info-item p {
  font-size: 16px;
  color: #ddd;
}
.info-item p a {
  text-decoration: none;
  color: #ddd;
  transition: 0.4s;
}
.info-item p a:hover {
  color: #0056b3;
}
.faq-box {
  border: 1px solid white;
  padding: 25px;
  border-radius: 8px;
  margin-top: 10px;
}
.faq-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: white;
}
.faq-box p {
  font-size: 16px;
  color: #ddd;
}
/* الفورم */
.contact-form {
  flex: 1 1 45%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  background-color: rgba(26, 26, 46, 0.36);
  padding: 35px;
  border-radius: 15px;
  border-top: 1px solid #0152bd;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: 0;
  font-size: 14px;
  color: #ddd;
  background-color: #374151;
}
.contact-form input {
  height: 50px;
}
.contact-form textarea {
  height: 200px;
}
.contact-form button {
  background: linear-gradient(90deg, #0152bd, #00f2fe);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.4s ease, background 0.4s ease;
}
.contact-form button:hover {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .contact-section {
    padding: 50px 0;
  }
  .contact-title {
    font-size: 30px;
  }
  .contact-description {
    font-size: 12px;
    margin-bottom: 40px;
  }
  .contact-content {
    gap: 30px;
    flex-direction: column-reverse;
  }
  .contact-info h3 {
    font-size: 20px;
  }
  .contact-info p {
    font-size: 14px;
  }
  .info-item i {
    font-size: 25px;
    margin-right: 20px;
  }
  .info-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .info-item p {
    font-size: 14px;
  }
  .faq-box {
    padding: 20px;
  }
  .faq-box h4 {
    font-size: 16px;
  }
  .faq-box p {
    font-size: 14px;
  }
  .contact-form {
    padding: 15px;
  }
  .contact-form button {
    font-size: 14px;
  }
}
/* **************************************************************************************** */
.footer-section {
  background: #0f1525;
  color: #fff;
  font-family: sans-serif;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  gap: 50px;
  padding: 60px 0;
}
/* القسم الأول: الشعار والنص + السوشيال */
.footer-col.about {
  flex: 1 1 500px;
}
.footer-logo {
  width: 100px;
  margin-bottom: 20px;
}
.footer-desc {
  margin-bottom: 20px;
  line-height: 25px;
  font-size: 16px;
  color: #ddd;
}
.footer-social a {
  color: #127ace;
  font-size: 1.5rem;
  margin-right: 15px;
  transition: 0.4s;
}
.footer-social a:hover {
  color: #1da1f2;
}
/* القسم الثاني: Quick Links */
.footer-col.links {
  flex: 1 1 200px;
}
.footer-col.links h4 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}
.footer-col.links ul {
  list-style: none;
  padding: 0;
}
.footer-col.links ul li {
  margin-bottom: 10px;
}
.footer-col.links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}
.footer-col.links ul li a:hover {
  color: #127ace;
}
/* القسم الثالث: Vision + CTA */
.footer-col.vision {
  flex: 1 1 200px;
}
.footer-col.vision h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  background: linear-gradient(90deg, #0152bd, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-col.vision p {
  margin-bottom: 15px;
  line-height: 25px;
  font-size: 16px;
  color: #ddd;
}
.cta-box {
  background: linear-gradient(90deg, #0152bd, #00d4ff);
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  margin-top: 10px;
}
.cta-box p {
  margin-bottom: 10px;
  font-weight: bold;
}
.cta-box .cta-link {
  display: inline-block;
  padding: 8px 15px;
  background: #0f1525;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}
.cta-box .cta-link:hover {
  transform: scale(1.1);
}
/* الفوتر السفلي */
.footer-bottom {
  margin-top: 40px;
  text-align: center;
  border-top: 1px solid #1a1f35;
  color: #888;
  font-size: 0.9rem;
  padding: 40px 0;
}
/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    gap: 30px;
    padding: 30px 0;
  }
  .footer-desc {
    font-size: 14px;
  }
  .footer-col.vision p {
    font-size: 14px;
  }
  .cta-box .cta-link {
    font-size: 14px;
  }
  .footer-bottom {
    margin-top: 0px;
    line-height: 20px;
    font-size: 10px;
    padding: 20px 0;
  }
}
/* **************************************************************************************** */
