*{
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
}

body {
  

    background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)), url(photos/pexels-mahmoud-yahyaoui-28697747.jpg);
    
    background-size: cover;
    background-position: center;
    background-repeat:no-repeat ;
    padding-top: 0%;
    

    
}




.navbar {
   display: flex;
   justify-content: space-between;
   align-items: center;
   direction: rtl;
   height: 100px;
   background-color: transparent;
   margin-top: 0%;
   margin-right: 40px;

  
   
  
}


  .menu ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 0;
    padding-top: 5px;
    gap: 40px;
  }
  
  .menu a {
    color: #dde1c9;
    text-decoration: none;
    font-size: 20px;
    font-family:'Tajawal', sans-serif;
    font-weight: 900;

  
    
  }

  .menu a:hover{
    color: rgb(200, 236, 110);
    
  }
  
  .logo img {
    width: 100px;
  }
  
  .intro {
    text-align: center;
    color: white;
    padding: 100px 20px 40px;
    font-family: 'Tajawal', sans-serif;
    margin-top: 60px;
  }
  
  .intro-title {
    font-size: 50px;
    font-weight: 700;
    color: #f5d36c; 
    margin-bottom: 20px;
    line-height: 1.4;
  }
  
  .intro-text {
    font-size: 30px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
  }

  .cta-button{
    display: inline-block;
    margin-top: 70px;
    padding: 14px 36px;
    background-color: #f5d36c;
    color: #333;
    font-weight: 600;
    font-size: 20px;
    border: none;
    text-decoration: none;
    transition: 0.3s ease;
    text-align: center;
    border-radius: 30px;
  }

  .cta-button:hover {
    background-color: #e1c157;
    color: #111;
  }

  .about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 60px;
    direction: rtl;
    background-color: #f9f9f9; 
    margin-top: 400px;
    width:100%;
  }
  
  .about-image img {
    width: 400px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    
  }
  
  .about-text {
    max-width: 50%;
    font-family: 'Tajawal', sans-serif;
    color: #333;
  }
  
  .about-text h2 {
    font-size: 32px;
    color: #6b8e23; 
    margin-bottom: 20px;
  }
  .underline {
    width: 100px;
    height: 3px;
    background-color: #6b8e23;
    border: none;
    margin: 10px auto 30px;
  }
  
  .about-text p {
    font-size: 22px;
    font-weight: 200;
    line-height: 1.8;
  }
  






  .footer {
    background-color: #455b19;
    color: white;
    padding: 40px 20px;
    text-align: center;
    font-family: 'Tajawal', sans-serif;
  }
  
  .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;
  }
  
  



