  /* أنماط عامة */
  
@font-face {
  font-family: 'Cairo';
  src: url('../fonts/Cairo-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cairo';
  src: url('../fonts/Cairo-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cairo';
  src: url('../fonts/Cairo-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cairo';
  src: url('../fonts/Cairo-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cairo';
  src: url('../fonts/cairo-extra-bold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
  body,
.site,
.site * {
  font-family: 'Cairo', sans-serif !important;
}

.main-navigation,
.site-navigation,
.menu,
.nav,
ul.menu,
nav,
.header-menu,
.widget_nav_menu,
.wp-block-navigation,
.menu-toggle {
  font-family: 'Cairo', sans-serif !important;
}

.entry-content,
.post,
.page,
.content-area,
.sidebar,
.widget,
.wp-block {
  font-family: 'Cairo', sans-serif !important;
}

.logo-text ,
.logo-text span {
  font-family: 'Cairo', sans-serif !important;
  font-weight: 800 !important;
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
          
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
         .hero-content h1 {
  font-family: 'Cairo', sans-serif !important;
  font-weight: 800 !important;
            font-size: 4.2rem;
            
            margin-bottom: 25px;
            line-height: 1.15;
            text-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
            transform: translateY(30px);
            opacity: 0;
            transition: var(--transition);
            transition-delay: 0.2s;
            color: white;
            
        }
        
        
        .slide.active .hero-content h1 {
            transform: translateY(0);
            opacity: 1;
            font-family: 'Cairo', sans-serif !important;
        }
        

        /* تصميم السلايدر ثلاثي الأبعاد - تحسين الشفافية */
        .hero-slider {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
            transform-style: preserve-3d;
            color: white;
        }
        
        .slider-container {
            position: relative;
            height: 100%;
            width: 100%;
            transform-style: preserve-3d;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: var(--transition);
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateZ(-600px) scale(1.6);
            filter: blur(5px);
            clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
        }
        
        .slide.active {
            opacity: 1;
            z-index: 10;
            transform: translateZ(0) scale(1);
            filter: blur(0);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        }
        
        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        /* محتوى الشريحة */
        .hero-content {
            position: relative;
            z-index: 20;
            text-align: center;
            max-width: 900px;
            padding: 0 40px;
            transform: translateY(50px);
            transition: var(--transition);
            opacity: 0;
        }
        
        .slide.active .hero-content {
            transform: translateY(0);
            opacity: 1;
        }
        
       
        
        
        .hero-content p {
            font-size: 1.8rem;
            margin-bottom: 50px;
            line-height: 1.7;
            font-weight: 300;
            transform: translateY(30px);
            opacity: 0;
            transition: var(--transition);
            transition-delay: 0.4s;
        }
        
        .slide.active .hero-content p {
            transform: translateY(0);
            opacity: 1;
        }
        
        .progress-container {
            position: relative;
            width: 80%;
            max-width: 600px;
            height: 8px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            margin: 0 auto 20px;
            overflow: hidden;
            transform: translateY(30px);
            opacity: 0;
            transition: var(--transition);
            transition-delay: 0.6s;
        }
        
        .slide.active .progress-container {
            transform: translateY(0);
            opacity: 1;
        }
        
        .progress-bar {
            height: 100%;
            width: 0;
            background: linear-gradient(90deg, var(--accent-orange), var(--yemen-white));
            border-radius: 10px;
            position: relative;
            transition: width 1.5s ease 1s;
        }
        
        .progress-text {
            font-size: 1.3rem;
            font-weight: 500;
            transform: translateY(30px);
            opacity: 0;
            transition: var(--transition);
            transition-delay: 0.8s;
            letter-spacing: 0.5px;
        }
        
        .slide.active .progress-text {
            transform: translateY(0);
            opacity: 1;
        }
        
        /* عناصر التحكم بالسلايدر */
        .slider-controls {
            position: absolute;
            bottom: 60px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 30;
            gap: 15px;
        }
        
        .slider-dot {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .slider-dot::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--accent-orange);
            transform: translateY(100%);
            transition: var(--transition);
            border-radius: 50%;
        }
        
        .slider-dot.active {
            border-color: var(--accent-orange);
        }
        
        .slider-dot.active::before {
            transform: translateY(0);
        }
        
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 50px;
            z-index: 30;
        }
        
        .nav-btn {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 2rem;
            transition: var(--transition);
            border: 2px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
        }
        
        .nav-btn:hover {
            background: rgba(243, 156, 18, 0.3);
            transform: scale(1.15);
            border-color: var(--accent-orange);
            box-shadow: 0 8px 30px rgba(243, 156, 18, 0.3);
        }
        
        /* شعار الهوية */
        .brand-identity {
            position: absolute;
            bottom: 40px;
            right: 60px;
            z-index: 30;
            display: flex;
            align-items: center;
            gap: 20px;
            transform: translateY(50px);
            opacity: 0;
            transition: var(--transition);
            transition-delay: 1s;
        }
        
        .slide.active .brand-identity {
            transform: translateY(0);
            opacity: 1;
        }
        
        .yemen-flag {
            width: 100px;
            height: 60px;
            background: linear-gradient(to bottom, 
                var(--yemen-red) 33.33%, 
                var(--yemen-white) 33.33%, 
                var(--yemen-white) 66.66%, 
                var(--yemen-black) 66.66%);
            border-radius: 6px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transform: rotate(-5deg);
            transition: var(--transition);
        }
        
        .yemen-flag:hover {
            transform: rotate(0) scale(1.05);
        }
        
        .mira-logo {
            width: 150px;
            filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.4));
            transition: var(--transition);
           background: white;
            padding: 10px;
            border-radius: 8px;
        }
        
        .mira-logo:hover {
            transform: scale(1.05);
        }
        
        /* تأثيرات إضافية */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 5;
        }
        
        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }
        
        @keyframes float {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            100% {
                transform: translate(100px, 500px) rotate(360deg);
            }
        }
        
        /* مؤشر التمرير */
        .scroll-indicator {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 30;
            text-align: center;
            opacity: 0.8;
            animation: bounce 2s infinite;
        }
        
        .scroll-indicator i {
            font-size: 2rem;
            color: var(--accent-orange);
        }
        
        .scroll-text {
            font-size: 0.9rem;
            margin-top: 5px;
            letter-spacing: 2px;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
            40% {transform: translateX(-50%) translateY(-20px);}
            60% {transform: translateX(-50%) translateY(-10px);}
        }
        
        /* تحسينات الشفافية - طبقة أقل شفافية */
        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 40, 85, 0.55);
            z-index: 1;
        }
        
        /* تأثيرات إضاءة للصور */
        .slide::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(ellipse at center, 
                rgba(255, 255, 255, 0.15) 0%, 
                rgba(255, 255, 255, 0) 70%);
            pointer-events: none;
            transform: rotate(30deg);
            z-index: 2;
        }
        
        /* تحسين تباين الصور */
        .slide {
            filter: brightness(1.1) contrast(1.1) saturate(1.1);
        }

        /* أزرار الحث على الإجراء */
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 30px;
        }
        
        .cta-button {
            background: var(--accent-orange);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 5px;
            font-size: 1.2rem;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: var(--transition);
            font-weight: 600;
        }
        
        .cta-button:hover {
            background: #e67e22;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(243, 156, 18, 0.4);
        }
        
        .cta-button.secondary {
            background: transparent;
            border: 2px solid white;
        }
        
        .cta-button.secondary:hover {
            background: white;
            color: var(--primary-blue);
        }
        
        /* التكيف مع الشاشات الصغيرة */
        @media (max-width: 1200px) {
            .hero-content h1 {
                font-size: 3.5rem;
            }
            
            .hero-content p {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 3rem;
            }
            
            .nav-btn {
                width: 60px;
                height: 60px;
                font-size: 1.8rem;
            }
            
            .brand-identity {
                right: 40px;
                gap: 15px;
            }
            
            .yemen-flag {
                width: 80px;
                height: 50px;
            }
            
            .mira-logo {
                width: 130px;
            }
        }
        
        @media (max-width: 768px) {
            .hero-content {
                padding: 0 30px;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
                margin-bottom: 20px;
            }
            
            .hero-content p {
                font-size: 1.3rem;
                margin-bottom: 40px;
            }
            
            .progress-container {
                max-width: 450px;
                height: 6px;
            }
            
            .progress-text {
                font-size: 1.1rem;
            }
            
            .nav-btn {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
            
            .brand-identity {
                right: 30px;
                bottom: 30px;
                gap: 12px;
            }
            
            .yemen-flag {
                width: 70px;
                height: 42px;
            }
            
            .mira-logo {
                width: 110px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-button {
                padding: 12px 25px;
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
                margin-bottom: 30px;
            }
            
            .progress-container {
                width: 90%;
            }
            
            .slider-controls {
                bottom: 50px;
            }
            
            .slider-nav {
                padding: 0 25px;
            }
            
            .nav-btn {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }
            
            .brand-identity {
                right: 20px;
                bottom: 25px;
                flex-direction: column;
                gap: 10px;
            }
            
            .yemen-flag {
                width: 60px;
                height: 36px;
            }
            
            .mira-logo {
                width: 90px;
            }
            
            .scroll-indicator {
                display: none;
            }
        }
        
        /* تحسينات الحاوية الرئيسية */
        .article-container {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            margin: 30px 0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .article-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        /* تحسينات رأس المقال */
        .article-header {
            padding: 40px 40px 20px;
            background: linear-gradient(135deg, #1a73e8 0%, #6c8ef5 100%);
            color: white;
            text-align: center;
            position: relative;
        }
        
        .article-header::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,192C672,181,768,139,864,138.7C960,139,1056,181,1152,186.7C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: bottom;
            opacity: 0.2;
        }
        
        .article-header h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
        }
        
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-bottom: 30px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            opacity: 0.9;
        }
        
        .article-image {
            position: relative;
            z-index: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            max-width: 800px;
            margin: 0 auto;
        }
        
        .article-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .article-image:hover img {
            transform: scale(1.03);
        }
        
        /* تحسينات محتوى المقال */
        .article-content {
            padding: 40px;
        }
        
        .article-content h2 {
            color: #1a73e8;
            margin: 35px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eaeaea;
            position: relative;
        }
        
        .article-content h2::after {
            content: '';
            position: absolute;
            bottom: -2px;
            right: 0;
            width: 80px;
            height: 2px;
            background: #1a73e8;
        }
        
        .article-content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
        }
        
        .article-content ul, .article-content ol {
            margin: 20px 0;
            padding-right: 25px;
        }
        
        .article-content li {
            margin-bottom: 12px;
            position: relative;
            padding-right: 15px;
        }
        
        .article-content ul li::before {
            content: '✓';
            color: #1a73e8;
            font-weight: bold;
            position: absolute;
            right: -15px;
        }
        
        .article-content strong {
            color: #1a73e8;
            font-weight: 700;
        }
        
        /* تحسينات قسم الدعوة للعمل */
        .cta-section {
            background: linear-gradient(to left, #f8f9fa, #e9ecef);
            padding: 40px;
            border-radius: 12px;
            margin: 40px 0;
            text-align: center;
            border: 1px solid #e0e0e0;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #1a73e8, #6c8ef5);
        }
        
        .cta-section h2 {
            color: #333;
            margin-bottom: 25px;
            font-size: 1.8rem;
        }
        
        .cta-section a {
            background: #25d366;
            color: #fff;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: bold;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
        }
        
        .cta-section a:hover {
            background: #128c7e;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
        }
        
        /* تحسينات المقالات ذات الصلة */
        .related-articles {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid #eaeaea;
        }
        
        .related-articles h3 {
            color: #1a73e8;
            margin-bottom: 25px;
            font-size: 1.5rem;
            text-align: center;
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .blog-item {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 20px;
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }
        
        .blog-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            background: white;
        }
        
        .blog-item h4 {
            margin-bottom: 10px;
        }
        
        .blog-item a {
            color: #333;
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }
        
        .blog-item a:hover {
            color: #1a73e8;
        }
        
        /* تأثيرات تفاعلية */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .article-container {
            animation: fadeInUp 0.8s ease-out;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .benefit-card {
            background: #f8fafc;
            padding: 25px;
            border-radius: 12px;
            border-right: 4px solid #10b981;
            text-align: center;
        }
        .benefit-icon {
            font-size: 2.5rem;
            color: #1a56db;
            margin-bottom: 15px;
        }
        .steps-container {
            background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
            padding: 30px;
            border-radius: 12px;
            margin: 30px 0;
        }
        .step {
            display: flex;
            align-items: flex-start;
            margin: 25px 0;
            gap: 20px;
        }
        .step-number {
            background: #1a56db;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        .step-content {
            flex: 1;
        }
        .success-story {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 30px;
            border-radius: 12px;
            margin: 40px 0;
            text-align: center;
        }
        .cta-section {
            background: linear-gradient(135deg, #ffd166, #f59e0b);
            text-align: center;
            padding: 50px 40px;
            border-radius: 15px;
            margin: 40px 0;
        }
        .cta-button {
            background: #1a56db;
            color: white;
            padding: 18px 45px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            display: inline-block;
            margin-top: 25px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(26, 86, 219, 0.3);
        }
        .cta-button:hover {
            background: #1e3a8a;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(26, 86, 219, 0.4);
        }
                .article-image {
            width: 100%;
            border-radius: 12px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        
        
        
        /* تحسينات للشاشات الصغيرة */
        @media (max-width: 768px) {
            .article-header {
                padding: 30px 20px 15px;
            }
            
            .article-header h1 {
                font-size: 1.8rem;
            }
            
            .article-meta {
                gap: 15px;
                flex-direction: column;
                align-items: center;
            }
            
            .article-content {
                padding: 25px;
            }
            
            .cta-section {
                padding: 25px 20px;
            }
            
            .cta-section h2 {
                font-size: 1.4rem;
            }
            
            .blog-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* تحسينات إضافية للشاشات الصغيرة جدًا */
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            
            .article-header h1 {
                font-size: 1.5rem;
            }
            
            .article-content {
                padding: 20px 15px;
            }
            
            .cta-section a {
                padding: 12px 25px;
                font-size: 1rem;
            }
        }
        
/* أنماط عامة */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #f8f9fa;
    direction: rtl;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* تحسينات الهيدر */
header {
    background: linear-gradient(135deg, #1a73e8 0%, #6c8ef5 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,192C672,181,768,139,864,138.7C960,139,1056,181,1152,186.7C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.2;
}

header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

header p {
    font-size: 1.3rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

/* بانر التحذير */
.warning-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
    border-right: 5px solid #ff4757;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.warning-banner h2 {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.4rem;
}

.warning-banner p {
    opacity: 0.9;
    font-size: 1.1rem;
}

/* أقسام المحتوى */
.content-section {
    padding: 60px 0;
    background: white;
    margin: 30px 0;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.section-title {
    text-align: center;
    color: #1a73e8;
    font-size: 2.2rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, #1a73e8, #6c8ef5);
    border-radius: 2px;
}

/* جدول المقارنة */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.comparison-table th {
    background: linear-gradient(135deg, #1a73e8, #6c8ef5);
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    font-size: 1.1rem;
}

.comparison-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.comparison-table tr:hover {
    background-color: #e9ecef;
    transition: background-color 0.3s ease;
}

.legal-barcode {
    background-color: #d4edda !important;
    color: #155724;
    font-weight: 600;
}

.fake-barcode {
    background-color: #f8d7da !important;
    color: #721c24;
    font-weight: 600;
}

.yes-icon {
    color: #28a745;
    font-size: 1.3rem;
}

.no-icon {
    color: #dc3545;
    font-size: 1.3rem;
}

/* شبكة المخاطر */
.risks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.risk-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #dc3545;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.risk-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.risk-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.risk-icon i {
    font-size: 2rem;
    color: white;
}

.risk-card h3 {
    color: #dc3545;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.risk-card p {
    color: #666;
    line-height: 1.6;
}

/* خطوات التحقق */
.verification-steps {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    margin: 40px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.step-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-right: 4px solid #28a745;
    transition: transform 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}

.step-card h3 {
    color: #28a745;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

/* دراسات الحالة */
.case-studies {
    padding: 60px 0;
    background: white;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.case-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-right: 4px solid #ffc107;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to left, #ffc107, #ffd54f);
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.case-card h3 {
    color: #e65100;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.case-card p {
    color: #666;
    line-height: 1.6;
}

/* قسم الدعوة للعمل */
.cta-section {
    background: linear-gradient(135deg, #1a73e8 0%, #6c8ef5 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    border-radius: 15px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,192C672,181,768,139,864,138.7C960,139,1056,181,1152,186.7C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-button {
    background: #25d366;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}

/* تأثيرات تفاعلية */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section, .verification-steps, .case-studies, .cta-section {
    animation: fadeInUp 0.8s ease-out;
}

/* تحسينات للشاشات الصغيرة */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    header p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
    }
    
    .risks-grid,
    .steps-grid,
    .case-grid {
        grid-template-columns: 1fr;
    }
    
    .warning-banner h2 {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-section p {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    header {
        padding: 40px 0;
    }
    
    header h1 {
        font-size: 1.6rem;
    }
    
    .content-section {
        padding: 40px 0;
    }
    
    .risk-card,
    .step-card,
    .case-card {
        padding: 20px;
    }
}
        
        
        
        /*ملف القائمة والهيدر*/







/*حولنا */


    /* أنماط قسم عن GS1 */
    .about-section {
        padding: 100px 0;
        background-color: #f8f9fa;
        position: relative;
        overflow: hidden;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #0055a4;
        position: relative;
        display: inline-block;
        margin-bottom: 15px;
    }
    
    .section-title .highlight {
        color: #ff6600;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
        color: #6c757d;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .about-image {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(0, 85, 164, 0.7), rgba(0, 153, 204, 0.5));
        z-index: 1;
    }
    
    .world-map-animation {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
    }
    
    .globe {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 120px;
        height: 120px;
        background: url('<?php echo $plugin_url; ?>assets/images/globe.png') center/contain no-repeat;
        transform: translate(-50%, -50%);
        animation: rotateGlobe 30s linear infinite;
    }
    
    .connecting-lines .line {
        position: absolute;
        background: rgba(255, 255, 255, 0.5);
        transform-origin: left center;
        animation: pulseLine 3s infinite;
    }
    
    .line-1 {
        top: 30%;
        left: 40%;
        width: 120px;
        height: 2px;
        animation-delay: 0s;
    }
    
    .line-2 {
        top: 60%;
        left: 35%;
        width: 90px;
        height: 2px;
        animation-delay: 0.5s;
    }
    
    .line-3 {
        top: 45%;
        left: 55%;
        width: 80px;
        height: 2px;
        animation-delay: 1s;
    }
    
    .locations {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .location {
        position: absolute;
        background: rgba(255, 255, 255, 0.9);
        color: #0055a4;
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        animation: floatLocation 6s infinite ease-in-out;
    }
    
    .usa {
        top: 25%;
        left: 20%;
        animation-delay: 0s;
    }
    
    .eu {
        top: 35%;
        left: 45%;
        animation-delay: 1s;
    }
    
    .asia {
        top: 50%;
        left: 75%;
        animation-delay: 2s;
    }
    
    .ye {
        top: 60%;
        left: 55%;
        animation-delay: 3s;
    }
    
    .about-subtitle {
        font-size: 1.8rem;
        color: #0055a4;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }
    
    .about-subtitle:after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 60px;
        height: 3px;
        background: #ff6600;
    }
    
    .about-description {
        font-size: 1.1rem;
        line-height: 1.8;
        color: glod;
        margin-bottom: 25px;
    }
    
    .key-points {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .point {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s;
    }
    
    .point:hover {
        transform: translateY(-5px);
    }
    
    .point-icon {
        width: 50px;
        height: 50px;
        background: rgba(0, 85, 164, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #0055a4;
        font-size: 1.5rem;
        flex-shrink: 0;
    }
    
    .mission-vision {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    
    .mv-card {
        display: flex;
        align-items: center;
        gap: 20px;
        background: white;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s;
    }
    
    .mv-card:hover {
        transform: translateY(-5px);
    }
    
    .vision-card {
        border-left: 4px solid #0055a4;
    }
    
    .mission-card {
        border-left: 4px solid #ff6600;
    }
    
    .mv-icon {
        width: 60px;
        height: 60px;
        background: rgba(0, 85, 164, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #0055a4;
        font-size: 1.8rem;
        flex-shrink: 0;
    }
    
    .mission-card .mv-icon {
        background: rgba(255, 102, 0, 0.1);
        color: #ff6600;
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-card {
        background: white;
        border-radius: 10px;
        padding: 30px 20px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s;
    }
    
    .stat-card:hover {
        transform: translateY(-5px);
    }
    
    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: #0055a4;
        margin-bottom: 10px;
    }
    
    .stat-label {
        font-size: 1.1rem;
        color: #6c757d;
    }
    
    .timeline {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .timeline:before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 4px;
        background: #0055a4;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-item {
        position: relative;
        margin-bottom: 40px;
        width: 50%;
        padding: 0 40px;
        box-sizing: border-box;
    }
    
    .timeline-item:nth-child(odd) {
        left: 0;
    }
    
    .timeline-item:nth-child(even) {
        left: 50%;
    }
    
    .timeline-year {
        position: absolute;
        top: 0;
        width: 80px;
        height: 80px;
        background: #0055a4;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 700;
        z-index: 1;
    }
    
    .timeline-item:nth-child(odd) .timeline-year {
        right: -40px;
    }
    
    .timeline-item:nth-child(even) .timeline-year {
        left: -40px;
    }
    
    .timeline-content {
        background: white;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        position: relative;
    }
    
    .timeline-content:after {
        content: '';
        position: absolute;
        top: 20px;
        width: 20px;
        height: 20px;
        background: white;
        transform: rotate(45deg);
    }
    
    .timeline-item:nth-child(odd) .timeline-content:after {
        right: -10px;
    }
    
    .timeline-item:nth-child(even) .timeline-content:after {
        left: -10px;
    }
    
    .timeline-content h4 {
        color: #0055a4;
        margin-bottom: 10px;
    }
    
    /* الحركات */
    @keyframes rotateGlobe {
        from { transform: translate(-50%, -50%) rotate(0deg); }
        to { transform: translate(-50%, -50%) rotate(360deg); }
    }
    
    @keyframes pulseLine {
        0% { transform: scaleX(1); opacity: 1; }
        50% { transform: scaleX(1.2); opacity: 0.7; }
        100% { transform: scaleX(1); opacity: 1; }
    }
    
    @keyframes floatLocation {
        0% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
        100% { transform: translateY(0); }
    }
    
    /* التجاوب مع الشاشات */
    @media (max-width: 991px) {
        .section-title {
            font-size: 2rem;
        }
        
        .timeline:before {
            left: 30px;
        }
        
        .timeline-item {
            width: 100%;
            padding-left: 70px;
            padding-right: 20px;
            left: 0 !important;
        }
        
        .timeline-item:nth-child(odd) .timeline-year,
        .timeline-item:nth-child(even) .timeline-year {
            left: 0;
            right: auto;
        }
        
        .timeline-item:nth-child(odd) .timeline-content:after,
        .timeline-item:nth-child(even) .timeline-content:after {
            left: 20px;
            right: auto;
        }
    }
    
    @media (max-width: 767px) {
        .section-title {
            font-size: 1.8rem;
        }
        
        .about-section {
            padding: 70px 0;
        }
        
        .stats-grid {
            grid-template-columns: 1fr;
        }
        
        .mission-vision {
            flex-direction: column;
        }
    }
    
    
.partner-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 15px;
    color: white;
}

.partner-logo-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.partner-logo {
    max-width: 200px;
    margin-bottom: 15px;
}

.partner-features .feature {
    margin: 10px 0;
    font-size: 16px;
}

.partner-features .feature i {
    color: #4CAF50;
    margin-left: 10px;
}

/* أنماط الفريق */
.team-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 40px;
    border-radius: 0px;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.team-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    opacity: 0.1;
}

.team-hero-content {
    position: relative;
    z-index: 2;
}

.team-hero h1 {
    color: white;
    margin-bottom: 20px;
    font-size: 3em;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.team-hero p {
    font-size: 1.4em;
    margin-bottom: 30px;
    opacity: 0.95;
}

.team-badges {
    display: inline-flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-badge {
    background: rgba(255,255,255,0.2);
    padding: 12px 25px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    font-size: 1.1em;
}

.team-intro {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    margin-bottom: 50px;
}

.team-intro h2 {
    color: #2c5aa0;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-size: 2.2em;
}

.team-intro p {
    font-size: 1.2em;
    margin-bottom: 25px;
}

.team-highlight {
    background: #e8f4ff;
    padding: 25px;
    border-radius: 15px;
    border-right: 4px solid #2c5aa0;
    margin: 30px 0;
}

[dir="ltr"] .team-highlight {
    border-right: none;
    border-left: 4px solid #2c5aa0;
}

.team-highlight h4 {
    color: #2c5aa0;
    margin: 0 0 15px 0;
}

.team-stats {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    margin-bottom: 60px;
}

.team-stats h2 {
    color: white;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2em;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

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

.stat-number {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2em;
    margin: 0;
}

.stat-desc {
    font-size: 0.9em;
    opacity: 0.9;
    margin: 10px 0 0 0;
}

.team-evolution {
    background: #f8f9fa;
    padding: 50px 40px;
    border-radius: 20px;
    margin-bottom: 60px;
}

.team-evolution h2 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2em;
}

.evolution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.evolution-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.evolution-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.evolution-card h3 {
    color: #2c5aa0;
    margin-bottom: 15px;
}

.team-members {
    margin-bottom: 60px;
}

.team-members h2 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5em;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.member-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
}

.member-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    color: white;
}

.member-card h3 {
    color: #2c5aa0;
    margin-bottom: 10px;
}

.member-position {
    color: #666;
    margin-bottom: 20px;
    font-weight: bold;
}

.member-bio {
    margin-bottom: 20px;
}

.member-quote {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
}

.member-quote p {
    margin: 0;
    font-style: italic;
    color: #666;
}

.team-faq {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    margin-bottom: 60px;
}

.team-faq h2 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2em;
}

.faq-grid {
    display: grid;
    gap: 25px;
}

.faq-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
}

.faq-item h4 {
    color: #2c5aa0;
    margin: 0 0 15px 0;
}

.team-cta {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
    color: white;
    padding: 80px 40px;
    border-radius: 0px;
    text-align: center;
}

.team-cta h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2.5em;
}

.team-cta p {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-button-primary {
    background: #43e97b;
    color: white;
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    border: 2px solid white;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button-primary:hover,
.cta-button-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.contact-info {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    display: inline-block;
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
}

.contact-info p {
    margin: 0;
    font-size: 1.1em;
}

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

.social-links p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.social-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    transition: all 0.3s;
}

.social-link:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* الأنماط الأساسية الأخرى تبقى كما هي من الملف السابق */
/* [يتم إضافة جميع الأنماط السابقة هنا] */

/* تحسينات للشاشات الصغيرة */
@media (max-width: 768px) {
    .team-hero {
        padding: 60px 20px;
    }
    
    .team-hero h1 {
        font-size: 2.2em;
    }
    
    .team-hero p {
        font-size: 1.2em;
    }
    
    .team-badges {
        gap: 10px;
    }
    
    .team-badge {
        padding: 10px 20px;
        font-size: 1em;
    }
    
    .team-intro {
        padding: 30px 20px;
    }
    
    .team-intro h2 {
        font-size: 1.8em;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5em;
    }
    
    .evolution-grid {
        grid-template-columns: 1fr;
    }
    
    .members-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-grid {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .team-hero h1 {
        font-size: 1.8em;
    }
    
    .team-intro h2 {
        font-size: 1.5em;
    }
}


/*الشهادات*/
        .certificates-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
            border-bottom: 2px solid #e0e0e0;
            padding-bottom: 20px;
        }
        
        .tab-btn {
            padding: 12px 25px;
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .tab-btn.active, .tab-btn:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        
        .certificates-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .certificate-tab {
            display: none;
        }
        
        .certificate-tab.active {
            display: block;
        }
        
        .certificate-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .certificate-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .certificate-header {
            padding: 20px;
            background: linear-gradient(135deg, var(--primary-color), #1e3d6f);
            color: white;
            text-align: center;
        }
        
        .certificate-icon {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        
        .certificate-title {
            font-size: 1.3rem;
            margin-bottom: 5px;
        }
        
        .certificate-issuer {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .certificate-body {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .certificate-desc {
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .certificate-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            font-size: 0.9rem;
            color: #666;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .certificate-actions {
            display: flex;
            gap: 10px;
        }
        
        .btn {
            padding: 8px 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 500;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            flex: 1;
            text-decoration: none;
            text-align: center;
        }
        
        .btn-primary {
            background: var(--primary-color);
            color: white;
        }
        
        .btn-primary:hover {
            background: #1e3d6f;
        }
        
        .btn-secondary {
            background: #f8f9fa;
            color: var(--dark-color);
            border: 1px solid #e0e0e0;
        }
        
        .btn-secondary:hover {
            background: #e9ecef;
        }
        
        .partnership-badge {
            background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
            color: white;
            padding: 40px;
            border-radius: var(--border-radius);
            text-align: center;
            margin-top: 50px;
            box-shadow: var(--box-shadow);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .badge-content {
            max-width: 600px;
        }
        
        .badge-content h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        .badge-logo {
            background: white;
            padding: 20px;
            border-radius: 10px;
            width: 150px;
            height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .badge-logo img {
            max-width: 100%;
            max-height: 100%;
        }
        
        @media (max-width: 768px) {
            .certificates-section {
                padding: 50px 15px;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .certificates-container {
                grid-template-columns: 1fr;
            }
            
            .partnership-badge {
                flex-direction: column;
                text-align: center;
                padding: 30px 20px;
            }
        }


.hero2-section {
    background: linear-gradient(135deg, #00065d 0%, #2a4000 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero2-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,192C672,181,768,139,864,138.7C960,139,1056,181,1152,186.7C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

.trust-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a365d;
    font-size: 1.5rem;
}

.trust-text {
    text-align: right;
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.trust-text span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero2-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero2-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.certification-proof {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.proof-item {
    text-align: center;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.proof-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.proof-item i {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.proof-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ffd700;
}

.proof-item p {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 15px;
}

.verification-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(40, 167, 69, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(40, 167, 69, 0.5);
}

.verification-badge i {
    font-size: 1rem;
    color: #28a745;
    margin: 0;
}

.verification-badge span {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* نظام التحقق الذكي */
.smart-verification-system {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.smart-verification-system h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #ffd700;
    font-size: 1.5rem;
}

.verification-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.verification-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

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

.verification-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.verification-card h4 {
    margin-bottom: 15px;
    color: #ffd700;
}

.verification-card p {
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.5;
}

.qr-container {
    margin: 20px 0;
}

.qr-placeholder {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.7);
}

.qr-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.search-box {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.license-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
}

.license-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-btn {
    padding: 12px 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #0056b3;
}

.search-example {
    margin-top: 10px;
}

.request-info {
    margin: 20px 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    justify-content: center;
}

.info-item i {
    color: #ffd700;
}

.verify-btn, .request-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.verify-btn:hover, .request-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.request-btn {
    background: linear-gradient(45deg, #28a745, #20c997);
}

/* الإثباتات المرئية */
.visual-proofs {
    margin: 30px 0;
}

.visual-proofs h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #ffd700;
    font-size: 1.5rem;
}

.proofs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.proof-visual {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.document-preview {
    position: relative;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.doc-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 2;
}

.doc-overlay i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ffd700;
}

.doc-overlay p {
    margin-bottom: 20px;
    text-align: center;
}

.view-request-btn {
    padding: 10px 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.view-request-btn:hover {
    background: #0056b3;
}

.doc-content {
    padding: 20px;
    color: #333;
}

.doc-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.doc-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a365d, #2a4365);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.doc-title h4 {
    margin: 0;
    color: #1a365d;
}

.doc-title span {
    color: #6c757d;
    font-size: 0.9rem;
}

.doc-body {
    position: relative;
    min-height: 120px;
}

.confidential-line {
    height: 8px;
    background: linear-gradient(90deg, #e9ecef, #f8f9fa, #e9ecef);
    margin-bottom: 12px;
    border-radius: 4px;
}

.confidential-line.short {
    width: 70%;
}

.official-seal {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #dc3545;
}

.official-seal i {
    font-size: 2rem;
    display: block;
    margin-bottom: 5px;
}

.certificates-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.certificate-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.certificate-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.certificate-item i {
    font-size: 2rem;
    color: #ffd700;
}

.certificate-item span {
    font-size: 0.9rem;
    text-align: center;
}

.verification-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.verify-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.verify-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
}

.verify-link i {
    color: #ffd700;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a365d;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: #ffd700;
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .hero2-title {
        font-size: 2.2rem;
    }
    
    .hero2-subtitle {
        font-size: 1.2rem;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-item {
        width: 100%;
        max-width: 300px;
    }
    
    .proof-grid {
        grid-template-columns: 1fr;
    }
    
    .verification-options {
        grid-template-columns: 1fr;
    }
    
    .proofs-grid {
        grid-template-columns: 1fr;
    }
    
    .certificates-showcase {
        grid-template-columns: 1fr;
    }
    
    .cta-trust {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero2-title {
        font-size: 1.8rem;
    }
    
    .hero2-section {
        padding: 40px 0;
    }
    
    .certification-proof {
        padding: 20px;
    }
    
    .smart-verification-system {
        padding: 20px;
    }
    
    .proof-visual {
        padding: 20px;
    }
}

.quick-packages .package {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-packages .package:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.design-option {
    transition: all 0.3s ease;
}

.design-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 0;
        }
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .section-title {
            color: #2c3e50;
            font-size: 2.2em;
            font-weight: 700;
            margin-bottom: 15px;
        }
       
        .hero2-title {
            font-size: 3em;
            margin-bottom: 20px;
            font-weight: 700;
        }
        .hero2-subtitle {
            font-size: 1.5em;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        .cta-button {
            background: #f39c12;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 5px;
            font-size: 1.2em;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            margin: 10px;
        }
