  .education-cards-section {
    background: linear-gradient(135deg, #000000, #0f0f0f);
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .education-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .education-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    width: 220px;
    text-align: center;
    transition: transform 0.5s ease, box-shadow 0.5s ease, border 0.5s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
  }
  .education-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, #00bcd4, #ff5722, #ffc107, #00bcd4);
    background-size: 400% 400%;
    animation: education-rotate 8s linear infinite;
    z-index: 0;
    opacity: 0.3;
  }
  .education-card-content {
    position: relative;
    z-index: 1;
  }
  .education-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  .education-card i {
    font-size: 60px;
    margin-bottom: 20px;
    color: #ffffff;
    transition: color 0.5s, text-shadow 0.5s;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
  }
  .education-card:hover i {
    color: #ff5722;
    text-shadow: 0 0 30px rgba(255, 87, 34, 1);
  }
  .education-title {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255,255,255,0.2);
  }
  @keyframes education-rotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }