*{
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        scroll-behavior: smooth;
        font-family: 'DroidKufi', sans-serif;    }
    header{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 50px;
        position: fixed;
        z-index: 55;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.121);
        
    }
    body{
        color: #f0f0f0;
        font-size: 20px;
        background-color: rgba(0, 0, 0, 0.999);
        display: flex;
        flex-direction: column;
        direction: rtl;
    }

     a{
        display: inline-block;
        transition: 0.5s;
        color: blue;
        margin: 0 5px;
        font-weight: 500;
        text-decoration: none;
        border-radius: 8px;
        padding: 5px;
        
    }
    #logo{
        font-size: 2vh;
        color: rgb(8, 8, 173);
        font-weight: 900;
        text-decoration: none;
        border-radius: 8px;
        padding: 5px;
        
    }
    
    a:hover{
        /* border: 2px solid yellow; */
        transform: scale(1.2);
    }
    section{
        padding: 100px 50px;
    }
    span{
        color: blue;
        font-weight: 700;
    }
    .titles{
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        height: 500px;
        
    }
    .icons{
        align-self: flex-start;
    }
    .icons a{
        margin: 0px 5px;
        color: rgb(255, 255, 255);
    }
 
    .button {
        margin-top: 10px;
        display: inline-block;
        padding: 5px 10px; /* Adjust as needed */
        background-color: #f0f0f0; /* Adjust background color as needed */
        border: 1px solid #ccc; /* Adjust border as needed */
        border-radius: 5px; /* Adjust border radius as needed */
        text-decoration: none;
        color: #333; /* Adjust text color as needed */
    }
    
    .button img {
        border-radius: 50%; /* Make the image round */
        margin-right: 5px; /* Adjust as needed */
        width: 20px; /* Set the width of the image */
        height: 20px; /* Set the height of the image */
    }
    
    
     i {
        margin: 5px 10px; /* Adjust as needed */
        font-size: 3vh;
    }
    
    
    .button:hover{
        transform: scale(1.2);
    }
    .button:active{
        scale: 0.8;
    }
    #main{
        width: 100%;
        display: inline-block;
        background: url("/bac.jpg");
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }
     h4{
        color: antiquewhite;
        font-size: 1em;
    }
    h2{
       font-size: 1.5em; 
       color: antiquewhite;
    }
    h1{
       font-size: 1em; 
       color: antiquewhite;
    }
    h3{
       font-size: 3em; 
       color: antiquewhite;
    }
    .cards i{
        color: aquamarine;
        font-size: 3em;
        text-align: center;
    }
    .cards{
        display: flex;
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
    
    }
    .card{
        margin: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 200px;
        padding: 15px;
        border-radius: 20px;
        box-shadow: 1px 5px 20px rgb(100, 100, 100,0.2);
        transition: 0.6s ease;
    }
    footer{
        width: 100%;
        padding: 10px;
        bottom: 10px;
        display: flex;
        justify-content: space-between;
        position: fixed;
        z-index: 1000;
    }
    
    footer i{
        font-size: 5.8vh;
    }
    .hideOptions{
        display: none;
    }
    .showOptions{
        margin: 10px;
        display: flex;
        flex-direction: column;
        width: fit-content;
        padding: 30px;
        border-radius: 20px;
        box-shadow: 1px 5px 20px rgba(127, 33, 33, 0.2);
        transition: 0.6s ease;
    }
    #buttonShow{
        margin-top: 15px;
        background-color: blue;
        color: white;
        padding: 15px;
        border-radius: 15px;
        font-weight: 700;

        display: flex;
        justify-content: center;
        align-items: center;
        width: fit-content;
    }
   
    .card:hover{
        transform: scale(1.1);
    }
    .card p{
        text-align: center;
        font-size: 0.9em;
        margin: 10px 5px;
    }
    .typed{
        color: rgb(255, 255, 255);
    }
    .typed.cursor {
        animation: blink 1s infinite;
      }
      @font-face {
        font-family: 'DroidKufi';
        src:url('fonts/DroidKufi-Bold.ttf') format('truetype');
        /* يمكنك تكرار هذا السطر مع مزيد من الصيغ إذا لزم الأمر لدعم المتصفحات المختلفة */
    }
      @keyframes blink {
        50% {
          border-right-color: transparent;
        }
      }

      @media screen and (max-width: 600px) {
        body {
            font-size: 12px; /* Font size reduced to 10px for smaller screens */
        }
    }
    
    @media screen and (max-width: 400px) {
        body {
            font-size: 9px; /* Font size reduced to 10px for smaller screens */
        }
    }
      

      

    
      