
        :root {
            --primary-color: #1bbd36;
            --dark-bg: #0c0c0c;
            --text-color: #fff;
            --secondary-text: #aaaaaa;
        }
        
        body {
            font-family: 'Tahoma', 'Arial', sans-serif;
            margin: 0;
            padding: 0;
        }
        
        #footer {
                        text-align: center;

            background-color: var(--dark-bg);
            color: var(--text-color);
            padding: 40px 0 20px;
            font-size: 14px;
            line-height: 1.6;
        }
        
        .footer-top {
            padding-bottom: 30px;
        }
        
        .footer-info h3, .footer-links h4, 
        .footer-contact h4, .footer-newsletter h4 {
            color: var(--text-color);
            margin-bottom: 20px;
            font-weight: 700;
            text-align: center;
            position: relative;
            padding-bottom: 12px;
        }
        
        .footer-info h3:after, .footer-links h4:after,
        .footer-contact h4:after, .footer-newsletter h4:after {
            content: '';

            position: absolute;
            display: block;
            width: 60px;
            height: 2px;
            background: var(--primary-color);
            bottom: 0;
            right: 0;
        }
        
        .footer-info p {
            color: var(--secondary-text);
            text-align: justify;
            line-height: 1.8;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links ul li {
            padding: 8px 0;
            border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        
        .footer-links ul li:hover {
            padding-right: 5px;
        }
        
        .footer-links ul li:last-child {
            border-bottom: none;
        }
        
        .footer-links ul li i {
            margin-left: 8px;
            color: var(--primary-color);
            font-size: 12px;
        }
        
        .footer-links ul a {
            color: var(--secondary-text);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links ul a:hover {
            color: var(--primary-color);
        }
        
        .footer-contact p {
            line-height: 1.8;
            color: var(--secondary-text);
            margin-bottom: 20px;
        }
        
        .social-links {
            margin-top: 20px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #2a2a2a;
            color: var(--text-color);
            line-height: 1;
            padding: 10px;
            margin-left: 8px;
            border-radius: 50%;
            text-align: center;
            width: 38px;
            height: 38px;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .footer-newsletter p {
            color: var(--secondary-text);
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .footer-newsletter form {
            margin-top: 20px;
            background: #fff;
            padding: 5px;
            border-radius: 8px;
            display: flex;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
        }
        
        .footer-newsletter input[type="email"] {
            border: 0;
            padding: 12px;
            width: 70%;
            border-radius: 4px 0 0 4px;
            font-size: 14px;
            outline: none;
        }
        
        .footer-newsletter input[type="submit"] {
            border: 0;
            border-radius: 0 4px 4px 0;
            width: 30%;
            padding: 12px;
            background: var(--primary-color);
            color: var(--text-color);
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .footer-newsletter input[type="submit"]:hover {
            background: #159c2c;
        }
        
        .copyright {
            text-align: center;
            padding: 15px 0;
            margin-top: 10px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--secondary-text);
        }
        
        .credits {
            text-align: center;
            padding: 5px 0;
            color: var(--secondary-text);
        }
        
        .credits a {
            color: var(--primary-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .credits a:hover {
            text-decoration: underline;
        }

  /* عام */
  .form-wrapper {
    display: flex;
    justify-content: center;
    padding: 18px 12px;
    box-sizing: border-box;
    
  }

  /* حاوية النموذج */
  .subscribe-form {
    width: 100%;
    max-width: 920px; /* اضبط العرض الأقصى حسب حاجتك */
    display: flex;
    gap: 10px;
    align-items: center;
    background: black;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(20,20,40,0.06);
    box-sizing: border-box;
    border: 1px solid rgba(0,0,0,0.05);
  }

  /* حقل البريد */
  .subscribe-form input[type="email"]{
    flex: 1 1 auto;
    min-width: 0; /* مهم لجعل flex يعمل بشكل صحيح على الموبايل */
    padding: 14px;
    font-size: 15px;
    border: 1px solid rgba(0,0,0,0.09);
    border-radius: 8px;
    outline: none;
    transition: box-shadow .14s ease, border-color .14s ease;
    direction: ltr;          /* إجبار حقل الإيميل على LTR لكتابة الإيميل بشكل طبيعي */
    text-align: right; 
     caret-color: #000; 
         color: #000;              /* النص الذي يكتبه المستخدم أسود */
    height: 48px;     /* محاذاة داخل الحقل لليسر-to-right */
  }

  .subscribe-form input[type="email"]::placeholder{
    color: black;
    opacity: 1;
  }

  .subscribe-form input[type="email"]:focus{
    border-color: green;
    box-shadow: 0 6px 20px rgba(52,144,220,0.08);
  }

  /* زر الإشتراك */
  .subscribe-form button{
    flex: 0 0 auto;
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: linear-gradient(90deg,green,green);
    color: black;
    box-shadow: 0 6px 16px rgba(13,110,253,0.14);
    transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
  }

  .subscribe-form button:active{ transform: translateY(1px); }
  .subscribe-form button:hover{ opacity: 0.96; }

  /* حالات الأخطاء/تعطيل (اختياري) */
  .subscribe-form:invalid input[type="email"] { border-color: #e05b5b; }
  .subscribe-form button[disabled]{
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
  }

  /* إخفاء لاصق لذوي الاحتياجات (تستخدم مع label .visually-hidden) */
  .visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0);
    white-space: nowrap; border: 0;
  }

#footer .footer-top .footer-links1 {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links1 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links1 ul i {
  padding-right: 8px;
  color: #ddd;
}

#footer .footer-top .footer-links1 ul li {
  border-bottom: 1px solid #333;
  padding: 10px 0;
}

#footer .footer-top .footer-links1 ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links1 ul a {
  color: #eee;
}

#footer .footer-top .footer-links1 ul a:hover {
  color: #18d26e;
}
  /* تجاوب: عند الشاشات الصغيرة اجعل الحقول تتكدس عموديًا */
  @media (max-width: 480px) {
    .subscribe-form {
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
      padding: 14px;
    }
    .subscribe-form input[type="email"] {
      text-align: left; /* يبقى الEmail منسق LTR */
      direction: ltr;
    }
    .subscribe-form button {
      width: 100%;
    }
  }


   
        /* Media Queries للتجاوب مع جميع أحجام الشاشات */
        
        /* شاشات كبيرة (أجهزة مكتبية) */
        @media (min-width: 1200px) {
            .footer-info, .footer-links, .footer-contact, .footer-newsletter {
                padding-left: 15px;
                padding-right: 15px;
            }
        }
        
        /* شاشات متوسطة (أجهزة لوحية أفقية) */
        @media (max-width: 1199px) and (min-width: 992px) {
            #footer {
                padding: 35px 0 15px;
            }
            
            .footer-info h3, .footer-links h4, 
            .footer-contact h4, .footer-newsletter h4 {
                font-size: 18px;
            }
        }
        
        /* شاشات صغيرة (أجهزة لوحية عمودية) */
        @media (max-width: 991px) and (min-width: 768px) {
            #footer {
                padding: 30px 0 15px;
            }
            
            .footer-top .col-lg-3 {
                margin-bottom: 3px;
            }
            
            .footer-info h3, .footer-links h4, 
            .footer-contact h4, .footer-newsletter h4 {
                font-size: 17px;
            }
            
            .footer-info h3:after, .footer-links h4:after,
            .footer-contact h4:after, .footer-newsletter h4:after {
                width: 50px;
            }
        }
        
        
        /* هواتف ذكية كبيرة */
        @media (max-width: 767px) and (min-width: 576px) {
            #footer {
                padding: 25px 0 15px;
            }
            
            .footer-top .col-md-6 {
                margin-bottom: 30px;
            }
            
            .footer-info, .footer-links, 
            .footer-contact, .footer-newsletter {
                text-align: center;
            }
            
            .footer-info h3:after, .footer-links h4:after,
            .footer-contact h4:after, .footer-newsletter h4:after {
                right: 50%;
                transform: translateX(50%);
            }
            
            .social-links {
                justify-content: center;
            }
            
            .footer-newsletter form {
                flex-direction: column;
                padding: 15px;
            }
            
            .footer-newsletter input[type="email"] {
                width: 100%;
                border-radius: 4px;
                margin-bottom: 10px;
            }
            
            .footer-newsletter input[type="submit"] {
                width: 100%;
                border-radius: 4px;
            }
        }
        
        /* هواتف ذكية صغيرة */
        @media (max-width: 575px) {
            #footer {
                padding: 20px 0 10px;
            }
            
            .footer-top .col-12 {
                margin-bottom: 30px;
            }
            
            .footer-info, .footer-links, 
            .footer-contact, .footer-newsletter {
                text-align: center;
            }
            
            .footer-info h3:after, .footer-links h4:after,
            .footer-contact h4:after, .footer-newsletter h4:after {
                right: 50%;
                transform: translateX(50%);
            }
            
            .social-links {
                justify-content: center;
            }
            
            .footer-newsletter form {
                flex-direction: column;
                padding: 15px;
            }
            
            .footer-newsletter input[type="email"] {
                width: 100%;
                border-radius: 4px;
                margin-bottom: 10px;
            }
            
            .footer-newsletter input[type="submit"] {
                width: 100%;
                border-radius: 4px;
            }
            
            .copyright, .credits {
                font-size: 13px;
            }
        }
        
        /* تحسينات إضافية للعرض على شاشات كبيرة جدًا */
        @media (min-width: 1400px) {
            .container {
                max-width: 1320px;
            }
        }
   
  