*{
    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%;
  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;
 }


 
   

   .contact {
    background-color: transparent;
    padding: 50px 20px;
    text-align: center;
    border-radius: 15px;
    max-width: 800px;
    margin: 50px auto;
  }
  
  .contact h2 {
    color:#455b19 ;
    font-size: 28px;
    margin-bottom: 15px;
    font-family: 'Tajawal', sans-serif;
  }
  
  .contact p {
    font-size: 18px;
    color: #333;
    margin-bottom: 25px;
  }
  
  .contact ul {
    list-style: none;
    padding: 0;
  }
  
  .contact li {
    margin-bottom: 15px;
    font-size: 17px;
    color: #222;
  }
  
  .contact a {
    color: #5a7e3e;
    text-decoration: none;
    font-weight: bold;
  }
  
  .contact a:hover {
    text-decoration: underline;
  }
  




   .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;
  }


