.educontainer {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .education-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .education-item {
    border: 1px solid #e0e0e0;
    background-color: #f9f9f9;
  }
  
  
  .fa-graduation-cap {
    color: #1A2130;
  }
  

  /* Add animation styles */
@keyframes slideUp {
    0% {
      opacity: 0;
      transform: translateY(50px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .education-item {
    animation: slideUp 0.8s ease-in-out;
    opacity: 0; /* Ensures hidden until animation starts */
    animation-fill-mode: forwards;
  }
  
  .education-item:nth-child(1) {
    animation-delay: 0.2s;
  }
  
  .education-item:nth-child(2) {
    animation-delay: 0.4s;
  }
  
  .education-item:nth-child(3) {
    animation-delay: 0.6s;
  }
  
  /* Adjust delays based on the number of cards */
  