/* =================================================================================================
  
                                       ===  GLOBAL RESET ===

=================================================================================================== */
html {
    box-sizing: border-box;
}
*, *::before, *::after {
    box-sizing: inherit;
}
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
	 user-select: none;       /* standard */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none; 
}
/* =================================================================================================
 
                             === Site Content display pages === 

=================================================================================================== */
.site-content {
    padding-top: 0px; 
}
/* Full Screen Loading */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #002D3F;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  margin: 0;
  padding: 0;
}
body.elementor-editor-active #loading-screen,
body.elementor-editor-preview #loading-screen {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
	}
.loading-logos {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  margin-top: -50px; /* رفع اللوقوين 50px بدون transform */
}

.loading-logos img {
  max-width: 150;
  height: auto;
  animation: fadeScale 2s ease-in-out infinite;
}

.loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255,255,255,0.3);
  border-top: 4px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes fadeScale {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.02); }
}
.loading-logos img:first-child {
  width: 80px;
  height: auto;
}

.loading-logos img:last-child {
  width: 200px;
  height: auto;
}

/* =================================================================================================
  
                                       ===  ASTRA HEADER ===

=================================================================================================== */

/* صورة Off Canves */
 * .img-center {
  display: flex;
  justify-content: center;  /* محاذاة في الوسط */
  align-items: center;      /* نفس المستوى عمودي */
  gap: 20px;                /* المسافة بين الصورتين */
  margin: 10px 0;           /* مسافة فوق وتحت */
}

.img-center img {    
  max-width: 100%;
  height: auto;
  display: block;
}
/* =================================================================================================
  
                                       ===  CSS FOR ELEMENTOR ===

=================================================================================================== */

/* =====================================================
        استهداف روابط أيقونات أي ويدجت Icon List
======================================================== */
.elementor-icon-list-item a {
  position: relative;
  text-decoration: none;
  color: #eeeeee;
  padding-bottom: 6px;
  outline: none; /* removes default dotted/focus outline */

}

/* خط تحت الرابط */
.elementor-icon-list-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #007995;
  transition: width 0.3s ease;
}

/* الحالة النشطة */
.elementor-icon-list-item a.active::after {
  width: 100%;
}

/* =====================================================
       استعراض النصوص اثناء السكرول
======================================================== */

/* Base state: hidden (clean & professional) */
.text-title,
.text-paragraph {
  opacity: 0;
  transform: translateY(16px); /* حركة خفيفة جدًا */
  transition: opacity 0.6s ease-out,
              transform 0.6s ease-out;
  will-change: opacity, transform;
}

/* Visible state */
.text-title.show,
.text-paragraph.show {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
     ELEMENTOR Progress Bar
======================================================== */

#scroll-progress {
  position: fixed;
  will-change: width;
  top: 0;
  left: 0;
  height: 6px;
  width: 0%;
  background-color: #007995;
  z-index: 99999;
  transition: width 0.4s cubic-bezier(.22,1,.36,1);

}

/* =================================================================================================
 
                                    === GTranslate Language Switch Button === 

=================================================================================================== */
.gtranslate_wrapper .gt_switcher,
.gt_switcher_wrapper .gt_switcher {
    transform: scale(0.85);
    transform-origin: right top;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
}
.widget .gtranslate_wrapper,
.widget .gt_switcher_wrapper,
#secondary .gtranslate_wrapper {
    transform: none !important;
    float: none !important;
    margin: 0 !important; 
    padding: 0 !important;
    line-height: inherit !important;
    height: auto !important;
}
.gtranslate_wrapper a[data-gt-lang="ar"]::before {
    content: "";
    display: inline-block;
    width: 17px;
    height: 13px;
    background-image: url("https://flagcdn.com/sa.svg"); 
    background-size: cover;
    background-position: center;
    border-radius: 1px;
    vertical-align: middle; 
}
.gtranslate_wrapper a {
    color: #fff !important; /* الخط أبيض */
}
.gtranslate_wrapper a[data-gt-lang="ar"] img {
    display: none !important;
}
.gtranslate_wrapper a[data-gt-lang="ar"] {
    margin-left: 10px !important;
	margin-right: 10px !important;
	color: #fff !important;
	font-family: 'Helvetica', Sans-serif !important;
}
.gtranslate_wrapper {
    font-size: 6px !important; /* تصغير الخط */
}

.gtranslate_wrapper a img {
    width: 16px !important;   /* تصغير كل الأعلام */
    height: auto !important;  /* يحافظ على نسبة العرض للارتفاع */
}

/* =================================================================================================
 
                                 ===  login page === 

=================================================================================================== */

/* الحاوية */
.user-login {
    width: 50%;               /* حجم مناسب على الكمبيوتر */
    max-width: 800px;
    margin: 80px auto;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 20px;
    box-sizing: border-box;
    color: #eee;
}

/* عنوان النموذج */
.user-login .form-title {
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
}

/* حاوية الحقول */
.user-login .form-fields {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
}

/* الحقول */
.user-login input[type="text"],
.user-login input[type="password"] {
    width: 60%;               
    padding: 7px 17px;
	margin: 7px auto;
    border-radius: 50px !important;     
    border: 1px solid #ccc;
	text-align: left;
    font-size: 12px;
    outline: none;
    box-sizing: border-box;
    transition: 0.3s;
    background-color: #fff;
    color: #111;
}

/* تأثير عند التركيز */
.user-login input[type="text"]:focus,
.user-login input[type="password"]:focus {
    border-color: #004865;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

/* Remember */
.user-login .remember {
    display: flex;
    justify-content: center;   
    align-items: center;
    gap: 6px;
    margin: 10px 200px 30px auto;
    font-size: 14px;
    color: #fff;
}

/* الأزرار */
.user-login .login-btn,
.user-login .register-btn {
    display: block;
    width: 60%;
    padding: 10px 20px;
    margin: 10px auto;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: none;
    box-sizing: border-box;
    transition: 0.3s;
}

/* زر الدخول */
.user-login .login-btn {
    background-color: #002f44;
	border: 1px solid #ddd;
    color: #fff;
}

/* زر التسجيل */
.user-login .register-btn {
    background-color: #002f44;
	border: 1px solid #ddd;
    color: #fff;
}

/* Hover */
.user-login .login-btn:hover {
    background-color: #004466;
}
.user-login .register-btn:hover {
    background-color: #004466;
}

/* ===== Responsive للجوال ===== */
@media (max-width: 768px) {
    .user-login {
        width: 90%;
        padding: 20px;
    }
    .user-login .form-title {
        font-size: 25px;
    }
    .user-login input[type="text"],
    .user-login input[type="password"] {
        width: 90%; 
		gap: 1px;
    }
    .user-login .remember {
	  width: 90%;
	  margin: 10px 100px 50px 0px;
	  }
    .user-login .login-btn,
	.user-login .register-btn{ 
	 width: 90%; 
		
	}
}
/* =================================================================================================
 
                                 ===  Register page === 

=================================================================================================== */
/* الحاوية */
.user-register {
    width: 60%;               
    max-width: 800px;
    margin: 80px auto;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 20px;
    box-sizing: border-box;
    color: #eee;
}

/* عنوان النموذج */
.user-register .form-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #eee;
}

.user-register .form-fields .field {
    width: 100%;
    display: flex; 
	justify-content: center;
}
/* حاوية الحقول */
.user-register .form-fields {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
}

/* الحقول */
.user-register input[type="text"],
.user-register input[type="email"],
.user-register input[type="password"] {
    width: 60%;
	justify-content: center;
    padding: 7px 17px;
    margin: 7px auto;
    border-radius: 50px !important;     
    border: 1px solid #ccc;
    text-align: left;
    font-size: 12px;
    outline: none;
    box-sizing: border-box;
    transition: 0.3s;
    background-color: #fff;
    color: #909090 !important;
}

/* تأثير عند التركيز */
.user-register input:focus {
    border-color: #004865;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

/* Terms checkbox */
.user-register .terms {
    display: flex;
    justify-content: center;   
    align-items: center;
	flex-direction: row-reverse; 
    gap: 6px;
    margin: 10px 150px 30px auto;
    font-size: 14px;
    color: #eee;
}

/* الأزرار */
.user-register .register-btn,
.user-register .login-btn {
    display: block;
    width: 60%;
    padding: 10px 20px;
    margin: 10px auto;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: none;
    box-sizing: border-box;
    transition: 0.3s;
}

/* زر التسجيل */
.user-register .register-btn {
    background-color: #002f44;
    border: 1px solid #ddd;
    color: #fff;
}

/* زر تسجيل الدخول */
.user-register .login-btn {
    background-color: #002f44;
    border: 1px solid #ddd;
    color: #fff;
}

/* Hover */
.user-register .register-btn:hover,
.user-register .login-btn:hover {
    background-color: #004466;
}

/* ===== Responsive للجوال ===== */
@media (max-width: 768px) {
    .user-register {
        width: 90%;
        padding: 20px;
    }
	.user-register .form-fields .field {
    width: 100%;
    display: flex; 
	justify-content: center;
}
    .user-register .form-title {
        font-size: 25px;
    }
    .user-register input[type="text"],
    .user-register input[type="email"],
    .user-register input[type="password"] {
        width: 90%; 
        gap: 1px;
    }
    .user-register .terms {
        width: 90%;
        margin: 10px 30px 50px 0px;
    }
    .user-register .register-btn,
    .user-register .login-btn { 
        width: 90%; 
    }
}

/* =================================================================================================
 
                                 === ASTRA Footer === 

=================================================================================================== */