* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
  }
  
  body {
    background: #020617;
    color: #fff;
  }
  
  /* SECTION */
  .education-section {
    position: relative;
    min-height: 100vh;
    padding: 80px 20px;
    overflow: hidden;
  }
  
  .section-title {
    text-align: center;
    font-size: 42px;
    color: #22d3ee;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
  }
  
  /* CARDS */
  .education-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
  }
  
  .edu-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    cursor: pointer;
    transition: transform 0.4s, box-shadow 0.4s;
  }
  
  .edu-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 0 45px rgba(34,211,238,0.35);
  }
  
  .edu-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .edu-content {
    padding: 20px;
  }
  
  .edu-content h2 {
    color: #22d3ee;
    font-size: 18px;
  }
  
  .edu-content span {
    font-size: 14px;
    color: #94a3b8;
  }
  
  .edu-content p {
    margin-top: 10px;
    font-size: 15px;
  }
  
  /* MODAL */
  .modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    justify-content: center;
    align-items: center;
    z-index: 999;
  }
  
  .modal-content {
    background: #020617;
    max-width: 500px;
    width: 90%;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.15);
    animation: zoom 0.3s ease;
  }
  
  @keyframes zoom {
    from { transform: scale(0.7); }
    to { transform: scale(1); }
  }
  
  .close {
    float: right;
    cursor: pointer;
    font-size: 20px;
    color: #ef4444;
  }
  
  /* CANVAS */
  #eduNetwork {
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  
  /* MOBILE */
  @media(max-width:600px){
    .section-title {
      font-size: 32px;
    }
  }


  