body {
  font-family: 'Tahoma', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #f9f9f9, #e2dfe8);
  color: #333;
  direction: rtl;
  overflow-x: hidden;
}

/* هيدر مع حركة دخول */
header {
  background: linear-gradient(90deg, #53c5e4, #98c9d6);
  color: white;
  text-align: center;
  padding: 40px 20px;
  animation: fadeDown 1.5s ease-out;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
  letter-spacing: 2px;
  
}

header p {
  font-size: 1.2em;
  margin-top: 10px;
}

/* قسم البروفايل */
.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px auto;
  max-width: 800px;
  text-align: center;
  animation: fadeUp 2s ease-out;
}

.profile img {
  width: 320px;
  height: 420px;
  border-radius: 10%;
  border: 5px solid #f0eeeb;
  margin-bottom: 20px;

}



.profile h2 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #1b679a;
}

.profile p {
  font-size: 1.1em;
  line-height: 1.8;
}
/* results */
.results {
  text-align: center;
  padding: 40px;
  background: #f9f9f9;
  font-family: "Tahoma", sans-serif;
}

.results h2 {
  margin-bottom: 30px;
  font-size: 28px;
  color: rgb(13, 120, 156);
}

.cases {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.case {
  width: 280px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(6, 35, 38, 0.1);
  padding: 15px;
}

.case img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.case p {
  margin-top: 10px;
  font-weight: bold;
  color: #555;
}
.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  padding: 15px 25px;
  background-color: #1798a6; /* لون واتساب */
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
}



/* الفوتر */
footer {
  background: linear-gradient(90deg, #217e9b, #7dc6c2);
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  animation: fadeUp 2s ease-out;
}

/* الحركات */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}