   :root {
      --primary: #D4AF37; /* ذهبي فاخر */
      --primary-dark: #B38B2D;
      --secondary: #1A237E; /* أزرق ملكي */
      --dark: #0A0F29;
      --darker: #050716;
      --light: #F5F5F5;
      --gray: #A3A3A3;
      --success: #10B981;
      --card-bg: rgba(255, 255, 255, 0.05);
      --card-border: rgba(255, 255, 255, 0.1);
      --gold-gradient: linear-gradient(135deg, #D4AF37, #F9E076);
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    
    body {
      font-family: 'Tajawal', sans-serif;
      background-color: var(--darker);
      color: var(--light);
      scroll-behavior: smooth;
      overflow-x: hidden;
      line-height: 1.6;
       padding-top: 110px; /* يتناسب مع ارتفاع الهيدر الافتراضي */
}
    
    
    /* التخصيص العام */
    .container {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 30px;
    }
    
    section {
      padding: 100px 0;
      position: relative;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-weight: 700;
      line-height: 1.3;
    }
    
    p {
      line-height: 1.8;
      color: var(--gray);
      font-size: 1.1rem;
    }
    
    a {
      text-decoration: none;
      color: inherit;
      transition: all 0.3s ease;
    }
    
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    
    /* تأثيرات التحديد */
    ::selection {
      background-color: var(--primary);
      color: var(--darker);
    }
    
    /* شريط التقدم */
    .progress-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: transparent;
      z-index: 1000;
    }
    
    .progress-bar {
      height: 100%;
      background: var(--gold-gradient);
      width: 0%;
      transition: width 0.1s ease;
    }
    
    /* زر العودة للأعلى */
    .back-to-top {
      position: fixed;
      bottom: 40px;
      right: 40px;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--gold-gradient);
      color: var(--darker);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      box-shadow: 0 5px 25px rgba(212, 175, 55, 0.4);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 999;
      border: none;
      cursor: pointer;
    }
    
    .back-to-top.active {
      opacity: 1;
      visibility: visible;
    }
    
    .back-to-top:hover {
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
    }
    
    /* الشريط العلوي */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
    padding: 30px 0 !important; /* تقليل الحشو الداخلي */
      background-color: rgba(10, 15, 41, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      z-index: 100;
      transition: all 0.4s ease;
    }
    
    header.scrolled {
      padding: 15px 0;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .logo {
      display: flex;
      align-items: center;
      gap: 15px;
      transition: transform 0.3s ease;
    }
    
    .logo:hover {
      transform: translateX(5px);
    }
    
    .logo-img {
        width: 40px !important;
    height: 40px !important;
      border-radius: 12px;
      object-fit: cover;
      border: 2px solid rgba(212, 175, 55, 0.6);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .logo-text {
      display: flex;
      flex-direction: column;
    }
    
    .logo-text .title {
      font-weight: 800;
  font-size: 1rem !important;
    line-height: 1.3;
          color: var(--primary);
      letter-spacing: -0.5px;
    }
    
    .logo-text .subtitle {
    font-size: 0.65rem !important;
      color: var(--gray);
      margin-top: 3px;
    }
    
    /* قائمة التنقل */
    nav ul {
      display: flex;
      list-style: none;
      gap: 35px;
    }
    
    nav ul li a {
      position: relative;
      font-weight: 600;
      color: var(--light);
      padding: 8px 0;
      font-size: 1.05rem;
    }
    
    nav ul li a::after {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      width: 0;
      height: 2px;
      background: var(--gold-gradient);
      transition: width 0.3s ease;
    }
    
    nav ul li a:hover::after,
    nav ul li a.active::after {
      width: 100%;
      left: 0;
    }
    
    nav ul li a:hover {
      color: var(--primary);
    }
    
    /* أزرار التنقل */
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
       padding: 10px 15px !important;
    font-size: 0.9rem !important;
      border-radius: 10px;
      font-weight: 700;
      transition: all 0.4s ease;
      gap: 10px;
      cursor: pointer;
      border: none;
    }
    
    .btn-primary {
      background: var(--gold-gradient);
      color: var(--darker);
      box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
      position: relative;
      overflow: hidden;
    }
    
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    }
    
    .btn-outline {
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(5px);
    }
    
    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.15);
      border-color: rgba(212, 175, 55, 0.4);
    }
    
    /* قائمة الجوال */
    .mobile-menu-btn {
      display: none;
      width: 40px !important;
    height: 40px !important;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 101;
      transition: all 0.3s ease;
    }
    
    .mobile-menu-btn:hover {
      background: rgba(255, 255, 255, 0.15);
    }
    
    .mobile-menu-btn i {
      font-size: 1.3rem;
      color: var(--primary);
    }
    
    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 350px;
      height: 100vh;
      background: var(--dark);
      border-left: 1px solid rgba(255, 255, 255, 0.1);
      padding: 100px 30px 30px;
      transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 99;
      overflow-y: auto;
    }
    
    .mobile-menu.active {
      right: 0;
    }
    
    .mobile-menu ul {
      display: flex;
      flex-direction: column;
      gap: 15px;
      list-style: none;
    }
    
    .mobile-menu ul li a {
      display: block;
      padding: 15px 20px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.05);
      transition: all 0.3s ease;
      font-size: 1.1rem;
    }
    
    .mobile-menu ul li a:hover {
      background: rgba(212, 175, 55, 0.15);
      color: var(--primary);
      transform: translateX(-5px);
    }
    
    /* Overlay for mobile menu */
    .mobile-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(5px);
      z-index: 98;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
    }
    
    .mobile-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    
    /* قسم الهيرو */
  .hero {
  position: relative;
  padding-bottom: 150px;
  overflow: hidden;
  background: linear-gradient(rgb(0 0 0 / 76%), rgb(0, 2, 8)), url(img/law.jpg); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* نضمن بقاء تأثيرات الجسيمات فوق الخلفية */
.particles {
  z-index: 1;
}
    
    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15), transparent 40%),
                  radial-gradient(circle at 80% 70%, rgba(26, 35, 126, 0.15), transparent 40%);
      z-index: -1;
    }
    
    .hero-content {
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }
    
    .hero-img-container {
      position: relative;
      display: inline-block;
      margin-bottom: 30px;
    }
    
    .hero-img {
      width: 150px;
      height: 150px;
      border-radius: 25px;
      object-fit: cover;
      border: 3px solid rgba(212, 175, 55, 0.6);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
      transition: transform 0.5s ease;
    }
    
    .hero-img:hover {
      transform: rotate(5deg) scale(1.05);
    }
    
    .hero-badge {
      position: absolute;
      bottom: -10px;
      right: -10px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--gold-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--darker);
      font-size: 1rem;
      border: 3px solid var(--dark);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      animation: pulse 2s infinite;
    }
    
    .hero-title {
      font-size: 4rem;
      margin: 30px 0 20px;
      color: var(--light);
      text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      line-height: 1.2;
      background: linear-gradient(to right, #D4AF37, #F9E076);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-fill-color: transparent;
    }
    
    .hero-subtitle {
      font-size: 1.8rem;
      color: var(--primary);
      margin-bottom: 25px;
      font-weight: 600;
    }
    
    .hero-description {
      font-size: 1.2rem;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--primary);
      font-weight: 700;
      font-size: 1.1rem;
      background: rgba(212, 175, 55, 0.1);
      padding: 12px 25px;
      border-radius: 50px;
      border: 1px solid rgba(212, 175, 55, 0.3);
    }
    
    .hero-tag .dot {
      display: inline-block;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--gold-gradient);
      animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
      0% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.1); opacity: 0.7; }
      100% { transform: scale(1); opacity: 1; }
    }
    
    .hero-actions {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 50px;
      flex-wrap: wrap;
    }
    

    /* معلومات الشركة الرسمية */
.company-info {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  font-size: 0.95rem;
}

.company-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 20px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.company-info-item:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
}

.company-info-item i {
  color: var(--primary);
}

.company-info-item a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.company-info-item a:hover {
  text-decoration: underline;
  color: #F9E076;
}

    
    /* شريط العملات */
    .crypto-ticker {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 15px;
      padding: 18px;
      overflow: hidden;
      position: relative;
      max-width: 1000px;
      margin: 0 auto;
      backdrop-filter: blur(5px);
    }
    
    .crypto-ticker::before,
    .crypto-ticker::after {
      content: '';
      position: absolute;
      top: 0;
      width: 100px;
      height: 100%;
      z-index: 2;
    }
    
    .crypto-ticker::before {
      left: 0;
      background: linear-gradient(to right, var(--dark), transparent);
    }
    
    .crypto-ticker::after {
      right: 0;
      background: linear-gradient(to left, var(--dark), transparent);
    }
    
    .ticker-content {
      display: flex;
      gap: 40px;
      animation: marquee 25s linear infinite;
    }
    
    .ticker-item {
      display: flex;
      align-items: center;
      gap: 12px;
      white-space: nowrap;
      font-size: 1.1rem;
      font-weight: 500;
    }
    
    .ticker-item i {
      color: var(--primary);
      font-size: 1.2rem;
    }
    
    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    
    /* قسم الخدمات */
    .section-header {
      text-align: center;
      margin-bottom: 80px;
    }
    
    .section-subtitle {
      color: var(--primary);
      font-weight: 700;
      margin-bottom: 15px;
      display: inline-block;
      font-size: 1.1rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      background: rgba(212, 175, 55, 0.1);
      padding: 8px 20px;
      border-radius: 50px;
      border: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .section-title {
      font-size: 3rem;
      color: var(--light);
      margin-bottom: 20px;
      line-height: 1.3;
    }
    
    .section-description {
      max-width: 800px;
      margin: 0 auto;
      font-size: 1.2rem;
    }
    
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
    }
    
    .service-card {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 20px;
      padding: 40px;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(5px);
    }
    
    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: var(--gold-gradient);
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    
    .service-card:hover::before {
      opacity: 1;
    }
    
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      border-color: rgba(212, 175, 55, 0.4);
    }
    
    .service-icon {
      width: 70px;
      height: 70px;
      border-radius: 15px;
      background: rgba(26, 35, 126, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: var(--primary);
      margin-bottom: 25px;
      transition: all 0.4s ease;
    }
    
    .service-card:hover .service-icon {
      transform: rotate(10deg) scale(1.1);
      background: rgba(212, 175, 55, 0.1);
      border-color: rgba(212, 175, 55, 0.4);
    }
    
    .service-badge {
      position: absolute;
      top: 25px;
      left: 25px;
      background: rgba(212, 175, 55, 0.15);
      color: var(--primary);
      padding: 5px 15px;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 700;
      border: 1px solid rgba(212, 175, 55, 0.3);
    }
    
    .service-title {
      font-size: 1.5rem;
      margin-bottom: 20px;
      color: var(--light);
    }
    
    .service-description {
      margin-bottom: 25px;
      font-size: 1.1rem;
    }
    
    .service-features {
      margin-bottom: 25px;
    }
    
    .service-feature {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
      font-size: 1rem;
    }
    
    .service-feature i {
      color: var(--primary);
      font-size: 0.8rem;
    }
    
    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--primary);
      font-weight: 700;
      font-size: 1rem;
      transition: all 0.3s ease;
    }
    
    .service-link i {
      transition: transform 0.3s ease;
    }
    
    .service-link:hover {
      color: #F9E076;
    }
    
    .service-link:hover i {
      transform: translateX(-8px);
    }
    
    .service-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      margin-top: 60px;
    }
    
    .stat-card {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 15px;
      padding: 25px;
      text-align: center;
      transition: all 0.4s ease;
      backdrop-filter: blur(5px);
    }
    
    .stat-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
      border-color: rgba(212, 175, 55, 0.3);
    }
    
    .stat-number {
      font-size: 3rem;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 5px;
      background: linear-gradient(to right, #D4AF37, #F9E076);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-fill-color: transparent;
    }
    
    .stat-label {
      font-size: 1rem;
      color: var(--gray);
    }
    
    /* قسم عن الشركة */
    .about {
      background: linear-gradient(to bottom, var(--dark), var(--darker));
      position: relative;
      overflow: hidden;
    }
    
    .about::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 100%;
      height: 200%;
      background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
      transform: rotate(30deg);
      z-index: 0;
    }
    
    .about-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    
    .about-content {
      position: relative;
    }
    
    .about-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 40px;
    }
    
    .feature-card {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 15px;
      padding: 25px;
      transition: all 0.4s ease;
      backdrop-filter: blur(5px);
    }
    
    .feature-card:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }
    
    .feature-icon {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--primary);
      font-weight: 700;
      margin-bottom: 15px;
      font-size: 1.1rem;
    }
    
    .feature-icon i {
      font-size: 1.4rem;
    }
    
    .feature-description {
      font-size: 1rem;
    }
    
    .about-image {
      position: relative;
      border-radius: 25px;
      overflow: hidden;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
      height: 600px;
    }
    
    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease;
    }
    
    .about-image:hover img {
      transform: scale(1.05);
    }
    
    .image-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 50%;
      background: linear-gradient(to top, var(--dark), transparent);
    }
    
    .image-badge {
      position: absolute;
      bottom: 30px;
      left: 30px;
      background: rgba(10, 15, 41, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 15px;
      padding: 15px;
      max-width: 85%;
      backdrop-filter: blur(10px);
      transition: all 0.4s ease;
    }
    
    .about-image:hover .image-badge {
      transform: translateY(-10px);
    }
    
    .image-badge-content {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    
    .image-badge-icon {
      width: 60px;
      height: 60px;
      border-radius: 12px;
      background: rgba(26, 35, 126, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: var(--primary);
      flex-shrink: 0;
    }
    
    .image-badge-text h4 {
      font-size: 1.2rem;
      margin-bottom: 8px;
      color: var(--light);
    }
    
    .image-badge-text p {
      font-size: 0.9rem;
    }
    
    .image-certificate {
      position: absolute;
      top: 30px;
      right: 30px;
      background: rgba(10, 15, 41, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 15px;
      padding: 15px;
      max-width: 95%;
      backdrop-filter: blur(10px);
      transition: all 0.4s ease;
    }
    
    .about-image:hover .image-certificate {
      transform: translateY(10px);
    }
    
    .certificate-content {
      display: flex;
      align-items: flex-start;
      gap: 15px;
    }
    
    .certificate-icon {
      width: 50px;
      height: 50px;
      border-radius: 10px;
      background: rgba(212, 175, 55, 0.15);
      border: 1px solid rgba(212, 175, 55, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: var(--primary);
      flex-shrink: 0;
    }
    
    .certificate-text h4 {
      font-size: 1rem;
      margin-bottom: 5px;
      color: var(--light);
    }
    
    .certificate-text p {
      font-size: 0.8rem;
    }
    
    /* قسم آلية العمل */
    .process {
      background: var(--card-bg);
      border-top: 1px solid var(--card-border);
      border-bottom: 1px solid var(--card-border);
      position: relative;
      overflow: hidden;
    }
    
    .process::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at center, rgba(26, 35, 126, 0.05) 0%, transparent 70%);
      z-index: 0;
    }
    
    .timeline {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
      z-index: 1;
    }
    
    .timeline::before {
      content: '';
      position: absolute;
      top: 0;
      right: 40px;
      width: 3px;
      height: 100%;
      background: var(--gold-gradient);
    }
    
    .timeline-item {
      position: relative;
      padding-right: 100px;
      padding-bottom: 50px;
    }
    
    .timeline-item:last-child {
      padding-bottom: 0;
    }
    
    .timeline-icon {
      position: absolute;
      top: 0;
      right: 25px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--secondary);
      border: 3px solid var(--dark);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 1.2rem;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
      z-index: 2;
      transition: all 0.4s ease;
    }
    
    .timeline-item:hover .timeline-icon {
      transform: scale(1.1) rotate(15deg);
      background: var(--gold-gradient);
      color: var(--darker);
    }
    
    .timeline-content {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 15px;
      padding: 30px;
      transition: all 0.4s ease;
      backdrop-filter: blur(5px);
      position: relative;
      overflow: hidden;
    }
    
    .timeline-content::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(212, 175, 55, 0.03), transparent);
      z-index: -1;
    }
    
    .timeline-item:hover .timeline-content {
      transform: translateY(-8px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
      border-color: rgba(212, 175, 55, 0.4);
    }
    
    .timeline-title {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: var(--light);
    }
    
    .timeline-description {
      font-size: 1.1rem;
    }
    
/* قسم الشركاء */
.partners {
  background: var(--card-bg);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 80px 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* شعارين في الصف */
  gap: 30px;
  align-items: center;
  margin-top: 50px;
}

.partner-card {
  background: rgba(255, 255, 255, 0.8); /* خلفية بيضاء شفافة */
  border: 2px solid #D4AF37; /* إطار ذهبي */
  border-radius: 12px;
  padding: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 180px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.partner-logo {
  max-width: 90%;
  max-height: 100px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.partner-card:hover .partner-logo {
  transform: scale(1.1);
}
.developer-credit {
  font-size: 14px;
  color: #777;
}

.gold-glow {
  color: #FFD700; /* اللون الذهبي الأساسي */
  text-decoration: none;
  font-weight: bold;

  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  display: inline-block;
}

.gold-glow:hover {
  color: #FFC000; /* لون ذهبي أكثر إشراقاً عند التحويم */
  text-shadow: 
    0 0 8px rgba(255, 215, 0, 0.8),
    0 0 15px rgba(255, 215, 0, 0.5),
    0 0 20px rgba(255, 215, 0, 0.3);
  transform: scale(1.02);
}

.gold-glow:active {
  transform: scale(0.98);
}

/* للشاشات الصغيرة */
@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
  
  .partner-card {
    height: 150px;
    padding: 20px;
  }
}    
    /* قسم ساعات العمل */
    .hours {
      position: relative;
      overflow: hidden;
    }
    
    .hours::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
      transform: rotate(45deg);
      z-index: 0;
    }
    
    .hours-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    
    .hours-content {
      position: relative;
    }
    
    .hours-list {
      list-style: none;
      margin-top: 30px;
    }
    
    .hours-list li {
      margin-bottom: 20px;
      font-size: 1.2rem;
      color: var(--light);
      display: flex;
      align-items: center;
      gap: 15px;
    }
    
    .hours-list li::before {
      content: '';
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--gold-gradient);
      display: inline-block;
    }
    
    .hours-image {
      border-radius: 25px;
      overflow: hidden;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
      height: 500px;
      position: relative;
    }
    
    .hours-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease;
    }
    
    .hours-image:hover img {
      transform: scale(1.05);
    }
    
    .hours-badge {
      position: absolute;
      bottom: 30px;
      right: 30px;
      background: rgba(10, 15, 41, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 15px;
      padding: 20px;
      backdrop-filter: blur(10px);
      transition: all 0.4s ease;
    }
    
    .hours-image:hover .hours-badge {
      transform: translateY(-10px);
    }
    
    .hours-badge-content {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    
    .hours-badge-icon {
      color: var(--primary);
      font-size: 1.5rem;
    }
    
    .hours-badge-text {
      font-size: 1rem;
    }
    
    /* قسم الاتصال */
    .contact {
      background: linear-gradient(to bottom, var(--dark), var(--darker));
      position: relative;
      overflow: hidden;
    }
    
    .contact::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 70% 30%, rgba(26, 35, 126, 0.1), transparent 50%);
      z-index: 0;
    }
    
    .contact-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      position: relative;
      z-index: 1;
    }
    
    .contact-info {
      position: relative;
    }
    
    .contact-methods {
      margin-top: 40px;
    }
    
    .contact-method {
      display: flex;
      align-items: flex-start;
      gap: 25px;
      margin-bottom: 35px;
    }
    
    .contact-icon {
      width: 60px;
      height: 60px;
      border-radius: 15px;
      background: rgba(26, 35, 126, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: var(--primary);
      flex-shrink: 0;
      transition: all 0.4s ease;
    }
    
    .contact-method:hover .contact-icon {
      transform: rotate(15deg) scale(1.1);
      background: rgba(212, 175, 55, 0.2);
      border-color: rgba(212, 175, 55, 0.4);
    }
    
    .contact-details h4 {
      font-size: 1.3rem;
      margin-bottom: 8px;
      color: var(--light);
    }
    
    .contact-details a {
      display: block;
      margin-bottom: 5px;
      color: var(--gray);
      transition: all 0.3s ease;
    }
    
    .contact-details a:hover {
      color: var(--primary);
      transform: translateX(5px);
    }
    
    .contact-details p {
      font-size: 1rem;
    }
    
    .social-links {
      display: flex;
      gap: 20px;
      margin-top: 40px;
    }
    
    .social-link {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gray);
      font-size: 1.2rem;
      transition: all 0.4s ease;
      background: rgba(255, 255, 255, 0.05);
    }
    
    .social-link:hover {
      background: rgba(212, 175, 55, 0.15);
      color: var(--primary);
      transform: translateY(-5px) scale(1.1);
      border-color: rgba(212, 175, 55, 0.4);
      box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    }
    
    /* نموذج الاتصال */
    .contact-form {
      background: rgba(10, 15, 41, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 25px;
      padding: 40px;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(10px);
      transition: all 0.4s ease;
    }
    
    .contact-form:hover {
      transform: translateY(-5px);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    }
    
    .form-header {
      margin-bottom: 30px;
    }
    
    .form-title {
      font-size: 1.8rem;
      margin-bottom: 15px;
      color: var(--light);
    }
    
    .form-description {
      margin-bottom: 0;
      font-size: 1.1rem;
    }
    
    .form-group {
      margin-bottom: 25px;
    }
    
    .form-row {
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    
    .form-label {
      display: block;
      margin-bottom: 10px;
      font-weight: 600;
      color: var(--light);
      font-size: 1.1rem;
    }
    
    .form-control {
      width: 100%;
      padding: 15px 20px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 12px;
      color: var(--light);
      transition: all 0.3s ease;
      font-size: 1rem;
      font-family: 'Tajawal', sans-serif;
    }
    
    .form-control:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
      background: rgba(255, 255, 255, 0.12);
    }
    
    textarea.form-control {
      min-height: 150px;
      resize: vertical;
    }
    
    .form-submit {
      width: 100%;
      padding: 18px;
      border-radius: 12px;
      background: var(--gold-gradient);
      color: var(--darker);
      font-weight: 700;
      border: none;
      cursor: pointer;
      transition: all 0.4s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      font-size: 1.1rem;
      margin-top: 10px;
    }
    
    .form-submit:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
    }
    
    .form-submit i {
      transition: transform 0.3s ease;
    }
    
    .form-submit:hover i {
      transform: translateX(-5px);
    }
    
    .form-success {
      display: none;
      background: rgba(16, 185, 129, 0.15);
      border: 1px solid rgba(16, 185, 129, 0.3);
      border-radius: 12px;
      padding: 30px;
      text-align: center;
      margin-top: 30px;
      animation: fadeIn 0.5s ease;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .form-success i {
      font-size: 3rem;
      margin-bottom: 15px;
      color: var(--success);
    }
    
    .form-success h4 {
      font-size: 1.5rem;
      margin-bottom: 10px;
      color: var(--success);
    }
    
    .form-success p {
      color: var(--success);
      opacity: 0.9;
      font-size: 1.1rem;
    }
    
    /* الفوتر */
    footer {
      background: var(--darker);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      position: relative;
      overflow: hidden;
    }
    
    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 30% 70%, rgba(26, 35, 126, 0.05), transparent 70%);
      z-index: 0;
    }
    
    .footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 50px;
      position: relative;
      z-index: 1;
    }
    
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 25px;
      transition: transform 0.3s ease;
    }
    
    .footer-logo:hover {
      transform: translateX(5px);
    }
    
    .footer-logo-img {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      object-fit: cover;
      border: 2px solid rgba(212, 175, 55, 0.6);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .footer-logo-text {
      display: flex;
      flex-direction: column;
    }
    
    .footer-logo-title {
      font-weight: 800;
      font-size: 1.3rem;
      color: var(--primary);
    }
    
    .footer-logo-subtitle {
      font-size: 0.75rem;
      color: var(--gray);
      margin-top: 3px;
    }
    
    .footer-description {
      font-size: 1rem;
      margin-bottom: 25px;
    }
    
    .footer-social {
      display: flex;
      gap: 15px;
    }
    
    .footer-social-link {
      width: 45px;
      height: 45px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gray);
      font-size: 1.1rem;
      transition: all 0.3s ease;
      background: rgba(255, 255, 255, 0.05);
    }
    
    .footer-social-link:hover {
      background: rgba(212, 175, 55, 0.15);
      color: var(--primary);
      transform: translateY(-3px) scale(1.1);
      border-color: rgba(212, 175, 55, 0.4);
      box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
    }
    
    .footer-title {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 25px;
      color: var(--light);
      position: relative;
      padding-bottom: 10px;
    }
    
    .footer-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      width: 50px;
      height: 3px;
      background: var(--gold-gradient);
      border-radius: 3px;
    }
    
    .footer-links {
      list-style: none;
    }
    
    .footer-links li {
      margin-bottom: 15px;
    }
    
    .footer-links a {
      font-size: 1rem;
      color: var(--gray);
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .footer-links a:hover {
      color: var(--primary);
      padding-right: 5px;
    }
    
    .footer-links a i {
      color: var(--primary);
      font-size: 0.8rem;
      transition: transform 0.3s ease;
    }
    
    .footer-links a:hover i {
      transform: translateX(5px);
    }
    
    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      margin-bottom: 20px;
    }
    
    .footer-contact-item i {
      color: var(--primary);
      margin-top: 5px;
      font-size: 1.1rem;
    }
    
    .footer-contact-text {
      font-size: 1rem;
      color: var(--gray);
    }
    
    .footer-contact-text a {
      display: block;
      margin-top: 5px;
      transition: all 0.3s ease;
    }
    
    .footer-contact-text a:hover {
      color: var(--primary);
      transform: translateX(5px);
    }
    
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 30px;
      margin-top: 60px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 20px;
    }
    
    .footer-copyright {
      font-size: 0.9rem;
      color: var(--gray);
    }
    
    .footer-legal {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }
    
    .footer-legal a {
      font-size: 0.9rem;
      color: var(--gray);
      transition: all 0.3s ease;
    }
    
    .footer-legal a:hover {
      color: var(--primary);
    }
    
    /* تأثيرات الحركة */
    .float {
      animation: float 6s ease-in-out infinite;
    }
    
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
    }
    
    /* تأثيرات الزووم للصور */
    .img-zoom {
      transition: transform 0.5s ease;
    }
    
    .img-zoom:hover {
      transform: scale(1.05);
    }
    
    /* تأثيرات الجسيمات */
    .particles {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      overflow: hidden;
    }
    
    .particle {
      position: absolute;
      background: rgba(255, 255, 255, 0.6);
      border-radius: 50%;
      pointer-events: none;
      animation: float 15s infinite linear;
    }
    
    /* تأثيرات الشريط العلوي */
    .nav-link {
      position: relative;
    }
    
    /* تأثيرات الأزرار */
    .btn-hover {
      position: relative;
      overflow: hidden;
    }
    
    .btn-hover::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -60%;
      width: 200%;
      height: 200%;
      background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.13) 0%,
        rgba(255, 255, 255, 0.13) 77%,
        rgba(255, 255, 255, 0.5) 92%,
        rgba(255, 255, 255, 0.0) 100%
      );
      transform: rotate(30deg);
      transition: all 0.7s ease-out;
    }
    
    .btn-hover:hover::after {
      left: 100%;
    }
    
    /* تأثيرات البطاقات */
    .card-hover {
      transition: all 0.4s ease;
    }
    
    /* تأثيرات الشعارات */
    .logo-hover {
      transition: all 0.3s ease;
    }
    
    /* تأثيرات الأيقونات */
    .icon-hover {
      transition: all 0.3s ease;
    }
    
    /* تأثيرات النص */
    .text-glow {
      text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    }
    
    /* تأثيرات الخلفية */
    .bg-gradient {
      background: var(--gold-gradient);
    }
    
    /* تأثيرات الظل */
    .shadow-soft {
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }
    
    /* تأثيرات الحدود */
    .border-glow {
      box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    }
    
    /* استجابة للشاشات الصغيرة */
    @media (max-width: 1200px) {
      .container {
        padding: 0 15px;
      }
      
      .hero-title {
        font-size: 3.5rem;
      }
      
      .section-title {
        font-size: 2.7rem;
      }
    }
    
    @media (max-width: 992px) {
      section {
          scroll-margin-top: 110px; /* يتناسب مع ارتفاع الهيدر */
        padding: 80px 0;
      }
      
      .about-container,
      .contact-container,
      .hours-container {
        grid-template-columns: 1fr;
      }
      
      .about-image,
      .hours-image {
        order: -1;
        height: 500px;
      }
      
      .hero-title {
        font-size: 3rem;
      }
      
      .hero-subtitle {
        font-size: 1.5rem;
      }
      
      .section-title {
        font-size: 2.5rem;
      }
      
      .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      }
    }
    
    @media (max-width: 768px) {
      section {
            padding-top: 80px; /* تقليل المساحة لتناسب الهيدر المصغر */
    scroll-margin-top: 80px; /* يتناسب مع الهيدر المصغر */

        padding: 70px 0;
      }
      
      .hero {
        padding-top: 33px;
        padding-bottom: 100px;
      }
      
      .hero-title {
        font-size: 2.7rem;
      }
      
      .hero-description {
        font-size: 1.1rem;
      }
      
      .mobile-menu-btn {
        display: flex;
      }
      
      nav ul {
        display: none;
      }
      
      .section-title {
        font-size: 2.2rem;
      }
      
      .section-description {
        font-size: 1.1rem;
      }
      
      .timeline::before {
        right: 25px;
      }
      
      .timeline-item {
        padding-right: 80px;
      }
      
      .timeline-icon {
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
      }
      
     
      .footer-container {
        grid-template-columns: 1fr 1fr;
      }
    }
    
    @media (max-width: 576px) {
      section {
        padding: 60px 0;
      }
      
      .hero {
        padding-top: 33px;
        padding-bottom: 80px;
      }
      
      .hero-title {
        font-size: 2.3rem;
      }
      
      .hero-subtitle {
        font-size: 1.3rem;
      }
      
      .hero-actions {
        flex-direction: column;
        gap: 15px;
      }
      
      .section-title {
        font-size: 2rem;
      }
      
      .service-card,
      .testimonial-card {
        padding: 30px;
      }
      
      .footer-container {
        grid-template-columns: 1fr;
      }
      
    
      
      .footer-legal {
        flex-direction: column;
        gap: 10px;
      }
      
      .mobile-menu {
        width: 280px;
      }
    }
    
    @media (max-width: 480px) {
      .hero-title {
        font-size: 2rem;
      }
      
      .hero-img {
        width: 120px;
        height: 120px;
      }
      
      .hero-badge {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
      }
      
      .section-title {
        font-size: 1.8rem;
      }
      
      .services-grid {
        grid-template-columns: 1fr;
      }
      
      .service-stats {
        grid-template-columns: 1fr 1fr;
      }
      
      .about-features {
        grid-template-columns: 1fr;
      }
    }