/* إعدادات الصفحة */

body {
  font-family:"Tajawal" , sans-serif !important;
  background: #f4f6f9;
  color: #3c4858;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  padding: 26px;
}

.container {
  background: #fff;
  width: 100%;
  max-width: 450px;
  padding: 28px;
  border-radius: 22px;
  box-shadow: -2px 2px 5px #b9b9b9;
}

/* الصورة الشخصية */
.profile {
  text-align: center;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 10%;
  object-fit: cover;
  border: 5px solid #f8f8f8;
  box-shadow: -2px 2px 5px #b9b9b9;

}
.name {
  margin: 10px 0 0;
  font-size: 30px;
  color: #611ca3;
  font-weight: bold;

}
.role {
  font-size: 15px;
}

/* العناوين */
.section-title {
  margin-top: 25px;
  margin-bottom: 14px;
  font-size: 15px;
}

.divider {
  margin: 26px 0;
  border: none;
  border-top: 1px solid #eee;
}

/* الأزرار */
.buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 6px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
}

/* أيقونات */
.icon {
  width: 30px;
  height: 30px;
  border-radius: 20%;
  box-shadow: -1px 1px 3px #b9b9b9;

}

/* ألوان الأزرار */
.instagram {
  background: #f8f8f8;
  color: #9828ab;
  border: 1px solid #9828ab;
  box-shadow: -1px 1px 5px #b9b9b9;

}

/* السيرة الذاتية */
.cv-box {
  background: #f8f8f8;
  padding: 15px;
  border-radius: 12px;
  line-height: 1.8;
  font-size: 15px;
  border: 1px solid #9828ab;
  box-shadow: -1px 1px 5px #b9b9b9;
}

/* السيرة الذاتية */
.footer {
  background: #f8f8f8;
  padding: 15px;
  border-radius: 12px;
  line-height: 1.8;
  font-size: 12px;
  border: 1px solid #9828ab;
  box-shadow: -1px 1px 5px #b9b9b9;
}

.cv-box ul , .cv-box a{
  color: #9828ab;
  text-decoration: none;
  font-weight: bold;
}


/* تحسين التجاوب */
@media (max-width: 480px) {
  .container {
    padding: 20px;
  }
}