*{
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
}
body{
    background-color: #d8efc646;
    
}

 .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    direction: rtl;
    height: 100px;
    background-color:#68874f2b;
    margin-top: 0%;
    margin-right: 40px;
    width: 100%;
  
   
    
   
 }
 
   .menu ul {
     display: flex;
     gap: 20px;
     list-style: none;
     margin: 0;
     padding: 0;
     margin-top: 0;
     padding-top: 5px;
     gap: 40px;
     margin-right: 49px;
   }
   
   .menu a {
     color:#6b8e23;
     text-decoration: none;
     font-size: 20px;
     font-family:'Tajawal', sans-serif;
     font-weight: 900;
 
   
     
   }
 
   .menu a:hover{
     color: rgb(250, 255, 239);
     
   }
   
   .logo img {
     width: 100px;
   }


 .p-intro{
    text-align: center;
    padding: 40px 20px 10px ;
    background-color: #f5f5f0;
 }
 .p-intro h2{
  color: #455b19;
  font-family: 'Tajawal', sans-serif;
  font-size: 28px;
  margin-bottom: 10px;
 }

 .p-intro p{
    color: #333;
    font-family: 'Tajawal', sans-serif;
    font-size: 20px;
    
    
 }

.products-row {
    display: flex;
    justify-content: center;
    gap: 90px;
    margin-bottom: 40px;
    justify-items: center;
  }

  .product {
    width: 250px;
    background-color: #ffe6b418;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    margin-top: 40px;
  }

  .product:hover {
    transform: scale(1.05);
  }

  .product img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .product h3 {
    margin: 10px 0;
    font-size: 18px;
  }
 
 
  .price {
    color: #5a7e3e;
    font-weight: bold;
    background-color: #e8f0e0;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-block;
  }




  .a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #5a7e3e;
    color: #e8f0e0;
    border-radius: 20px;
    font-size: 16px;
    font-family: 'Tajawal', sans-serif;
    transition: 0.3s ease;
    text-decoration: none;
 }
 .a:hover {
    transform: scale(1.05);
    background-color: #455b19;

 }
  

  


  





   .footer {
    background-color: #455b19;
    color: white;
    padding: 40px 20px;
    text-align: center;
    font-family: 'Tajawal', sans-serif;
    margin-bottom: 0%;
  }
  
  .footer-container {
    max-width: 1000px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  
  .footer-logo {
    font-size: 28px;
    font-weight: bold;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: 0.3s;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }
  
  .footer-social a img {
    width: 24px;
    margin: 0 8px;
    filter: brightness(0) invert(1); 
    transition: 0.3s;
  }
  
  .footer-social a img:hover {
    transform: scale(1.1);
  }
  
  .footer-copy {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
  }