/* الخلفية نفسها ما نعدلها */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
  font-family: sans-serif;
}

.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}

.video-background video {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

/* المحتوى فوق الخلفية */
.content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
  top: 10vh;
  background-color: rgba(0, 0, 0, 0.4); /* شفافية خفيفة عشان النص يبان فوق الفيديو */
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

/* الشعار */
.logo {
  max-width: 150px;
  width: 50%;
  height: auto;
  margin: 0 auto 20px;
  display: block;
}

/* الاسم */
.name {
  font-family: Changa;
  font-size: 2rem;
  margin: 10px 0 5px;
  font-weight: bold;
}

/* نبذة */
.bio {
  font-family: 'Changa';
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* أيقونات التواصل */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  margin-bottom: 20px;

}


.social-icons a.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: transform 0.3s, background-color 0.3s;
  text-decoration: none;
}

.social-icons a.icon i {
  color: #fff;
  font-size: 24px;
}

.social-icons a.icon:hover {
  transform: scale(1.1);
  background-color: rgba(255, 255, 255, 0.2);
}

/* أزرار الخدمات */
.service-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.service-btn {
  display: block;
  width: 80%;
  max-width: 300px;
  background-color: #c5d5e1;
  color: #000;
  text-decoration: none;
  padding: 15px;
  border-radius: 12px;
  border: 2px solid #1b305e;
  box-shadow: 3px 3px 0 #ffffff;
  transition: all 0.2s;
}

.service-btn:hover {
  box-shadow: 5px 5px 0 #adadad;
  background-color: #6ad0e0;
}

body {
  font-family: Changa;
}