/* Minimalist Education Styles */
.minimal-degree {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
  }
  
  .degree-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    top: 40px;
    z-index: 0;
  }
  
  .line-start, .line-end {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    top: -5px;
  }
  
  .line-start {
    left: 0;
    animation: pulse 2s infinite;
  }
  
  .line-end {
    right: 0;
    animation: pulse 2s infinite 0.5s;
  }
  
  .degree-content {
    display: flex;
    gap: 20px;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }
  
  .degree-content:hover {
    transform: translateY(-3px);
  }
  
  .degree-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
  }
  
  .degree-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--dark);
  }
  
  .university {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 10px;
  }
  
  .degree-tag {
    display: inline-block;
    background: var(--light);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
  }
  
  @keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
  }
  
  @media (max-width: 768px) {
    .degree-content {
      flex-direction: column;
      text-align: center;
    }
    
    .degree-line {
      display: none;
    }
  }