
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap');
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: "Cairo", sans-serif;
      background: radial-gradient(circle at 30% 20%, #111, #000);
      color: #fff;
      overflow-x: hidden;
    }

    :root {
      --red: #e50914;
      --glow: 0 0 20px rgba(229,9,20,0.5);
    }


    body {
      background-color: #0a0a0a;
      color: #fff;
      font-family: "Cairo", sans-serif;
    }

  /* ===== Hero Section ===== */
  .about-hero {
      position: relative;
      background: linear-gradient(to bottom, rgba(0,0,0,0.7), #000), url('assets/img/about-bg.jpg') center/cover no-repeat;
      padding: 140px 20px;
      text-align: center;
      overflow: hidden;
    }
    .about-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 50%, rgba(229,9,20,0.15), transparent 70%);
      animation: pulse 5s infinite alternate;
    }
    @keyframes pulse {
      from { opacity: 0.3; }
      to { opacity: 0.8; }
    }

  /* ===== About Content ===== */
.about-content {
    max-width: 1200px;
    margin: 100px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 0 40px;
    color: #ddd;
    position: relative;
    z-index: 2;
  }
  
  /* Cinematic fade-in animation */
  .about-content {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
  }
  .about-content.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  .about-text h2 {
    font-size: 2.5rem;
    color: var(--red);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
  }
  
  .about-text p {
    line-height: 1.9;
    font-size: 1.05rem;
    color: #ccc;
    margin-bottom: 15px;
  }
  
  /* Image with reflection cinematic effect */
  .about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.15), 0 0 60px rgba(255, 0, 0, 0.1);
    transform: scale(1);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
  }
  .about-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.3), 0 0 80px rgba(255, 0, 0, 0.25);
  }
  
  /* ===== Responsive ===== */
  @media (max-width: 992px) {
    .about-content {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 40px;
      padding: 0 20px;
    }
    .about-text h2 {
      font-size: 2rem;
    }
    .about-image img {
      max-width: 90%;
      margin: 0 auto;
    }
  }
  
  @media (max-width: 600px) {
    .about-text h2 {
      font-size: 1.7rem;
    }
    .about-text p {
      font-size: 0.95rem;
    }
    .about-content {
      margin: 60px auto;
    }
  }
  

    
 /* ===== Sections ===== */
 .section {
      padding: 100px 10%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 40px;
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 1s ease, transform 1s ease;
    }
    .section.show {
      opacity: 1;
      transform: translateY(0);
    }
    .section.dark { background: #0a0a0a; }

    h2 {
      width: 100%;
      text-align: center;
      font-size: 2.2rem;
      margin-bottom: 50px;
      color: var(--red);
      text-shadow: var(--glow);
      position: relative;
    }

    /* ===== Features & Values ===== */
    .features, .values, .team {
      display: grid;
      gap: 30px;
      width: 100%;
    }
    .features { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
    .values { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
    .team { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); justify-items: center; }

    .feature, .member, .value-box {
      background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 14px;
      text-align: center;
      padding: 35px 25px;
      position: relative;
      transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.3s ease;
      overflow: hidden;
    }
    .feature:hover, .member:hover, .value-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 0 40px rgba(229,9,20,0.4);
      background: linear-gradient(145deg, rgba(229,9,20,0.1), rgba(255,255,255,0.05));
    }
    .feature i, .value-box i {
      font-size: 2.2rem;
      color: var(--red);
      margin-bottom: 15px;
      text-shadow: var(--glow);
    }
    .feature h3, .value-box h3 {
      color: #fff;
      font-weight: 600;
      font-size: 1.1rem;
    }

    /* ===== Cinematic Glow Lines ===== */
    .feature::after, .value-box::after {
      content: "";
      position: absolute;
      top: -100%;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(180deg, rgba(229,9,20,0.25), transparent);
      transition: top 0.5s ease;
    }
    .feature:hover::after, .value-box:hover::after {
      top: 100%;
    }

    /* ===== Team ===== */
    .member img {
      width: 100%;
      border-radius: 12px;
      margin-bottom: 10px;
      filter: grayscale(20%) contrast(110%);
      transition: filter 0.3s ease;
    }
    .member:hover img { filter: grayscale(0%) contrast(130%); }

    /* ===== Animations ===== */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }

@media (max-width:768px) {
  .about-content { flex-direction: column; text-align: center; }
}


/* ===== Clients Section ===== */
.clients {
  text-align: center;
  background: linear-gradient(145deg, #050505, #0b0b0b);
  overflow: hidden;
  position: relative;
}

.clients h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 20px rgba(229,9,20,0.4);
}

.clients-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 40px 0;
}

.clients-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  animation: scrollClients 25s linear infinite;
}

.clients-track img {
  width: 120px;
  opacity: 0.7;
  filter: grayscale(80%) brightness(0.9);
  transition: all 0.3s ease;
}
.clients-track img:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1.1) drop-shadow(0 0 10px rgba(229,9,20,0.5));
}

/* ===== Animation Keyframes ===== */
@keyframes scrollClients {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .clients-track {
    gap: 40px;
    animation: scrollClientsMobile 30s linear infinite;
  }

  @keyframes scrollClientsMobile {
    0% { transform: translateX(0); }
    100% { transform: translateX(-60%); }
  }
}








/* Preloader full screen */
#preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a; /* خلفية داكنة سينمائية */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.8s ease;
  }
  
  /* Preloader full screen */
  #preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a); /* gradient سينمائي */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.8s ease;
  }
  
  /* Floating particles effect (سينمائي) */
  #preloader::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: moveStars 20s linear infinite;
    opacity: 0.5;
    top: -50%;
    left: -50%;
  }
  
  /* Logo animation */
  .preloader-logo {
    width: 120px;
    height: auto;
    margin-bottom: 40px;
    animation: fadeScale 1.2s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 15px rgba(255, 50, 50, 0.7));
    z-index: 2;
  }
  
  /* Dots container */
  .dots {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    z-index: 2;
  }
  
  /* Individual dots */
  .dots span {
    width: 16px;
    height: 16px;
    background: var(--red);
    border-radius: 50%;
    animation: bounceGlow 0.8s infinite alternate;
    box-shadow: 0 0 10px rgba(255, 50, 50, 0.6);
  }
  
  /* Delay each dot differently */
  .dots span:nth-child(1) { animation-delay: 0s; }
  .dots span:nth-child(2) { animation-delay: 0.2s; }
  .dots span:nth-child(3) { animation-delay: 0.4s; }
  
  /* Keyframes for dots */
  @keyframes bounceGlow {
    0% { transform: translateY(0) scale(1); box-shadow: 0 0 10px rgba(255,50,50,0.4); }
    50% { transform: translateY(-18px) scale(1.2); box-shadow: 0 0 20px rgba(255,50,50,0.8); }
    100% { transform: translateY(0) scale(1); box-shadow: 0 0 10px rgba(255,50,50,0.4); }
  }
  
  /* Keyframes for logo */
  @keyframes fadeScale {
    0% { opacity: 0.6; transform: scale(0.85); }
    100% { opacity: 1; transform: scale(1.15); }
  }
  
  /* Floating stars background animation */
  @keyframes moveStars {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-50%, -50%); }
  }
  
  /* Hide preloader smoothly */
  #preloader.hide {
    opacity: 0;
    pointer-events: none;
  }