Create README.md
Browse files<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>مونتاج الرشزات - الدرس الثالث | معهد المسيرة</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;900&family=Tajawal:wght@400;500;700&display=swap" rel="stylesheet">
<style>
:root {
--primary: #0d47a1;
--secondary: #1565c0;
--accent: #d32f2f;
--light: #f5f5f5;
--dark: #212121;
--gold: #ffc107;
--teal: #009688;
--purple: #7b1fa2;
--transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Cairo', sans-serif;
background: linear-gradient(135deg, #1a2a6c, #2c3e50);
color: var(--light);
line-height: 1.8;
overflow-x: hidden;
position: relative;
}
body::before {
content: "";
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
z-index: -1;
opacity: 0.3;
}
.app-container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
/* Header Styles */
.header {
text-align: center;
padding: 40px 20px;
background: linear-gradient(135deg, var(--purple), #4527a0);
border-radius: 20px;
margin-bottom: 30px;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
position: relative;
overflow: hidden;
border: 3px solid var(--gold);
}
.header::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
height: 5px;
background: linear-gradient(90deg, var(--accent), var(--gold), #4caf50);
animation: gradientBar 3s infinite alternate;
}
.institute-logo {
position: absolute;
top: 20px;
left: 20px;
font-size: 1.2rem;
background: rgba(255, 193, 7, 0.9);
padding: 8px 25px;
border-radius: 30px;
font-weight: bold;
color: #1a237e;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.header h1 {
font-size: 2.8rem;
margin: 30px 0 20px;
text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
font-family: 'Tajawal', sans-serif;
color: white;
position: relative;
display: inline-block;
}
.header h1::after {
content: "";
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 80%;
height: 4px;
background: var(--gold);
border-radius: 2px;
}
.header p {
font-size: 1.2rem;
max-width: 800px;
margin: 0 auto;
color: rgba(255, 255, 255, 0.9);
}
.lesson-duration {
background: rgba(255, 193, 7, 0.2);
padding: 12px 25px;
border-radius: 30px;
display: inline-block;
margin-top: 25px;
border: 2px solid var(--gold);
font-weight: bold;
}
/* Navigation */
.nav-tabs {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 15px;
margin-bottom: 40px;
background: rgba(33, 33, 33, 0.8);
padding: 15px;
border-radius: 15px;
border: 1px solid rgba(255, 193, 7, 0.3);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.tab-btn {
background: rgba(255, 255, 255, 0.1);
border: 2px solid rgba(255, 255, 255, 0.2);
color: white;
padding: 12px 25px;
border-radius: 50px;
cursor: pointer;
font-weight: bold;
transition: var(--transition);
display: flex;
align-items: center;
gap: 10px;
font-size: 1.1rem;
}
.tab-btn:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.tab-btn.active {
background: var(--accent);
border-color: var(--accent);
box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
}
/* Slides Container */
.slides-container {
background: rgba(33, 33, 33, 0.85);
border-radius: 20px;
padding: 40px;
margin-bottom: 40px;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
border: 1px solid rgba(255, 193, 7, 0.3);
position: relative;
min-height: 600px;
}
.slide {
display: none;
animation: fadeIn 0.8s ease-out;
}
.slide.active {
display: block;
}
.slide-title {
text-align: center;
margin-bottom: 40px;
padding-bottom: 20px;
border-bottom: 3px solid var(--gold);
position: relative;
}
.slide-title h2 {
font-size: 2.2rem;
color: #4fc3f7;
font-family: 'Tajawal', sans-serif;
display: inline-block;
}
.slide-title::after {
content: "";
position: absolute;
bottom: -3px;
left: 50%;
transform: translateX(-50%);
width: 120px;
height: 5px;
background: var(--accent);
border-radius: 3px;
}
.slide-content {
font-size: 1.2rem;
line-height: 1.8;
}
.section-header {
background: rgba(123, 31, 162, 0.2);
padding: 20px;
border-radius: 15px;
margin-bottom: 30px;
border-left: 4px solid var(--gold);
display: flex;
align-items: center;
gap: 20px;
}
.section-header h3 {
font-size: 1.8rem;
color: var(--gold);
margin: 0;
font-family: 'Tajawal', sans-serif;
}
/* Cards */
.card-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
margin: 30px 0;
}
.card {
background: rgba(21, 101, 192, 0.15);
border-radius: 15px;
padding: 25px;
transition: var(--transition);
border: 1px solid rgba(66, 66, 66, 0.5);
position: relative;
overflow: hidden;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
border-color: var(--secondary);
background: rgba(21, 101, 192, 0.25);
}
.card-header {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 15px;
}
.card-icon {
width: 70px;
height: 70px;
background: rgba(21, 101, 192, 0.2);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
color: #4fc3f7;
}
.card h3 {
font-size: 1.5rem;
color: #4fc3f7;
font-family: 'Tajawal', sans-serif;
}
.card-content ul {
padding-left: 25px;
}
.card-content li {
margin-bottom: 12px;
position: relative;
padding-left: 25px;
}
.card-content li::before {
content: "•";
color: var(--gold);
font-weight: bold;
position: absolute;
left: 0;
font-size: 1.5rem;
top: -5px;
}
.formula-box {
background: rgba(13, 71, 161, 0.2);
padding: 20px;
border-radius: 10px;
margin: 15px 0;
text-align: center;
font-size: 1.4rem;
font-weight: bold;
color: var(--gold);
border: 2px dashed var(--gold);
font-family: 'Tajawal', sans-serif;
}
/* Tables */
.data-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
background: rgba(33, 33, 33, 0.7);
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.data-table th {
background: rgba(123, 31, 162, 0.5);
padding: 15px;
text-align: right;
color: var(--gold);
font-size: 1.2rem;
}
.data-table td {
padding: 12px 15px;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}