
  /* صندوق رئيسي */
  .brown-div {
    width: 100vw;
    margin: 0;
    background-color: #fff;
    text-align: center;
    padding: 60px;
    color: #66638F;
    border-radius: 0;
    box-sizing: border-box;
  }
  
  /* الصورة */
  .view-imagew {
    max-width: 50%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  
  /* تجاوب الصورة */
  @media (max-width: 768px) {
    .view-imagew {
      max-width: 90%;
    }
  }
  
  /* العناوين */
  .sitetitle {
    font-size: 35px;
    color: #66638F;
    margin-top: 10px;
    font-weight: normal !important;
  }
  
  h2.sitetitle,
  h4.sitetitle {
    font-weight: normal !important;
  }
  
  /* النص */
  .sitetext {
    font-size: 25px; 
    color: #66638F; 
    direction: rtl;
  }
  
  /* النص في الشاشات الصغيرة */
  @media (max-width: 768px) {
    .sitetitle {
      font-size: 28px;
    }
  
    .sitetext {
      font-size: 20px;
    }
  }
  
  /* تأثير الدخول عند التمرير */
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
  }
  
  .animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* حركة جانبية لو احتجت استخدامها مستقبلاً */
  @keyframes slideInFromRight {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  /* الصورة تدخل من اليمين */
.animate-image-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s ease-out;
}
.animate-image-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* النص يدخل من اليسار */
.animate-text-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s ease-out;
}
.animate-text-left.active {
  opacity: 1;
  transform: translateX(0);
}
 

/*  */

