body {
  margin: 0;
  font-family: 'Cairo', sans-serif;
  direction: rtl;
}

.hero {
  height: 100vh;
  background: linear-gradient(120deg, #0f4c75, #3282b8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.title {
  color: white;
  font-size: 48px;
  animation: move 3s infinite alternate;
}

@keyframes move {
  from { transform: translateY(0); }
  to { transform: translateY(-10px); }
}

.login-box {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
}

.login-box input, button {
  width: 100%;
  margin: 5px 0;
  padding: 10px;
}

.banner {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.buttons button {
  margin: 5px;
  padding: 10px;
}

footer {
  background: #0f4c75;
  color: white;
  padding: 15px;
  text-align: center;
}

.register {
  background: gold;
  border: none;
  padding: 10px;
}
.info-card{
  margin:20px;
}

.student-box{
  background:white;
  border-radius:15px;
  padding:15px;
  display:flex;
  align-items:center;
  box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

.avatar{
  width:60px;
  height:60px;
  border-radius:50%;
  background:#0f4c75;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  margin-left:15px;
}

.student-data h3{
  margin:0;
  color:#0f4c75;
}

.student-data p{
  margin:4px 0;
  color:#444;
}.register-box{
  display:flex;
  gap:10px;
  justify-content:center;
  margin-top:10px;
}

.register-box button{
  padding:10px 15px;
  border:none;
  border-radius:8px;
  cursor:pointer;
  font-size:14px;
}

.register-box button:first-child{
  background:#2ecc71;
  color:white;
}

.register-box button:last-child{
  background:#f1c40f;
  color:black;
}
.buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  margin: 25px;
}

.btn {
  padding: 20px;
  border-radius: 15px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ألوان لكل زر */
.icon-schedule { background: #0f4c75; }
.icon-grades { background: #3282b8; }
.icon-books { background: #1b262c; }
.icon-ads { background: #0f4c75; }

/* تأثير عند المرور بالماوس */
.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
  opacity: 0.95;
}
.btn {
  box-shadow: inset 0 -3px 0 rgba(0,0,0,0.2), 0 8px 20px rgba(0,0,0,0.15);
}
.card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  padding: 15px;
  margin: 15px;
  text-align: center;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}

.card h3 {
  color: #0f4c75;
  margin: 5px 0;
}

.card p {
  color: #444;
  font-size: 14px;
}
/* حجم الخط أصغر + الرموز + فخم */
.login-box {
  background: linear-gradient(135deg, #0f4c75, #3282b8);
  color: white;
  padding: 30px;
  width: 320px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  text-align: center;
  font-size: 14px;
}

.login-box h3 {
  margin-bottom: 20px;
  font-size: 20px;
}

.login-icons span {
  font-size: 24px;
  margin: 0 10px;
}

.login-box input {
  width: 90%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 10px;
  border: none;
}

.login-box button {
  width: 95%;
  padding: 12px;
  background: gold;
  color: #0f4c75;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.login-box button:hover {
  background: #f1c40f;
  transform: translateY(-3px);
}
.table-professional {
  width: 80%;               /* حجم مناسب */
  margin: 20px auto;        /* في الوسط */
  border-collapse: collapse;
  font-size: 18px;          /* تكبير الخط */
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2); /* ظل لطيف */
  border-radius: 10px;
  overflow: hidden;
}

.table-professional th {
  background: #3282b8;      /* أزرق جذاب */
  color: white;
  padding: 12px;
  font-size: 20px;          /* تكبير الخط */
}

.table-professional td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
}

.table-professional tr:nth-child(even) {
  background: #f1f1f1;     /* تمييز الصفوف الزوجية */
}

.table-professional tr:hover {
  background: #0f4c75;     /* تمييز الصف عند المرور */
  color: white;
}

/* إضافة أيقونات قبل كل صف */
.table-professional td:first-child::before {
  content: "📌";            /* أيقونة صغيرة */
  margin-right: 5px;
}