
@charset "utf-8";
/* CSS Document */

 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            overflow-x: hidden;
            position: relative;
            background: #000000;
        }

        
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background: rgba(220, 203, 236, 0.5) !important; /* موف فاتح + شفاف أكتر */
}

/* =========================
   Hero (slideshow + overlay)
   ========================= */
    .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3;
        }

        .hero-title-container {
            position: relative;
            display: inline-block;
            padding: 50px 90px;
            text-align: center;
        }

        .hero-logo {
            width: 9000px;
            z-index: 2;
            position: relative;
            filter: drop-shadow(0 5px 10px rgba(0,0,0,0.2));
        }

       
        
        
        
        /* تأثيرات إضافية للتحسين */
        .hero-title-container {
            transition: transform 0.3s ease;
        }
        
        .hero-title-container:hover {
            transform: translateY(-5px);
        }
        
        .hero-title-container:hover::before {
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25), 
                        0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* تصميم متجاوب */
        @media (max-width: 600px) {
            .hero-title-container::before {
                width: 300px;
                height: 220px;
            }
            
            .hero-title-container::after {
                width: 310px;
                height: 230px;
            }
            
            .hero-logo {
                width: 150px;
            }
            
            .hero-title-container {
                padding: 40px 60px;
            }
        }

/* ===== Hero Section ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* يخلي الهيرو مليان الشاشة */
  overflow: hidden;
}

.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slideshow .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slideshow .slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* يخلي الصور متناسبة وتغطي الشاشة */
}

/* Controls (prev/next buttons) */
.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 12px 18px;
  font-size: 28px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
  z-index: 2;
}

.hero-prev:hover,
.hero-next:hover {
  background: rgba(0,0,0,0.8);
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 25px;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.hero-dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.hero-dots span.active {
  background: #fff;
}

/* Overlay (logo + buttons) */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  text-align: center;
  pointer-events: none; /* يمنع التفاعل إلا مع الأزرار */
}


.hero-logo {
  max-width: 600px;
   position: relative;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3; /* أعلى حاجة */
}
.hero-buttons {
  display: flex;
  gap: 15px;
  pointer-events: auto;
}

.hero-buttons .btn {
  padding: 12px 25px;
  background: #5d2988;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: background 0.3s;
}

.hero-buttons .btn:hover {
  background: #1c2492;
}

.hero-buttons .btn-dark {
  background: #333;
}

.hero-buttons .btn-dark:hover {
  background: #000;
}



/* Buttons (global) */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 22px;
  border-radius:999px;
  font-weight:700;
  font-size:15px;
  cursor:pointer;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  text-decoration:none;
  border: none;
}

/* Primary: mauve gradient */
.btn.primary, .btn {
  color: #fff;
  background: linear-gradient(90deg, var(--mauve-600), var(--mauve-700));
  box-shadow: 0 8px 30px rgba(106,13,173,0.18);
}
.btn.primary:hover{ transform: translateY(-4px); box-shadow: 0 18px 50px rgba(106,13,173,0.22); }

/* Secondary: outline (light) */
.btn.btn-dark{
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.14);
}
.btn.btn-dark:hover{
  background: rgba(255,255,255,0.06);
  transform: translateY(-3px);
}

/* small btn variant */
.btn.small{ padding:8px 14px; font-size:14px }


/* small btn variant */
.btn.small{ padding:8px 14px; font-size:14px }

.logo-container img {
    height: 150px; /* تحكمي في حجم اللوجو */
    width: auto;
}

.main-menu {
    display: flex;
    gap: 20px;
}

.menu-item {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.menu-item:hover {
    color: #00bfff; /* لون عند المرور */
}


        /* Sections */
        .section {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #home {
            background: radial-gradient(ellipse at center, #251a2e 0%, #1b0242 100%);
        }

       #about {
    background: url("images/ABOUT\ BG.jpg") no-repeat center center;
    background-size: cover;
}


        #contact {
            background: linear-gradient(135deg, #2D0062, #4A0080, #6A00A8);
        }

        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 40px;
            transition: all 0.3s ease;
        }

        .header.scrolled {
            background: rgba(0, 0, 0, 0.95);
            height: 70px;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .logo-container:hover {
            transform: translateY(-2px);
        }

        .logo {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo svg {
            width: 100%;
            height: 100%;
        }

        .logo-text {
            color: white;
            font-size: 24px;
            font-weight: 600;
            letter-spacing: -0.5px;
        }

        .main-menu {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .menu-item {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 0;
        }

        .menu-item:hover {
            color: white;
            transform: translateY(-2px);
        }

        .menu-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            transition: width 0.3s ease;
        }

        .menu-item:hover::after {
            width: 100%;
        }

        .menu-item.active {
            color: white;
        }

        .menu-item.active::after {
            width: 100%;
        }

        .menu-item.external::before {
            content: '↗';
            margin-right: 5px;
            font-size: 12px;
            opacity: 0.7;
        }

        /* Mobile menu toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 4px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        /* Home Section with Coverflow */
        .coverflow-wrapper {
            width: 100%;

            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 80px;
        }

        .coverflow-container {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 1200px;
            position: relative;
        }

        .coverflow {
            display: flex;
            align-items: center;
            justify-content: center;
            transform-style: preserve-3d;
            position: relative;
            width: 100%;
            height: 400px;
        }

        .coverflow-item {
            position: absolute;
            width: 300px;
            height: 300px;
            transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            cursor: pointer;
            user-select: none;
        }

        .coverflow-item .cover {
            width: 100%;
            height: 100%;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
            background: #333;
        }

        .coverflow-item .cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }

        /* Reflection */
        .coverflow-item .reflection {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 10px;
            transform: scaleY(-1);
            opacity: 0.2;
            filter: blur(2px);
            background: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0) 0%, 
                rgba(0, 0, 0, 0.8) 50%, 
                rgba(0, 0, 0, 1) 100%);
            overflow: hidden;
        }

        /* Active item (center) */
        .coverflow-item.active {
            z-index: 100;
            transform: translateX(0) translateZ(0) rotateY(0deg);
        }

        .coverflow-item.active .cover {
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
        }

        /* Navigation */
        .nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            z-index: 200;
        }

        .nav-button:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-50%) scale(1.1);
        }

        .nav-button.prev {
            left: 50px;
        }

        .nav-button.next {
            right: 50px;
        }

        /* Dots indicator */
        .dots-container {
            position: absolute;
            bottom: 60px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 200;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: rgba(255, 255, 255, 0.8);
            transform: scale(1.3);
        }

        /* Info display */
        .info {
            position: absolute;
            top: 120px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            z-index: 200;
        }

        .info h2 {
            font-size: 42px;
            margin-bottom: 10px;
            opacity: 0;
            animation: fadeIn 0.6s forwards;
             color: rgb(248, 248, 248);

        }

       

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        /* Play/Pause Button */
        .play-pause-button {
            position: absolute;
            bottom: 120px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            z-index: 200;
        }

        .play-pause-button:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(-50%) scale(1.1);
        }

        .play-pause-button .pause-icon {
            font-size: 16px;
            letter-spacing: 2px;
        }

        /* About Section */
       /* 🔹 About Section */
.about-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5f0fa, #ffffff);
  font-family: "Poppins", sans-serif;
  color: #333;
}

.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* العنوان */
.about-header {
  text-align: center;
  margin-bottom: 50px;
}

.about-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
}

.about-header p {
  font-size: 1.2rem;
  color: #666;
  margin-top: 10px;
}

/* المحتوى الرئيسي */
.about-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* الصورة */
.about-visual {
  flex: 1 1 45%;
  text-align: center;
}

.about-logo {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(106, 13, 173, 0.2);
  transition: transform 0.3s ease;
}

.about-logo:hover {
  transform: scale(1.05);
}

/* النصوص */
.about-info {
  flex: 1 1 50%;
}

.about-info h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #6a0dad;
}

.about-info p {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

/* القائمة */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.feature-list li {
  font-size: 1rem;
  margin-bottom: 12px;
  padding-left: 10px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease;
}

.feature-list li:hover {
  transform: translateX(5px);
  color: #6a0dad;
}

/* CTA زر */
.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #6a0dad;
  color: #fff;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #520c9d;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(106, 13, 173, 0.3);
}
.SUPPLY-CHAIN {
    background: url("images/SUPPLY CHAIN.jpg") no-repeat center center;
    background-size: cover;
    height: 400px;  /* ارتفاع محدد */
}
/* الإحصائيات */
.stats-section {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  text-align: center;
}

.stat-item {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #6a0dad;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  color: #555;
}

/* الموبايل */
@media (max-width: 768px) {
  .about-main {
    flex-direction: column;
    text-align: center;
  }

  .about-info {
    margin-top: 20px;
  }
}



/* نفس الفكرة لو عايزة الـ stats برضو RTL */
.stats-section {
    direction: rtl;
    text-align: right;
}


        .about-visual {
            position: relative;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .showcase-display {
            position: relative;
            width: 100%;
            max-width: 500px;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .showcase-main {
            position: relative;
            width: 350px;
            height: 400px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            border-radius: 30px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            padding: 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        .showcase-logo {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
        }

        .showcase-logo svg {
            width: 70%;
            height: 70%;
        }

        .showcase-title {
            font-size: 32px;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
            text-align: center;
        }

        .showcase-subtitle {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            text-align: center;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .showcase-badges {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .badge {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 8px 16px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
        }

        .badge:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-color: transparent;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }

        .badge:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
        }

        /* Decorative corner elements */
        .corner-decoration {
            position: absolute;
            width: 80px;
            height: 80px;
            border: 2px solid rgba(102, 126, 234, 0.3);
        }

        .corner-decoration.top-left {
            top: -20px;
            left: -20px;
            border-right: none;
            border-bottom: none;
            border-radius: 20px 0 0 0;
        }

        .corner-decoration.bottom-right {
            bottom: -20px;
            right: -20px;
            border-left: none;
            border-top: none;
            border-radius: 0 0 20px 0;
        }

        .about-info {
            padding-left: 40px;
        }

        .about-info h3 {
            font-size: 36px;
            margin-bottom: 30px;
            line-height: 1.3;
        }

        .about-info p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .feature-list {
            list-style: none;
            margin-bottom: 40px;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
        }

        .feature-list li::before {
            content: '✓';
            display: flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            flex-shrink: 0;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-decoration: none;
            padding: 15px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
        }

        .cta-button svg {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .cta-button:hover svg {
            transform: translateX(5px);
        }

        .stats-section {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            padding: 60px;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Contact Section */
        .contact-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px;
            color: white;
        }

        .contact-header {
            text-align: center;
			margin-top: 60px;
            margin-bottom: 60px;
        }

        .contact-header h2 {
            font-size: 48px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .contact-header p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .contact-info-section {
            padding-right: 40px;
        }

        .contact-info-section h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: white;
        }

        .contact-info-section p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateX(5px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-icon svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .contact-text {
            flex: 1;
        }

        .contact-text h4 {
            font-size: 16px;
            color: white;
            margin-bottom: 5px;
        }

        .contact-text p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }

        .social-links {
            margin-top: 40px;
        }

        .social-links h4 {
            font-size: 18px;
            margin-bottom: 20px;
            color: white;
        }

        .social-buttons {
            display: flex;
            gap: 15px;
        }

        .social-btn {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .social-btn:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-color: transparent;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
        }

        .social-btn svg {
            width: 20px;
            height: 20px;
            fill: white;
        }
        .contact-section {
  padding: 80px 20px;
  text-align: center;
  background: #0a0a0a; /* خلفية غامقة */
  color: #fff;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: bold;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px 20px;
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-card i {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.contact-card span {
  font-weight: 600;
}

.contact-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}


        .contact-form-section {
            padding-left: 40px;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            color: white;
            font-size: 16px;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
            background: rgba(255, 255, 255, 0.08);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
            line-height: 1.5;
        }

        .submit-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 15px 40px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
        }

        /* Smooth image loading */
        .image-loading {
            background: linear-gradient(45deg, #333, #555);
            position: relative;
        }

        .image-loading::after {
            content: '📷';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 48px;
            opacity: 0.5;
        }

       
        /* Scroll to top button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            transform: translateY(100px);
            transition: all 0.3s ease;
            z-index: 999;
        }

        .scroll-to-top.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .scroll-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .about-main {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .about-visual {
                height: 400px;
            }

            .about-info {
                padding-left: 0;
                text-align: center;
            }

            .feature-list {
                text-align: left;
                max-width: 500px;
                margin: 0 auto 40px;
            }

            .stats-section {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
                padding: 40px;
            }

            /* Contact section responsive */
            .contact-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .contact-info-section {
                padding-right: 0;
            }

            .contact-form-section {
                padding-left: 0;
            }
        }

        @media (max-width: 768px) {
            .header {
                padding: 0 20px;
            }

            .main-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(0, 0, 0, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 20px;
                gap: 20px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .main-menu.active {
                display: flex;
            }

            .menu-toggle {
                display: flex;
            }

            .menu-toggle.active span:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .menu-toggle.active span:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            .coverflow-item {
                width: 200px;
                height: 200px;
            }

            .nav-button {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .nav-button.prev {
                left: 20px;
            }

            .nav-button.next {
                right: 20px;
            }

            .info h2 {
                font-size: 24px;
            }

            .info p {
                font-size: 14px;
            }

            .logo-text {
                font-size: 20px;
            }

            .about-header h2 {
                font-size: 36px;
            }

            .about-info h3 {
                font-size: 28px;
            }

            .about-visual {
                height: 400px;
            }

            .showcase-display {
                max-width: 350px;
                height: 400px;
            }

            .showcase-main {
                width: 100%;
                height: 350px;
                padding: 30px;
            }

            .showcase-logo {
                width: 100px;
                height: 100px;
                margin-bottom: 20px;
            }

            .showcase-title {
                font-size: 28px;
            }

            .showcase-subtitle {
                font-size: 14px;
                margin-bottom: 30px;
            }

            .corner-decoration {
                display: none;
            }

            .stat-number {
                font-size: 36px;
            }

            .contact-content h2 {
                font-size: 36px;
            }           
        }

        @media (max-width: 480px) {
            .header {
                height: 70px;
                padding: 0 15px;
            }

            .header.scrolled {
                height: 60px;
            }

            .logo {
                width: 40px;
                height: 40px;
            }

            .logo-text {
                font-size: 18px;
            }

            .coverflow-item {
                width: 180px;
                height: 180px;
            }

            .about-content,
            .contact-content {
                padding: 20px;
            }

            /* Additional contact section mobile optimization for small screens */
            .contact-container {
                gap: 30px;
            }

            .contact-header {
                margin-bottom: 40px;
            }

            .contact-header h2 {
                font-size: 32px;
                margin-bottom: 15px;
            }

            .contact-header p {
                font-size: 16px;
                padding: 0 10px;
            }

            .contact-info-section {
                margin-bottom: 20px;
            }

            .contact-info-section h3 {
                font-size: 22px;
                margin-bottom: 15px;
            }

            .contact-info-section > p {
                font-size: 14px;
                padding: 0 10px;
                margin-bottom: 30px;
            }

            .contact-details {
                gap: 15px;
            }

            .contact-item {
                padding: 15px;
                gap: 12px;
            }

            .contact-icon {
                width: 40px;
                height: 40px;
            }

            .contact-icon svg {
                width: 20px;
                height: 20px;
            }

            .contact-text h4 {
                font-size: 14px;
            }

            .contact-text p {
                font-size: 12px;
                word-break: break-word;
            }

            .social-links {
                margin-top: 30px;
            }

            .social-links h4 {
                font-size: 16px;
                margin-bottom: 15px;
            }

            .social-buttons {
                gap: 10px;
            }

            .social-btn {
                width: 40px;
                height: 40px;
            }

            .social-btn svg {
                width: 18px;
                height: 18px;
            }

            .contact-form {
                padding: 20px 15px;
                border-radius: 15px;
            }

            .form-group {
                margin-bottom: 20px;
            }

            .form-group label {
                font-size: 14px;
                margin-bottom: 8px;
            }

            .form-group input,
            .form-group textarea {
                padding: 12px;
                font-size: 14px;
                border-radius: 8px;
            }

            .form-group textarea {
                min-height: 120px;
            }

            .submit-btn {
                padding: 12px 30px;
                font-size: 16px;
                border-radius: 25px;
            }
        }



/* ريسبونسف */
@media (max-width: 1024px){
  .companies-slider{ padding-inline:36px; }
  .company-card{ flex-basis: clamp(240px, 40vw, 300px); }
}
@media (max-width: 640px){
  .companies-slider{ padding-inline:16px; }
  .slider-btn{ display:none; }                 /* نخفي الأزرار على الموبايل */
  .company-card{ flex-basis: 85vw; }           /* كارت واحد كبير */
}



        /* News Section */
/* قسم الأخبار */
.news-section {
  padding: 5rem 1.5rem;
            background: linear-gradient(135deg, #2D0062, #4A0080, #6A00A8);
  position: relative;
  overflow: hidden;
}

.news-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%236a0dad' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.news-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 2;
}

.news-header h2 {
  font-size: 2.5rem;
  color: #ddd8df;
  margin-bottom: 1rem;
  font-weight: 800;
  position: relative;
  display: inline-block;
  font-family: 'Tajawal', sans-serif;
}

.news-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 50%;
  transform: translateX(50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #d4d4d4, #cfbdbd);
  border-radius: 2px;
}

.news-header p {
  font-size: 1.1rem;
  color: #6b6072;
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Tajawal', sans-serif;
}

.news-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.news-card {
            background: linear-gradient(135deg, #2D0062, #4A0080, #6A00A8);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(106, 13, 173, 0.15);
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #6a0dad, #ff6b6b);
  z-index: 3;
}

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.news-card:hover img {
  transform: scale(1.05);
}

.news-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-content h3 {
  font-size: 1.3rem;
  color: #d2c0d6;
  margin-bottom: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
  font-family: 'Tajawal', sans-serif;
}

.news-content p {
  color: #cba3e4;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.6;
  font-family: 'Tajawal', sans-serif;
}

.read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #6a0dad, #5a0a9d);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  width: fit-content;
  margin-top: auto;
  font-family: 'Tajawal', sans-serif;
}

.read-more:hover {
  background: linear-gradient(to right, #5a0a9d, #2b0b33);
  transform: translateX(-5px);
}

.read-more i {
  margin-right: 0.5rem;
  transition: all 0.3s ease;
}

.read-more:hover i {
  transform: translateX(-3px);
}

/* تأثيرات للعناوين */
.news-card:nth-child(1)::before { background: linear-gradient(to right, #6a0dad, #8a2be2); }
.news-card:nth-child(2)::before { background: linear-gradient(to right, #ff6b6b, #ff8e8e); }
.news-card:nth-child(3)::before { background: linear-gradient(to right, #4ecdc4, #6ee7e7); }
.news-card:nth-child(4)::before { background: linear-gradient(to right, #ffe66d, #ffef9f); }

/* التنسيق للشاشات الصغيرة */
@media (max-width: 768px) {
  .news-section {
    padding: 3rem 1rem;
  }
  
  .news-header h2 {
    font-size: 2rem;
  }
  
  .news-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* تأثيرات للكروت عند الظهور */
.news-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.news-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* إصلاح الخط الأبيض بين الـ HERO والـ COVER FLOW */
.hero {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

#home {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.coverflow-wrapper {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* التأكد من عدم وجود مسافات زائدة */
.hero-slideshow,
.hero-slideshow .slide,
.hero-slideshow img {
    margin: 0;
    padding: 0;
    display: block;
}

/* حل إضافي إذا استمرت المشكلة */
body:after {
    display: none !important;
}
footer {
  text-align: center;
  padding: 12px;
  background: #f8f8f8;   /* لون الخلفية */
  font-size: 14px;
  font-family: Arial, sans-serif;
  border-top: 1px solid #ddd; /* خط فاصل من فوق */
}

footer a {
  text-decoration: none;
  color: #25d366;   /* أخضر واتساب */
  font-weight: 600;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #128c7e;   /* لون أغمق عند المرور */
}

