Update index.html
Browse files- index.html +48 -34
index.html
CHANGED
@@ -44,6 +44,7 @@
|
|
44 |
height: 50px;
|
45 |
margin-left: 1rem;
|
46 |
transition: transform 0.3s;
|
|
|
47 |
}
|
48 |
|
49 |
.nav-logo img:hover {
|
@@ -98,10 +99,11 @@
|
|
98 |
}
|
99 |
|
100 |
.hero {
|
|
|
101 |
padding: 4rem 2rem;
|
102 |
text-align: center;
|
103 |
-
|
104 |
-
margin: 0
|
105 |
}
|
106 |
|
107 |
.hero-content {
|
@@ -110,17 +112,20 @@
|
|
110 |
justify-content: space-between;
|
111 |
gap: 2rem;
|
112 |
margin-bottom: 4rem;
|
|
|
|
|
113 |
}
|
114 |
|
115 |
.hero-text {
|
116 |
flex: 1;
|
117 |
text-align: right;
|
|
|
118 |
}
|
119 |
|
120 |
.hero-image {
|
121 |
flex: 1;
|
122 |
position: relative;
|
123 |
-
background-color:
|
124 |
border-radius: 10px;
|
125 |
padding: 2rem;
|
126 |
transition: transform 0.3s;
|
@@ -133,6 +138,7 @@
|
|
133 |
.logo {
|
134 |
width: 300px;
|
135 |
animation: pulse 2s infinite;
|
|
|
136 |
}
|
137 |
|
138 |
@keyframes pulse {
|
@@ -144,12 +150,12 @@
|
|
144 |
h1 {
|
145 |
font-size: 3rem;
|
146 |
margin-bottom: 1rem;
|
147 |
-
color:
|
148 |
}
|
149 |
|
150 |
.subtitle {
|
151 |
font-size: 1.2rem;
|
152 |
-
color:
|
153 |
margin-bottom: 2rem;
|
154 |
}
|
155 |
|
@@ -168,23 +174,23 @@
|
|
168 |
}
|
169 |
|
170 |
.button-primary {
|
171 |
-
background-color: #
|
172 |
color: white;
|
173 |
}
|
174 |
|
175 |
.button-primary:hover {
|
176 |
-
background-color: #
|
177 |
transform: translateY(-2px);
|
178 |
}
|
179 |
|
180 |
.button-secondary {
|
181 |
-
border: 2px solid
|
182 |
-
color:
|
183 |
}
|
184 |
|
185 |
.button-secondary:hover {
|
186 |
-
background-color:
|
187 |
-
color:
|
188 |
transform: translateY(-2px);
|
189 |
}
|
190 |
|
@@ -194,6 +200,9 @@
|
|
194 |
gap: 2rem;
|
195 |
text-align: center;
|
196 |
margin-top: 4rem;
|
|
|
|
|
|
|
197 |
}
|
198 |
|
199 |
.capability {
|
@@ -267,6 +276,10 @@
|
|
267 |
text-align: right;
|
268 |
}
|
269 |
|
|
|
|
|
|
|
|
|
270 |
@media (max-width: 768px) {
|
271 |
.nav-container {
|
272 |
flex-direction: column;
|
@@ -314,6 +327,7 @@
|
|
314 |
.capabilities {
|
315 |
grid-template-columns: repeat(2, 1fr);
|
316 |
gap: 1rem;
|
|
|
317 |
}
|
318 |
|
319 |
.buttons {
|
@@ -378,31 +392,31 @@
|
|
378 |
<img src="https://ufastpro.com/wp-content/uploads/2024/12/3.png" alt="شعار الذكاء الاصطناعي" class="logo">
|
379 |
</div>
|
380 |
</div>
|
381 |
-
|
382 |
-
<section class="capabilities">
|
383 |
-
<div class="capability">
|
384 |
-
<div class="icon">🧠</div>
|
385 |
-
<h2>تفكير متقدم</h2>
|
386 |
-
<p>قدرات تحليلية وإدراكية متطورة</p>
|
387 |
-
</div>
|
388 |
-
<div class="capability">
|
389 |
-
<div class="icon">👁️</div>
|
390 |
-
<h2>تحليل الصور</h2>
|
391 |
-
<p>فهم وتحليل المحتوى البصري</p>
|
392 |
-
</div>
|
393 |
-
<div class="capability">
|
394 |
-
<div class="icon">💻</div>
|
395 |
-
<h2>برمجة ذكية</h2>
|
396 |
-
<p>إنشاء وتحليل التعليمات البرمجية</p>
|
397 |
-
</div>
|
398 |
-
<div class="capability">
|
399 |
-
<div class="icon">🌐</div>
|
400 |
-
<h2>دعم متعدد اللغات</h2>
|
401 |
-
<p>معالجة وترجمة بين اللغات المختلفة</p>
|
402 |
-
</div>
|
403 |
-
</section>
|
404 |
</main>
|
405 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
406 |
<section class="featured-section">
|
407 |
<div class="featured-content">
|
408 |
<div class="featured-image">
|
|
|
44 |
height: 50px;
|
45 |
margin-left: 1rem;
|
46 |
transition: transform 0.3s;
|
47 |
+
filter: brightness(0) invert(1);
|
48 |
}
|
49 |
|
50 |
.nav-logo img:hover {
|
|
|
99 |
}
|
100 |
|
101 |
.hero {
|
102 |
+
background-color: #333;
|
103 |
padding: 4rem 2rem;
|
104 |
text-align: center;
|
105 |
+
width: 100%;
|
106 |
+
margin: 0;
|
107 |
}
|
108 |
|
109 |
.hero-content {
|
|
|
112 |
justify-content: space-between;
|
113 |
gap: 2rem;
|
114 |
margin-bottom: 4rem;
|
115 |
+
max-width: 1200px;
|
116 |
+
margin: 0 auto;
|
117 |
}
|
118 |
|
119 |
.hero-text {
|
120 |
flex: 1;
|
121 |
text-align: right;
|
122 |
+
color: white;
|
123 |
}
|
124 |
|
125 |
.hero-image {
|
126 |
flex: 1;
|
127 |
position: relative;
|
128 |
+
background-color: transparent;
|
129 |
border-radius: 10px;
|
130 |
padding: 2rem;
|
131 |
transition: transform 0.3s;
|
|
|
138 |
.logo {
|
139 |
width: 300px;
|
140 |
animation: pulse 2s infinite;
|
141 |
+
filter: brightness(0) invert(1);
|
142 |
}
|
143 |
|
144 |
@keyframes pulse {
|
|
|
150 |
h1 {
|
151 |
font-size: 3rem;
|
152 |
margin-bottom: 1rem;
|
153 |
+
color: white;
|
154 |
}
|
155 |
|
156 |
.subtitle {
|
157 |
font-size: 1.2rem;
|
158 |
+
color: rgba(255, 255, 255, 0.9);
|
159 |
margin-bottom: 2rem;
|
160 |
}
|
161 |
|
|
|
174 |
}
|
175 |
|
176 |
.button-primary {
|
177 |
+
background-color: #ff7961;
|
178 |
color: white;
|
179 |
}
|
180 |
|
181 |
.button-primary:hover {
|
182 |
+
background-color: #ff6347;
|
183 |
transform: translateY(-2px);
|
184 |
}
|
185 |
|
186 |
.button-secondary {
|
187 |
+
border: 2px solid white;
|
188 |
+
color: white;
|
189 |
}
|
190 |
|
191 |
.button-secondary:hover {
|
192 |
+
background-color: white;
|
193 |
+
color: #333;
|
194 |
transform: translateY(-2px);
|
195 |
}
|
196 |
|
|
|
200 |
gap: 2rem;
|
201 |
text-align: center;
|
202 |
margin-top: 4rem;
|
203 |
+
padding: 4rem 2rem;
|
204 |
+
max-width: 1200px;
|
205 |
+
margin: 0 auto;
|
206 |
}
|
207 |
|
208 |
.capability {
|
|
|
276 |
text-align: right;
|
277 |
}
|
278 |
|
279 |
+
.featured-text h2 {
|
280 |
+
color: #333;
|
281 |
+
}
|
282 |
+
|
283 |
@media (max-width: 768px) {
|
284 |
.nav-container {
|
285 |
flex-direction: column;
|
|
|
327 |
.capabilities {
|
328 |
grid-template-columns: repeat(2, 1fr);
|
329 |
gap: 1rem;
|
330 |
+
padding: 2rem 1rem;
|
331 |
}
|
332 |
|
333 |
.buttons {
|
|
|
392 |
<img src="https://ufastpro.com/wp-content/uploads/2024/12/3.png" alt="شعار الذكاء الاصطناعي" class="logo">
|
393 |
</div>
|
394 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
395 |
</main>
|
396 |
|
397 |
+
<section class="capabilities">
|
398 |
+
<div class="capability">
|
399 |
+
<div class="icon">🧠</div>
|
400 |
+
<h2>تفكير متقدم</h2>
|
401 |
+
<p>قدرات تحليلية وإدراكية متطورة</p>
|
402 |
+
</div>
|
403 |
+
<div class="capability">
|
404 |
+
<div class="icon">👁️</div>
|
405 |
+
<h2>تحليل الصور</h2>
|
406 |
+
<p>فهم وتحليل المحتوى البصري</p>
|
407 |
+
</div>
|
408 |
+
<div class="capability">
|
409 |
+
<div class="icon">💻</div>
|
410 |
+
<h2>برمجة ذكية</h2>
|
411 |
+
<p>إنشاء وتحليل التعليمات البرمجية</p>
|
412 |
+
</div>
|
413 |
+
<div class="capability">
|
414 |
+
<div class="icon">🌐</div>
|
415 |
+
<h2>دعم متعدد اللغات</h2>
|
416 |
+
<p>معالجة وترجمة بين اللغ��ت المختلفة</p>
|
417 |
+
</div>
|
418 |
+
</section>
|
419 |
+
|
420 |
<section class="featured-section">
|
421 |
<div class="featured-content">
|
422 |
<div class="featured-image">
|