@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap');

:root {

    --form_bg: #a36d9b;
    --button_bg: #8a0029;
    --reg_btn_bg: #1f05af;
    --tabi_bg: #5994b2;
    
  }




 



    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Cairo', sans-serif;
    }

    body, html {
      height: 100%;
      overflow-x: hidden;
    }

    /* ✅ الفيديو كخلفية */
    .video-bg {
      position: fixed;
      top: 0;
      left: 0;
      min-width: 100%;
      min-height: 100%;
      z-index: -1;
      object-fit: cover;
    }

    .container {
      max-width: 500px;
      margin: 50px auto;
      background: var(--form_bg); /* شفافية خفيفة */
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 0 15px rgba(0,0,0,0.2);
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .logo {
      width: 120px;
      margin-bottom: 20px;
    }

    form input, form select {
      width: 100%;
      padding: 12px;
      margin: 10px 0;
      border: 1px solid #ccc;
      border-radius: 10px;
    }

    form button {
      background: #1388ca;
      color: white;
      padding: 12px;
      width: 100%;
      border: none;
      border-radius: 10px;
      font-size: 16px;
      cursor: pointer;
    }

    .whatsapp-floating {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-floating:hover {
    transform: scale(1.1);
}




    .notification {
      background: #dff0d8;
      color: #3c763d;
      padding: 10px;
      margin-top: 10px;
      border: 1px solid #d6e9c6;
      border-radius: 10px;
      display: none;
    }
    
    
    .payment-options {
  margin-top: 20px;
  text-align: center;
}

.payment-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.tabi{
     background: var(--tabi_bg); /* شفافية خفيفة */
}

.logo-wrapper {
    width: 126px;
    height: 118px;
    border-radius: 50%;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;   /* محاذاة عمودية */
    justify-content: center; /* محاذاة أفقية */
    margin: 0 auto 20px auto; /* توسيط العنصر نفسه */
}

.logo-wrapper img {
    max-width: 95%;
    max-height: 86%;
    object-fit: contain;  /* يضمن أن الصورة لا تُقص */
    display: block;       /* يمنع المسافات البيضاء أسفل الصورة */
}




.whatsapp-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 30px;
  color: #fff;
}

.whatsapp-icon {
  font-size: 80px;
  color: #25D366;
}

.whatsapp-btn {
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 18px;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  color: #fff;
}

.activity-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}


.offer-text {
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(90deg, #25D366, #1ebe5d);
  padding: 15px 25px;
  border-radius: 50px;
  display: inline-block;
  animation: pulseGlow 1.8s infinite;
  box-shadow: 0 0 15px rgba(37,211,102,0.6);
}

.offer-text span {
  color: #FFD700;
  margin: 0 5px;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 10px rgba(37,211,102,0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 25px rgba(37,211,102,0.9);
    transform: scale(1.03);
  }
  100% {
    box-shadow: 0 0 10px rgba(37,211,102,0.4);
    transform: scale(1);
  }
}
.whatsapp-note {
  margin-top: 5px;
  margin-bottom: 0;
  font-size: 14px;
  color: #eee;
}

.whatsapp-title {
  margin-bottom: 20px; /* مسافة بين العنوان والزر */
}

.whatsapp-btn {
  margin-bottom: 10px; /* مسافة بين الزر والنص */
}

.whatsapp-note {
  margin-top: 0;       /* يمنع أي مسافة عشوائية */
  font-size: 14px;
  color: #eee;
}







