@font-face {
  font-family: Cairo;
  src: url('fonts/Cairo-VariableFont_slnt\,wght.ttf');
}
body {
    font-family: Cairo;
    text-align: right;
    padding: 30px ;
}
h2, h3, h4, p, label, input, button {
  font-family: Cairo;
  text-align: right;
}
.container {
    max-width: 1200px;

    padding: 20px;
}

.result-section {
    display: flex;
    justify-content: space-between;
   
    gap: 10px;
}

.result-column {
   
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    
}

.result-header {
    font-weight: bold;
    margin-bottom: 5px;
    margin-top: 10px;
}

.clear-file-btn {
    margin-bottom: 0px;
}

#search-results {
    padding: 20px 0px;
}

:root {
    --primary-color: #198754;
    --bg-grey: #f5f7f6;
    --bg-black: #201f1d;
    --bg-white: #ffffff;
    --text-color: #212529;
    --text-color-white: #ffffff;
    --font-color: #676767;
    --heading-color: #343a40;
    --border-color: #dee2e6;
  }
  
.card {
    position: relative;
    z-index: 1;
    border-top: 3px solid var(--primary-color);
    background: #e2e7e5;
  }
  
  .services i {
    color: var(--primary-color);
  }
  
  .card > .anim-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
   /*  background-color: var(--primary-color); */
    transition: height 0.3s ease;
  }
  
  .card:hover .anim-layer {
    height: 100%;
  }
  
/*   .card:hover h2, .card:hover i, .card:hover h3,.card:hover h4 {
    position: relative;
    z-index: 1;
    color: var(--text-color-white);
  } */
  
  .card i {
    background-color: var(--bg-white);
  
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
/*   
  .card:hover i {
    color: var(--primary-color);
  } */
  #fixedlink{
    position: fixed;
    top: 0px;
    left: 0px;
    padding: 10px;
    z-index: 9999;
  } 
  #fixedlink a{
    color: white;
    background-color: #198754;
    display: inline-block;
    padding: 20px 40px;
    text-decoration: none;
    

  }