
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    /* colors */
    --bg-dark-1 : #333;
    --accent-color : orange;
     --primary-red: #ff3333;
    

    /* text */
    --main-title:75px;
    --text:20px;
    --secondery-title:50px;
    --h3-text:60px;


    /* margin */
    --m-10:10px;
    --m-20:20px;
    --m-30:30px;
    --m-40:40px;
    --m-50:50px;
    --m-60:60px;
    --m-220:220px;
    
    /* padding */
    --p-10:10px;
    --p-20:20px;
    --p-30:30px;
    --p-40:40px;
    --p-50:50px;
    --p-60:60px;
     /* gap */
     --gap-5:5px;
     --gap-8:8px;
     --gap-10:10px;
     --gap-15:15px;
     --gap-20:20px;
     --gap-30:30px;
     --gap-40:40px;
     --gap-50:50px;
     --gap-60:60px;

     /* border-radius */
     --br-8 : 8px;
     --br-10:10px;
     --br-12:12px;
     --br-14:14px;
     --br-20:20px;



     --br-60:60px;

}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.logo
{
   
    height: 70px;
    width: 70px;
}



body {
  
    height: 100dvh;
    background-color: #ffffff;
    color: #000000;
    /* background-image: repeating-linear-gradient(
        to right, transparent 0px 50px , #0000003b 50px 51px
    ),
    repeating-linear-gradient(
        to bottom, transparent 0px 50px , #0000003b 50px 51px
    ); */
    font-family: 'roboto';
    height: 4985px;
    
}

/* HEADER**************************************************  */



main section.hero {
    display: flex;
    min-height: 650px;
    
    margin: var(--m-60) var(--m-60);
}

main section.hero div.left-content{
    flex: 1;
    margin-top: var(--m-30);
     text-align:right;
     background-color: rgba(255, 255, 255, 0.671); 
      border: 1px solid #ccc; 
         box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9); 
      padding: 20px;
     
      border-radius: 29px; 
     
    
}

main section.hero div.left-content h1 {
  font-family: 'Almarai', sans-serif; /* خط العنوان الرئيسي */
    font-weight: 500; /* سمك الخط */
    font-size: 4.5em; /* حجم الخط */
      line-height: 2.5;

 background-color: rgb(0, 0, 155);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: waveColor 5s linear infinite;
}

.slider-text {
  font-family: 'Almarai', sans-serif; /* خط العنوان الرئيسي */
    font-weight: 200; /* سمك الخط */
    font-size: 1.5em; /* حجم الخط */
      line-height: 1.5;
      text-align: justify;
      direction: rtl;

}






.animated-paragraph {
  text-align: center;
  max-width:90%;
  margin: 40px auto;
  font-size:31px;
  color: #333;
  line-height: 1.6;
}
main section.hero div.left-content button{
    margin-top: var(--m-20);
    background-color: var(--accent-color);
    color: white;
    font-weight: bold;
}

main section.hero div.right-image{
    flex: 1;
    background-repeat: no-repeat;
    background-size:cover;
    border-radius: var(--br-10);
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}
main section.hero div.right-image img{
    width: 500px;
    height: 500px;
    object-fit: cover;
}

main section.projects {
    margin-top: 130px;
    margin-right: var(--m-60);
    margin-bottom: var(--m-220);
    margin-left: var(--m-60);
}

main section.projects h2 {
    font-size: var(--secondery-title);
}
main section.projects p{
    margin-top: var(--m-10);
    max-width: 500px;
    line-height: 1.6;
}

main section.projects div.project{
    display: flex;
    min-height: 500px;
    margin-top: var(--m-60);
    gap: var(--gap-30);
    
}
main section.projects div.project div.left-image-container{
    flex: 1;
    background:var(--color);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
   
}

main section.projects div.project div.left-image-container div.label {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    background-color: var(--color-label);
    padding: 10px 20px;
    border-radius: 8px;

}


main section.projects div.project div.left-image-container img {
    width: 80%;
    height: 80%;
    border-radius: 10px;
    object-fit: cover;
    transition: all 400ms ease-in-out;
        
}
main section.projects div.project div.left-image-container img:hover{
    transform: scale(2.5) rotate(360deg);
}
main section.projects div.project div.right-content{
    flex: 1;
}

main section.projects  div.right-content h3 {
    margin-top: var(--m-40);
    font-size: var(--h3-text);
    color: rgb(167, 15, 15);
    -webkit-text-stroke: 1px rgb(205, 139, 139);
    font-weight: bolder;
    text-align: center;
    
}

main section.projects div.project div.right-content p{
    margin-top: var(--m-20);
    width: 80%;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.808);

}

main section.projects div.project div.right-content div.info div.name {
    margin-top: var(--m-20);
    display: flex;
    width: 80%;
    justify-content: space-between;
    align-items: center;
    padding: var(--p-20) 0px;
    border-bottom: 2px dashed #f8f8f8be;
   
    
    
}
main section.projects div.project div.right-content div.info div.links {
    margin-top: var(--m-40);
}

main section.projects div.project div.right-content div.info div.links a{
    color: white;
    display: flex;
    align-items: center;
    gap: var(--gap-10);
    text-decoration: none;
    background: var(--accent-color);
    padding: 10px;
    width: fit-content;
    border-radius: 6px;
}
main section.projects div.project div.right-content div.info div.links a svg{
    fill: white;
}




.table-container {
  background-color: #ffffffcc; /* أبيض خفيف */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.299);
  width:70%;
  height: 500px;
  
  
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align:center;
  height: 400px;
}

th, td {
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.352);
  font-size: 30px;
}

th {
  background-color: #8d0a0adc;
  font-weight: bold;
}

.wrapper {
  display: flex;
  justify-content: center;   /* توسيط أفقي */
  align-items: center;       /* توسيط عمودي */
  height: 600px;             /* حددي ارتفاع القسم */
  /* margin: 10px auto; */
}


div.parent{
  column-count: 4;
  column-gap: 20px;
  width: 1600px;
  max-width: 100%;
  margin: 150px auto 0 auto;
  transition: all 0.3s ease;

}
div.parent img{
    width: 100%;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 20px;
  filter: grayscale(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}
.parent img:hover {
  filter: grayscale(0%);
  transform: scale(1.08);
}

@media (max-width: 1200px) {
  .parent {
    column-count: 3;
    width: 1000px;
  }
}

@media (max-width: 800px) {
  .parent {
    column-count: 2;
    width: 90%;
  }

}

@media (max-width: 500px) {
  .parent {
    column-count: 1;
    width: 95%;
  }
}



.custom-section {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  padding: 70px;
  flex-wrap: wrap; /* لجعلها متجاوبة */
}

.left-box, .right-box {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.left-box {
  text-align: center;
  position: relative;
}

.left-box h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
}

.right-box h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #444;
}

.right-box img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* زر الواتساب */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px; /* مسافة بين الأيقونة والنص */
  padding: 12px 25px;
 background: linear-gradient(90deg, blue, red);
  color: white;
  font-size: 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  width:200px;
  margin:30px auto 0 auto;
}

.whatsapp-btn i {
  font-size: 2.6rem;     /* حجم الأيقونة */
  vertical-align: middle;
}

.whatsapp-btn:hover {
  background: linear-gradient(180deg, rgba(0, 0, 255, 0.721), rgba(255, 0, 0, 0.763));
}
.left-box h1{

 font-size:50px;
  background: linear-gradient(180deg, blue, red);
  -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
  animation: waveColor 5s linear infinite;
  text-align: center;

}

.site-footer {
  background: var(--site-footer-bg-color);
  padding-top: 0;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.store-button img {
  height: 55px;
  transition: transform 0.3s ease;
}

.store-button:hover img {
  transform: scale(1.05);
}

.feature-item{
 text-align: right;
  max-width:100%;
  /* margin: 40px auto; */
  font-size:40px;
   color: #000000;
  line-height: 1.6;
}
.textst{
  text-align: right;
  max-width:100%;
  /* margin: 40px auto; */
  font-size:30px;
   color: #000000ad;
  line-height: 1.0;


}
.background
{
    flex: 1;
    margin-top: var(--m-30);
    
       background-color: rgba(255, 255, 255, 0.671); /* اللون الأبيض */
      border: 1px solid #ccc; /* الحد */
         box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9); /* الظل */
      padding: 30px;
     
      border-radius: 29px; 
}

.footer{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
   background: linear-gradient(180deg, rgba(0, 0, 255, 0.721), rgba(255, 0, 0, 0.763));
   padding: 20px 50px;
   flex-direction: column;


}


.main-footer {
 
  background: linear-gradient(180deg, rgba(0, 0, 255, 0.721), rgba(255, 0, 0, 0.763));
  color: #f1f1f1;
  padding: 20px 0;
  text-align: center;
  font-family: 'Cairo', sans-serif;
  margin-top: 40px;
  height: 150px;
  display: flex;
  width: 100%;
  flex-direction: column;
  
}

.footer-content {
  max-width: 800px;
  margin: auto;
}

.footer-content p {
  margin: 0;
  font-size: 14px;
  /* text-align: center; */
   justify-content: end;
    align-items:end;
}

.card-container {
  font-size: 2.1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 40px;
  max-width: 1400px;
  margin: 150px auto 0;
 
}

.card {
  width: 250px;
  height: 300px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.card:hover {
  background-color: #a5b3c284;
  transform: scale(1.03);
}

.card .icon {
  color:blue;
  font-size: 45px;
  margin-bottom: 10px;
}

.card h3 {
  font-family: 'Almarai', sans-serif; /* خط العنوان الرئيسي */
  font-weight: 800; /* سمك الخط */
  margin: 10px 0;
  font-size: 25px;
  color: #000000;
}

.card p {
  font-family: 'Almarai', sans-serif; /* خط العنوان الرئيسي */
  font-weight: 500;
  font-size: 20px;
  color: #000000;
  line-height: 1.8;
}


.purch{
  margin: 200px;
}



.purch h2 {
    font-family: 'Almarai', sans-serif; /* خط العنوان الرئيسي */
    font-weight: 600; /* سمك الخط */
    font-size: 2.9em; /* حجم الخط */
    line-height: 3.5;
    text-align: center;
    color: rgb(0, 0, 155);
    margin-bottom: 30px;
 
}

.accordion {
   font-family: 'Almarai', sans-serif; /* خط العنوان الرئيسي */
    font-weight: 500; /* سمك الخط */
    font-size: 1.9em; /* حجم الخط */
    line-height: 3.5;
  background-color: #ffffff;
  color: #333;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: right;
  border: none;
  outline: none;
  transition: background-color 0.3s ease;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.accordion:hover {
  background-color: #e6edf7;
}

.accordion.active {
  background-color: #dbe9f4;
}

.panel {
  font-family: 'Almarai', sans-serif; /* خط العنوان الرئيسي */
    font-weight: 500; /* سمك الخط */
    font-size: 1.5em; /* حجم الخط */
    line-height: 2.5;
    text-align: justify;
    direction: rtl;
  padding: 0 18px;
  background-color: #f2f6fa;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  border-radius: 0 0 8px 8px;
  color: #444;
}





