.values-container {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding: 20px; 
  }
  
  .value-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 300px; /* Change as needed */
    padding: 20px;
    margin: 10px;
    background-image: linear-gradient( to left, #0A261C 0%, #06423C 50%, #26661B 50%, #85BF30 100%); /* Dark grey background */
    color: #fff; /* White text */
    border: solid 1px #94cb7a;
    transition: 0.5s ease-out;
    background-size: 200% 100%;
    background-position: -100% 0;
    border-radius: 10px;
    position:relative;
  }
  
  .value-card:hover {
    background-position:-200% 0;
    /* box-shadow: 0 2px 12px 5px #fff ; */
  }
  .value-title:hover h3,p {
    color:#fff;
  }
  .value-title {
    font-size: 1.2rem; /* Title font size */
    text-align: center;
    /* margin: 5px 0;  */
  }
  
  .value-description {
    /* text-align:justify ; */
    text-align: center !important;
    text-align-last: center;
    padding: 0 10px; /* Padding for text */
    font-size: 0.9rem; /* Description font size */
    color:rgb(240, 239, 239);
  }

  .pb-13{
    padding-bottom: 13px;
  }
  /* Modal styles */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index:3000;
}

.modal-content {
    background-image: linear-gradient( to left, #0A261C 0%, #06423C 50%, #26661B 50%, #85BF30 100%); /* Dark grey background */
    border: 2px solid #85BF30;
    width: 60%;
    max-width: 600px;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    padding: 20px;
    background-image: linear-gradient( to left, #0A261C 0%, #06423C 50%, #26661B 50%, #85BF30 100%); /* Dark grey background */
    color: #fff; /* White text */
    border: solid 1px #94cb7a;
    transition: 0.5s ease-out;
    background-size: 200% 100%;
    background-position: -100% 0;
    border-radius: 10px;
}
.modal-content h2,p{
  text-align: center;
}
.modal-content:hover {
  background-position:-200% 0;
  /* box-shadow: 0 2px 12px 5px #fff ; */
}
.modal-content:hover h2,p {
  color:#fff;
}
.close {
    display: flex;
    justify-content: end;
    cursor: pointer;
    font-size: 30px;
    font-weight: bold;
    margin-top:-15px;
}

/* Button styles to open the modal */
.open-modal-btn {
    background-color: #3498db;
    color: white;
    /* padding: 10px 20px; */
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.open-modal-btn:hover {
    background-color: #2980b9;
}