/* إعداد عام */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
  background-color: #111;
  text-align: center;
}

/* خلفية البطل */
.hero {
  background-image: url('https://images.unsplash.com/photo-1522199710521-72d69614c702?auto=format&fit=crop&w=1400&q=80');
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
}

/* التعتيم والكتابة فوق الخلفية */
.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* العناوين */
h1 {
  font-size: 3rem;
  margin: 0;
}
/* الزرار الرئيسي */
.button {
  padding: 12px 30px;
  background: none;
  border: 2px solid #00c37e;
  color: #00c37e;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
}

.button:hover {
  background-color: #00c37e;
  color: #000;
  box-shadow: 0 0 15px #00c37e80;
}
.skills-list li {
  background-color: #1e1e1e;
  margin: 10px 0;
  padding: 15px 20px;
  border-left: 5px solid #00c37e;
  text-align: left;
  font-weight: bold;
  color: #ccc;
  transition: all 0.4s ease;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.skills-list li:hover {
  color: #fff;
  background-color: #00c37e30;
  transform: translateX(10px) scale(1.03);
  box-shadow: 0 0 20px #00c37e88;
}

#portfolio {
  background-color: #181818;
  padding: 60px 20px;
}

.portfolio-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.portfolio-gallery a {
  display: block;
  width: 250px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 15px #00000055;
  transition: 0.3s;
}

.portfolio-gallery img {
  width: 100%;
  height: auto;
  display: block;
  transition: 0.3s ease;
}

.portfolio-gallery a:hover img {
  transform: scale(1.05);
  box-shadow: 0 0 15px #00c37e99;
}
.project {
  text-align: center;
  max-width: 250px;
}

.project-title {
  color: #ccc;
  font-size: 1rem;
  margin-top: 10px;
  transition: 0.3s;
}

.project-title:hover {
  color: #00c37e;
  text-shadow: 0 0 5px #00c37e80;
}
.project video {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 15px #00000055;
  transition: 0.3s ease;
}

.project video:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #00c37e99;
}
.view-more-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.view-more-buttons .button {
  background: none;
  border: 2px solid #00c37e;
  color: #00c37e;
  font-weight: bold;
  font-size: 1rem;
  padding: 12px 25px;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.view-more-buttons .button:hover {
  background-color: #00c37e;
  color: #000;
  box-shadow: 0 0 15px #00c37e80;
}
#my-story {
  background-color: #1a1a1a;
  padding: 60px 20px;
}

.story-text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.1rem;
  color: #ccc;
  text-align: left;
  transition: 0.4s ease;
}

#my-story h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #00c37e;
}
.story-toggle {
  text-align: center;
  margin-top: 40px;
}

#my-story {
  background-color: #1a1a1a;
  padding: 60px 20px;
  margin-top: 30px;
}

#my-story h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #00c37e;
}

.story-text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.1rem;
  color: #ccc;
  text-align: left;
  transition: 0.4s ease;
}
#testimonials {
  background-color: #111;
  padding: 60px 20px;
  text-align: center;
}

#testimonials h2 {
  color: #00c37e;
  margin-bottom: 40px;
  font-size: 2rem;
}

.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  max-width: 300px;
  box-shadow: 0 0 10px #00c37e30;
  transition: 0.3s;
}

.testimonial:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px #00c37e55;
}

.testimonial p {
  font-style: italic;
  color: #ccc;
  margin-bottom: 10px;
}

.testimonial h4 {
  color: #00c37e;
  font-size: 0.9rem;
}
#process {
  background-color: #181818;
  padding: 60px 20px;
  text-align: center;
}

#process h2 {
  color: #00c37e;
  margin-bottom: 40px;
  font-size: 2rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: auto;
}

.step {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px #00c37e20;
  transition: 0.3s;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px #00c37e55;
}

.step h3 {
  color: #00c37e;
  margin-bottom: 10px;
}

.step p {
  color: #ccc;
  line-height: 1.6;
}
#faq {
  background-color: #111;
  padding: 60px 20px;
  text-align: center;
}

#faq h2 {
  color: #00c37e;
  margin-bottom: 40px;
  font-size: 2rem;
}

.faq-list {
  max-width: 800px;
  margin: auto;
  text-align: left;
}

.faq-item {
  background-color: #1a1a1a;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 4px solid #00c37e;
  border-radius: 8px;
  transition: 0.3s;
}

.faq-item:hover {
  background-color: #222;
  box-shadow: 0 0 10px #00c37e40;
}

.faq-item h4 {
  color: #00c37e;
  margin-bottom: 10px;
}

.faq-item p {
  color: #ccc;
  line-height: 1.6;
}
