:root {
  --bg-color: #ffffff;        /* خلفية بيضاء */
  --text-color: #c41212;      /* أحمر فخم وواضح للنصوص */
  --accent-color: #a01010;    /* أحمر أغمق للحواف والتفاصيل */
  --header-bg: #ffffff;       /* هيدر أبيض ليندمج مع الخلفية */
}

html {
  scroll-behavior: smooth;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-color);
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-color);
}

.container {
  width: 95%;
  max-width: 1200px;
  margin: auto;
}

/* Header Styles */
.header {
  background-color: var(--header-bg);
  padding: 0px 0;
  border-bottom: 3px solid var(--accent-color);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header img {
  width: 110px;
  animation: thebest 2s infinite alternate;
}

@keyframes thebest {
  0% { transform: translateX(0); }
  100% { transform: translateX(15px); }
}

.header .container .name {
  color: var(--text-color);
  font-size: 24px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .header {
    padding: 0px 0;
  }
  .header img {
    width: 70px;
  }
  .header .container .name {
    font-size: 15px;
  }
}

/* Profile Section */
.profile {
  background-color: var(--bg-color);
  text-align: center;
  color: var(--text-color);
  padding: 0px 0px;
  direction: rtl;
}

.profile .image img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;

}

.profile .text {
  padding-top: 30px;
  font-size: 26px;
  line-height: 1;
}

.profile .text p {
  margin:  0;
}

.profile .text span {
  font-size: 34px;
  font-weight: bold;
  display: block;
  margin: 20px 0;
}

@media (max-width: 500px) {
  .profile .text p {
    font-size: 18px;
  }
  .profile .text span {
    font-size: 28px;
  }
  .profile .image img {
    width: 180px;
    height: 180px;
  }
}

.profile .icon {
  padding-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.profile .icon i {
  font-size: 40px;
  color: var(--text-color);
  transition: all 0.4s ease;
  cursor: pointer;
}

.profile .icon i:hover {
  font-size: 50px;
  transform: translateY(-8px) scale(1.1);
  text-shadow: 0 5px 15px rgba(196, 18, 18, 0.4);
}

/* Content/Links Section */
.contant {
  padding: 40px 0;
  text-align: center;
}

.contant .col {
  height: 70px;
  width: 100%;
  max-width: 600px;
  margin: 15px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid var(--accent-color);
  border-radius: 50px;
  background-color: transparent;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(196, 18, 18, 0.1);
}

.contant .col a {
  width: 100%;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
}

.contant .col i {
  color: var(--text-color);
  font-size: 26px;
}

/* إخفاء الأسهم بشكل افتراضي */
.contant .col span {
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* إظهار الأسهم عند الـ hover */
.contant .col:hover span {
  opacity: 1;
}

.contant .col:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px) scale(1.05);
 }

.contant .col:hover a,
.contant .col:hover i {
  color: #ffffff;
}

@media (min-width: 768px) {
  .contant .col {
    width: 70%;
  }
}

@media (max-width: 500px) {
  .contant {
    padding: 30px 20px;
  }
  .contant .col {
    height: 60px;
  }
  .contant .col a {
    font-size: 18px;
  }
  .contant .col:hover {
    transform: translateY(-3px) scale(1.03);
  }
}
