تمام ✅ نكمل بالملف التاني.

---

## 🔹 **style.css**

```css
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #0f172a;
  color: white;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

img {
  max-width: 100%;
  display: block;
}

/* --- Titles & Highlights --- */
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #22d3ee;
}

.highlight {
  color: #22d3ee;
}

.highlight-wp {
  color: orange;
  text-decoration: none;
  font-size: 22px;
}

/* --- Header & Navbar --- */
.header {
  background-color: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid #1e293b;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: orange;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: orange;
}

/* زر الهامبرجر */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: orange;
  color: black;
}

.btn-primary:hover {
  box-shadow: 0 0 15px orange;
}

.btn-secondary {
  color: black;
  background: orange;
}

.btn-secondary:hover {
  color: #0f172a;
  background-color: white;
}

/* --- Hero Section --- */
.hero-section {
  padding: 6rem 0;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 18px;
  color: #94a3b8;
  margin-bottom: 36px;
}

.hero-image {
  flex-basis: 400px;
}

.hero-image img {
  border-radius: 50%;
  border: 4px solid rgb(18, 200, 124);
  width: 100%;
  min-height: auto;
}

/* --- Sections --- */
.skills-section,
.projects-section,
.testimonials-section,
.contact-section {
  padding: 80px 20px;
}

.skills-section,
.testimonials-section {
  background-color: #1e293b;
}

/* --- Skills Section --- */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.skill-card {
  background-color: #334155;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-10px);
}

.skill-card img {
  height: 60px;
  margin: 0 auto 15px;
}

/* --- Projects Section --- */
.projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.project-card {
  background-color: #1e293b;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-info {
  padding: 1.5rem;
}

.project-info p {
  color: #94a3b8;
  margin-bottom: 1rem;
}

/* --- Testimonials Section --- */
.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background-color: #334155;
  padding: 2rem;
  border-radius: 10px;
  border-left: 5px solid #22d3ee;
}

.testimonial-card p {
  margin-bottom: 1.5rem;
  font-style: italic;
  color: #94a3b8;
}

.testimonial-flex {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-flex img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.testimonial-flex span {
  font-size: 14px;
  color: yellow;
}

/* --- Contact Section --- */
.contact-subtitle {
  text-align: center;
  margin-top: -2.5rem;
  margin-bottom: 2.5rem;
  color: #94a3b8;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #1e293b;
  padding: 2rem;
  border-radius: 10px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  margin-bottom: 10px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px;
  border-radius: 5px;
  border: 1px solid orange;
  background-color: rgb(22, 16, 16);
  color: white;
  font-size: 16px;
}

.contact-form button {
  width: 100%;
}

/* --- Footer --- */
.footer {
  background-color: rgb(24, 22, 22);
  text-align: center;
  padding: 32px;
  margin-top: 50px;
  font-size: 20px;
}

/* --- Floating Share --- */
.floating-share-button {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 10px 18px;
  font-size: 16px;
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.floating-share-options {
  display: none;
  position: fixed;
  top: 50%;
  right: 90px;
  transform: translateY(-50%);
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  z-index: 9999;
  min-width: 220px;
}

.floating-share-options a,
.floating-share-options button {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  margin: 10px 0;
  font-size: 15px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 10px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 22px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .hero-image img {
    max-width: 250px;
  }

  .footer {
    font-size: 16px;
    padding: 20px;
  }
}
```

---

تحب أكمّل وأبعتلك آخر ملف (**Script.js**) كمان علشان يبقى المشروع كامل وجاهز؟
