@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@400;600;700&display=swap');

/* ----------------------------
   إعدادات عامة ومتغيرات الألوان
----------------------------- */
:root {
  --main-color: #0056b3;          /* أزرق ملكي أساسي */
  --secondary-color: #00aaff;     /* أزرق سماوي متدرج */
  --hover-color: #0077cc;         /* أزرق أعمق عند التفاعل */
  --text-dark: #303133;
  --text-light: #fff;
  --background: #f4f9ff;          /* خلفية فاتحة تميل للأزرق */
  --shadow: 0 8px 25px rgba(0, 86, 179, 0.1);
}


* {
  font-family: "Alexandria", "Cairo", "Noto Kufi Arabic", sans-serif;
  box-sizing: border-box;
}



main {
  flex: 1;
}
/* ----------------------------
   الروابط والأزرار العامة
----------------------------- */
a {
  text-decoration: none;
  color: var(--text-light);
}

.btn,
.submit-btn,
#locateBtn,
.tracking-container button {
  background-color: var(--secondary-color);
  color: var(--text-light);
  padding: 10px 25px;
  border-radius: 6px;
  border: none;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover,
.submit-btn:hover,
#locateBtn:hover {
  background-color: var(--hover-color);
}

/* ----------------------------
   الهيدر والقائمة
----------------------------- */


/* الهيدر */
header {
  display: flex;
  justify-content: space-between; /* يوزع بين الطرفين */
  align-items: center;
  padding: 15px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--main-color);
  z-index: 1000;
  box-sizing: border-box;
}


.logo {
  font-weight: bold;
  font-size: 1.5em;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0; /* يمنع التصغير */
  margin-left: 10px; /* مسافة بسيطة من اليسار */
}

/* حجم اللوغو فقط */
.logo img {
  height: 50px; /* هنا حجم ثابت للوجو */
  width: auto;
  flex-shrink: 0; /* تمنع تصغير الصورة */
}


/* القائمة الرئيسية */
#navList {
  display: flex;
  flex-wrap: nowrap; /* صف واحد فقط */
  gap: 10px;
  justify-content: center;
  list-style: none;
  padding: 0;  /* مهم لإزالة الحشو */
  margin: 0;
}

/* روابط القائمة */
#navList li a {
  display: inline-block;
  padding: 12px 20px;
  background-color: #f0f0f0;
  color: #0077cc;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* تأثير الهوفر */
#navList li a:hover {
  background-color: #2f90f8;
  color: white;
  transform: translateY(-3px);
}

 /* زر أكشن */
    .action-buttons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
      margin-top: 30px;
      margin-bottom: 60px;
    }

    .action-button {
      padding: 14px 30px;
      font-size: 1.1em;
      border: none;
      border-radius: 12px;
      color: white;
      background: linear-gradient(90deg, #0056b3, #00aaff, #0077cc);
      background-size: 200% 100%;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
      transition: all 0.4s ease;
      animation: moveGradient 5s linear infinite;
    }

    .action-button:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 25px rgba(0, 170, 255, 0.6);
    }

    @keyframes moveGradient {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    /* الموبايل */
    @media (max-width: 768px) {
      .animated-features {
        flex-direction: column;
        padding: 50px 20px;
      }
      .feature-box {
        width: 100%;
        max-width: 350px;
      }
    }

/* زر القائمة للموبايل */
.menu-toggle {
  display: none; /* الافتراضي مخفي على الشاشات الكبيرة */
  cursor: pointer;
  font-size: 28px; 
  user-select: none;
  color: #ffffff;
  padding: 10px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  z-index: 1000; 
}

/* تكبير عند المرور */
.menu-toggle:hover {
  transform: scale(1.1);
}

/* --- ميديا كويري للموبايل --- */
@media (max-width: 768px) {
  .menu-toggle {
    display: block; /* يظهر فقط على الموبايل */
    position: fixed; /* ثابت في الشاشة */
    top: 15px;
    left: 20px; /* صار من اليسار */
  }

  #navList {
    display: none; 
    flex-direction: column;
    background: linear-gradient(180deg, #0077cc, #005fa3);
    position: absolute;
    top: 60px; 
    left: 15px; /* بدل right، يخلي القائمة على نفس جهة الزر إذا تحب */
    width: 85vw;
    padding: 15px;
    border-radius: 15px; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 999;
    gap: 8px; 
    animation: slideDown 0.3s ease forwards;
  }

  #navList.show {
    display: flex;
  }

  @keyframes slideDown {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  #navList li a {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 12px 18px;
    border-radius: 10px; 
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    display: block; 
    width: 100%; 
    box-sizing: border-box;
  }

  #navList li a:hover {
    background-color: #005fa3;
    color: #fff;
    transform: scale(1.05);
  }
}
/* ----------------------------
   قسم المقدمة (Hero)
----------------------------- */
.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
              url('https://images.unsplash.com/photo-1581579203134-980e57bbbf05?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  text-align: center;
  padding: 180px 20px 100px;
  min-height: 80vh;

}

.hero-text h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
  animation: fadeUp 1.5s ease-out forwards;
  opacity: 0;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text p {
  font-size: 1.2em;
  margin-bottom: 20px;
}
/* زر btno - تصميم احترافي فخم بالأزرق المتدرج */
.btno {
  position: relative;
  margin: 50px auto;
  display: inline-block;
  padding: 15px 70px;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  border-radius: 18px; /* 🔹 كيرف ناعم */
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  background: linear-gradient(90deg, #0056b3, #00aaff, #0077cc, #0056b3);
  background-size: 300% 100%;
  box-shadow: 0 0 35px rgba(0, 136, 204, 0.4);
  animation: moveGradient 4s linear infinite, pulseLight 3s ease-in-out infinite;
  transition: transform 0.4s ease;
}

/* حركة التدرج المستمر */
@keyframes moveGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* نبض الإضاءة الخفيف */
@keyframes pulseLight {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.5), 0 0 40px rgba(0, 119, 204, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 35px rgba(0, 170, 255, 0.9), 0 0 60px rgba(0, 119, 204, 0.5);
    transform: scale(1.05);
  }
}

/* تأثير إضافي عند المرور */
.btno:hover {
  transform: scale(1.1);
  box-shadow: 0 0 45px rgba(0, 170, 255, 0.8);
}

/* توسيط الزر في منتصف الصفحة */
.center-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  text-align: center;
}

/* ⚡ تجاوب للموبايل */
@media (max-width: 768px) {

  .hero {
    padding: 140px 15px 70px;
    min-height: auto;
  }

  .hero-text h1 {
    font-size: 1.6em;
    line-height: 1.5;
  }

  .hero-text p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 15px;
  }

}

@media (max-width: 480px) {

  .hero {
    padding: 120px 12px 60px;
  }

  .hero-text h1 {
    font-size: 1.4em;
  }

  .hero-text p {
    font-size: 0.95em;
  }

}
@media (max-width: 768px) {

  .btno {
    width: 100%;
    padding: 14px;
    font-size: 1.2rem;
    margin: 25px 0;
  }

}
.hero-text {
  max-width: 95%;
  margin: auto;
}


/* ----------------------------
   قسم المميزات - الأزرق الملكي المتدرج
----------------------------- */
.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 60px 20px;
  background: linear-gradient(180deg, #f8fbff 0%, #eaf6ff 100%);
}

.feature-box {
  width: 300px;
  background: linear-gradient(135deg, #0056b3 0%, #0077cc 100%);
  color: #fff;
  padding: 25px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 86, 179, 0.25);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* لمعة خفيفة داخلية */
.feature-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: left 0.8s ease;
}

.feature-box:hover::after {
  left: 125%;
}

/* أنيميشن بسيط عند الظهور */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-box {
  animation: fadeUp 1s ease-out;
}

/* تأثير عند المرور */
.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 170, 255, 0.35);
}

/* العناوين والنصوص */
.feature-box h3 {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 1em;
  line-height: 1.6;
  color: #f0faff;
}

/* تجاوب للموبايل */
@media (max-width: 768px) {
  .features {
    flex-direction: column;
    align-items: center;
    padding: 40px 10px;
  }

  .feature-box {
    width: 90%;
    max-width: 340px;
  }
}

/* ----------------------------
   نموذج الحجز بتصميم عصري واحترافي ✨
----------------------------- */

.booking-container {
  max-width: 650px;
  margin: 140px auto 60px;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 35px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
  animation: fadeSlideUp 1s ease-out forwards;
}

/* تأثير إضاءة خلفية خفيف */
.booking-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at top right, rgba(8, 140, 248, 0.747), transparent 60%);
  transform: rotate(20deg);
  z-index: 0;
}

/* حركة الدخول */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.booking-container h1 {
  text-align: center;
  color: #0d6efd;
  font-size: 1.9rem;
  margin-bottom: 25px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  animation: popIn 1s ease-in-out;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* تنسيق الفورم */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.booking-form label {
  font-weight: 600;
  color: #222;
  font-size: 0.95rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #f9fafb;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 4px rgba(13, 109, 253, 0.815);
  background-color: #fff;
}

/* الزر */
.submit-btn {
  background: linear-gradient(90deg, #0d6efd, #007bff);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  padding: 14px;
  border-radius: 12px;
  cursor: pointer;
  margin-top: 10px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 5px 18px rgba(13, 109, 253, 0.932);
  position: relative;
  overflow: hidden;
}

/* تأثير مائي عند الضغط */
.submit-btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.submit-btn:active::after {
  width: 300px;
  height: 300px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.35);
}

/* تحسين النصوص */
.booking-form textarea {
  resize: vertical;
  min-height: 60px;
}

/* تفاعل خفيف مع الصفحة */
body {
  background: #f3f6fb;
  font-family: "Cairo", sans-serif;
  transition: background 0.5s ease;
}

/* استجابة للموبايل */
@media (max-width: 600px) {
  .booking-container {
    padding: 25px 20px;
    margin: 100px 15px;
  }
  .booking-container h1 {
    font-size: 1.6rem;
  }
  .submit-btn {
    font-size: 1rem;
  }
}

/* ----------------------------
   تتبع الطلب
----------------------------- */
.tracking-container {
  width: 90%;
  max-width: 500px;
  margin: 20vh auto 40px;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: center;
}

.tracking-container h2 {
  margin-bottom: 20px;
}

.tracking-container input[type="tel"] {
  padding: 10px;
  width: 80%;
  margin-bottom: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
  text-align: center;
}

.tracking-status {
  margin-top: 30px;
}

.progressbar {
  counter-reset: step;
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  position: relative;
}

.step {
  width: 100%;
  position: relative;
  text-align: center;
  color: #ccc;
}

.step::before {
  content: counter(step);
  counter-increment: step;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border: 2px solid #ccc;
  border-radius: 50%;
  background-color: white;
  display: block;
  margin: 0 auto 10px;
}

.step::after {
  content: '';
  position: absolute;
  top: 15px;
  left: -50%;
  width: 100%;
  height: 4px;
  background-color: #ccc;
  z-index: -1;
}

.step:first-child::after {
  content: none;
}

.step.done {
  color: var(--success-color);
}

.step.done::before {
  background-color: var(--success-color);
  border-color: var(--success-color);
  color: white;
  animation: pulse 1.2s infinite;
}

.step.done::after {
  background-color: var(--success-color);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(40, 167, 69, 0); }
  100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}

.hidden {
  display: none !important;
}
button.btnupdate{
  background-color: #02acac;
}
/* ----------------------------
   تقييم الزبون
----------------------------- */
#ratingButtons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
}

#ratingButtons button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: none;
  border: 2px solid #ccc;
  background-color: #eee;
  color: #555;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
  padding: 0;
  line-height: 40px;
  text-align: center;
  box-sizing: border-box; /* ✅ هذا يمنع التمدد */
}


#ratingButtons button.selected {
  background-color: var(--success-color);
  border-color: var(--success-color);
  color: white;
}

#ratingButtons button:hover {
  background-color: #b2d8b2;
}

/* ----------------------------
   Textarea متقدم
----------------------------- */
textarea {
  width: 75%;
  max-width: 500px;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 12px;
  outline: none;
  resize: vertical;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  transition: border 0.3s, box-shadow 0.3s;
}

textarea:focus {
  border-color: var(--success-color);
  box-shadow: 0 0 8px rgba(0, 212, 95, 0.3);
}

/* ----------------------------
   الفوتر
----------------------------- */
footer {
  background-color: #0056b3;
  color: var(--text-light);
  text-align: center;
  padding: 15px 10px;
  font-size: 0.9rem;

 
}

/* ----------------------------
   Responsive
----------------------------- */
@media (max-width: 768px) {
  .features {
    flex-direction: column;
    align-items: center;
  }

  nav ul {
    flex-direction: column;
    background-color: var(--main-color);
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    display: none;
  }

  nav ul.active {
    display: flex;
  }

  .hero-text h1 {
    font-size: 2em;
  }

  .hero-text p {
    font-size: 1em;
  }
}

/* الخدمات ستايل */

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}
.animated-features {
  position: relative;
  display: flex;
  justify-content: center;   /* هذا هو الأساس لتوسيط البوكسات */
  align-items: center;
  gap: 30px;
  padding: 60px 5vw;
  background: linear-gradient(135deg, #02b3b3 0%, #c9fdfd 100%);
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 100, 120, 0.2);
  color: #0077cc;
  font-weight: 600;
  z-index: 1;
  min-height: 60vh;
  max-width: 1000px;
  width: 90%;                /* بدلًا من 100% حتى يتوسّط */
  margin: 80px auto 60px;    /* auto على الجانبين = توسيط */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  flex-wrap: nowrap;
  flex-direction: row;
}

.animated-features .feature-box {
  background: rgba(255, 255, 255, 0.8);
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 100, 120, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  position: relative;
  z-index: 10;
  text-align: center;

  flex: 1;
  min-width: 280px;
  max-width: 280px;
  height: 220px;         /* 👈 حدد ارتفاع موحد */
  display: flex;
  flex-direction: column;
  justify-content: center; /* 👈 خلي المحتوى بالوسط عموديًا */
}

/*تواصل معنا واتساب */
.action-buttons {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 60px; /* قللها أو زيدها حسب الفوتر */
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}


.action-button {
  padding: 14px 24px;
  font-size: 1.1em;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.action-button.primary {
  background-color: #006666;
}

.action-button.primary:hover {
  background-color: #03a0a0;
}

.action-button.whatsapp {
  background-color: #006666;
}

.action-button.whatsapp:hover {
  background-color: #1ebe5d;
}
.action-button.login {
  background-color: #006666;
}

.action-button.login:hover {
  background-color: #05c5f5;
}

/* ريسبونسف للموبايل */
@media (max-width: 900px) {
  .animated-features {
    flex-direction: column;
  }

  .animated-features .feature-box {
    width: 90%;
    max-width: 350px;
  }
}

.animated-features .feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 100, 120, 0.3);
}

.animated-features .feature-box h3 {
  margin-bottom: 12px;
  font-size: 1.3em;
  color: #007bff;
}

.animated-features .feature-box p {
  font-size: 1em;
  line-height: 1.4;
}

/* فقاعات */
.bubbles-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

.bubbles-background .bubble {
  position: absolute;
  bottom: -100px;
  background: radial-gradient(circle at 30% 30%, rgba(255 255 255 / 0.8), rgba(255 255 255 / 0));
  border-radius: 50%;
  opacity: 0.7;
  animation: riseBubble linear infinite;
  will-change: transform;
  user-select: none;
  transition: filter 0.3s ease;
}

/* احجام ومواقع الفقاعات ثابتة */
.bubbles-background .bubble:nth-child(1) {
  width: 40px;
  height: 40px;
  left: 10%;
  animation-duration: 12s;
  animation-delay: 0s;
}
.bubbles-background .bubble:nth-child(2) {
  width: 25px;
  height: 25px;
  left: 25%;
  animation-duration: 10s;
  animation-delay: 2s;
}
.bubbles-background .bubble:nth-child(3) {
  width: 35px;
  height: 35px;
  left: 40%;
  animation-duration: 15s;
  animation-delay: 1s;
}
.bubbles-background .bubble:nth-child(4) {
  width: 20px;
  height: 20px;
  left: 55%;
  animation-duration: 11s;
  animation-delay: 3s;
}
.bubbles-background .bubble:nth-child(5) {
  width: 30px;
  height: 30px;
  left: 70%;
  animation-duration: 13s;
  animation-delay: 0.5s;
}
.bubbles-background .bubble:nth-child(6) {
  width: 45px;
  height: 45px;
  left: 80%;
  animation-duration: 14s;
  animation-delay: 4s;
}
.bubbles-background .bubble:nth-child(7) {
  width: 25px;
  height: 25px;
  left: 85%;
  animation-duration: 10s;
  animation-delay: 1.7s;
}
.bubbles-background .bubble:nth-child(8) {
  width: 30px;
  height: 30px;
  left: 15%;
  animation-duration: 12s;
  animation-delay: 2.5s;
}
.bubbles-background .bubble:nth-child(9) {
  width: 20px;
  height: 20px;
  left: 50%;
  animation-duration: 10s;
  animation-delay: 3.2s;
}
.bubbles-background .bubble:nth-child(10) {
  width: 35px;
  height: 35px;
  left: 65%;
  animation-duration: 16s;
  animation-delay: 2.2s;
}

@keyframes riseBubble {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0.7;
  }
  50% {
    opacity: 0.9;
    transform: translateY(-150px) translateX(10px);
  }
  100% {
    transform: translateY(-300px) translateX(-10px);
    opacity: 0;
  }
}




/* استايل للموبايل */
@media (max-width: 768px) {
  

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 65px; /* حسب ارتفاع الهيدر */
    right: 0;
    width: 100%;
    background-color: #006666;
    padding: 10px 0;
    z-index: 1001;
  }

  nav ul li {
    text-align: center;
    padding: 10px 0;
  }

  nav ul.show {
    display: flex;
  }
}

/* صفحة تسجيل الدخول */

/* الخلفية مع تدرج لوني */
.body-login {
  background: linear-gradient(135deg, #0077cc, #00518b);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  color: #fff;
}

/* صندوق تسجيل الدخول */
.login-container {
  background: #fff;
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  color: #222;
  padding: 30px 40px;
}

/* العنوان */
.login-form h2 {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  color: #0077cc;
}

/* المجموعات */
.input-group {
  margin-bottom: 20px;
}

/* الوسوم */
.input-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

/* الحقول */
.input-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid #0077cc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

/* التركيز على الحقول */
.input-group input:focus {
  outline: none;
  border-color: #0077cc;
  box-shadow: 0 0 8px #0077cc;
}

/* زر الدخول */
.btn-login {
  width: 100%;
  padding: 14px;
  background-color: #0077cc;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-login:hover {
  background-color: #0077cc;
}

/* تجاوب الصفحة */
@media (max-width: 480px) {
  .login-container {
    padding: 25px 20px;
  }
}
