
    ::-webkit-scrollbar {
      width: 10px;
    }

    ::-webkit-scrollbar-track {
      background-color: #ddd;
    }

    ::-webkit-scrollbar-thumb {
background-color: #988561;
border-radius: 20px;
transition: all 0.5S ease-in-out;
    }

    ::-webkit-scrollbar-thumb:hover {
background-color: #136902;
    }

.cont{
display: grid;
justify-content: center;
align-items: center;
display: grid;
grid-template-columns: repeat(3, 1fr);
direction: rtl;
width: 90%;
margin: auto;
  }
  .card {
gap: 20px;
width: 350px;
margin-top: 20px;
border: 2px solid #136902 !important;
border-radius: 50px !important;
overflow: hidden;
}
@media(max-width: 768px){
.cont{
display: flex;
flex-direction: column;
width: 100%;
}
.card{
width: 100%;
margin: 20px !important;
}
}
.card-image {
    width: 100%;
    height: 200px;
  }

  .card-info {
    padding: 20px;
  }

  .card-info h2 {
    margin: 0 0 20px;
    color: #988561;
  }

  .card-info p {
    margin: 5px 0 15px;
    font-size: 16px;
  }

  .progress-bar {
    width: 100%;
    height: 20px;
    background-color: #f2f2f2 !important;
    border-radius: 10px;
    overflow: hidden;
  }

  .progress-fill {
    height: 100%;
    background-color: #4caf50;
    width: 0%;
    transition: width 0.5s ease;
  }
  .h1{
  margin: auto;
  margin-top: 20px !important;
  background-color: #136902;
  width: 300px;
  text-align: center;
  padding: 10px;
  border-radius: 50px 5px;
  color: white !important;
  border: 2px solid #988561;
  }
  /*-------------------------------------*/
 .profile-container {
position: fixed;
display: inline-block;
cursor: pointer;
user-select: none;
top: 30px;
right: 60px;
z-index: 5000;
color: #988561 !important;
  }
 .profile-container .fa-user{
background-color: #988561;
color: white;
}
@media(max-width: 768px){
.profile-container{
top: 20px;
right: 5px;
}
}
  .profile-icon {
    font-size: 24px;
    color: #333;
    padding: 10px;
    border-radius: 50%;
    background-color: #f0f0f0;
    transition: background-color 0.2s;
  }

  .profile-icon:hover {
    background-color: #e0e0e0;
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: 45px;
    right: 0;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    border-radius: 6px;
    z-index: 100;
    padding: 8px 0;
  }

  .dropdown-menu a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: background-color 0.2s;
  }

  .dropdown-menu a i {
    margin-left: 8px;
  }

  .dropdown-menu a:hover {
    background-color: #f2f2f2;
  }