body {
    font-family: 'Cairo', sans-serif;
    background-color: #f7f9fa;
    margin: 0; padding: 0;
    direction: rtl;
  }
  
  header {
    background: #0f4c75;
    color: white;
    padding: 20px;
    text-align: center;
  }
  
  main {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 0 10px #ddd;
    padding: 20px;
    text-align: center;
  }
  
  .card img {
    width: 100px;
    border-radius: 8px;
  }
  
  .download-btn {
    display: inline-block;
    margin-top: 10px;
    background: #1abc9c;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
  }
  .search-container {
    text-align: center;
    margin: 20px auto;
    animation: fadeInDown 0.7s ease-in-out;
  }
  
  #searchInput {
    width: 90%;
    max-width: 400px;
    padding: 12px 20px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    border: 2px solid #0f4c75;
    border-radius: 25px;
    outline: none;
    transition: 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  #searchInput:focus {
    border-color: #1abc9c;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  /* أنيميشن */
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
   